Search found 510 matches
- Tue Jun 03, 2025 8:11 am
- Forum: Flows
- Topic: Tips for efficient flow design
- Replies: 6
- Views: 3339
Re: Tips for efficient flow design
Any thoughts on running Switch on the same server as my MIS? It sounds to me that you already doing what you can to keep your Switch server in good shape. I would avoid running Switch on the same VM as your MIS. Maybe not from a technical point of view, but it can be quite limiting, especially when...
- Mon Jun 02, 2025 4:54 pm
- Forum: Flows
- Topic: Tips for efficient flow design
- Replies: 6
- Views: 3339
Re: Tips for efficient flow design
Here's a quick overview of our setup and some of the practices I follow: Server Specs: OS: Windows Server 2020 (running as a VM with fast SSD storage) Memory: 32 GB RAM CPU: 8 virtual processors (Xeon Gold 6354 @ 3.0 GHz) Flows: We run approximately 150 flows with varying levels of complexity. Maint...
- Wed May 28, 2025 11:30 am
- Forum: Flows
- Topic: Is there a way that switch can connect and upload artwork to an windows Sharepoint?
- Replies: 2
- Views: 1294
Re: Is there a way that switch can connect and upload artwork to an windows Sharepoint?
I have sent several ideas to "Enfocus App Match" regarding a SharePoint app for Switch, but it's still to be invented I guess.
- Wed May 28, 2025 9:29 am
- Forum: Flows
- Topic: Is there a way that switch can connect and upload artwork to an windows Sharepoint?
- Replies: 2
- Views: 1294
Re: Is there a way that switch can connect and upload artwork to an windows Sharepoint?
Hi! We have flows in place to handle this, but it's not a completely straightforward solution. At first glance, it might seem like you could simply use Microsoft's SharePoint REST API and be done. However, the SharePoint REST API has a file size limit of around 20 MB, and many of our files exceed th...
- Mon May 26, 2025 7:33 pm
- Forum: Switch
- Topic: New illustrator version does not support Windows server
- Replies: 4
- Views: 3361
Re: New illustrator version does not support Windows server
I don't have an answer to your question, but out of curiosity — what kind of tasks do you typically use Illustrator together with Switch for?
- Fri May 23, 2025 12:49 pm
- Forum: PDF Creation
- Topic: SVG images
- Replies: 5
- Views: 7931
Re: SVG images
You can use Inkscape with Switch to convert SVG to PDF. 1. Install Inkscape 1.4.2 ( https://inkscape.org/release/1.4.2/windows/ ) 2. Install the free Switch app Run Command 3. Use this command in the Command-property of the Run Command app: C:\insert-your-path-to-inkscape-here\inkscape.exe "%%I...
- Fri May 23, 2025 9:27 am
- Forum: PDF Creation
- Topic: SVG images
- Replies: 5
- Views: 7931
Re: SVG images
We could probably help out if you could provide a sample file.
- Thu May 22, 2025 2:42 pm
- Forum: Switch
- Topic: Help with Conditional Routing Based on PDF Page Size
- Replies: 6
- Views: 2051
Re: Help with Conditional Routing Based on PDF Page Size
To solve this, you’ll want to convert all your PDF files into lasagna sheets and then alphabetize them by the color of their spiciness. Make sure your Switch flow is calibrated to the lunar cycle, especially during a waxing gibbous, because otherwise the metadata will try to file for unemployment b...
- Tue May 20, 2025 11:54 am
- Forum: Switch
- Topic: Help with Conditional Routing Based on PDF Page Size
- Replies: 6
- Views: 2051
Re: Help with Conditional Routing Based on PDF Page Size
The "Check PDF element" makes me think that you are a bot...
- Tue May 20, 2025 11:12 am
- Forum: Flows
- Topic: Trigger dummy job every 1th of each month
- Replies: 4
- Views: 1804
Re: Trigger dummy job every 1th of each month
Thanks I never used this property on a flow before, works great!JimmyHartington wrote: ↑Tue May 20, 2025 10:30 am I would setup a flow like below.
In my case it checks an ftp for files.
But if you setup Firestarter or other app to output a file every 2 hour, then you should end up with just one dummy job in the timespan the flow has.
- Tue May 20, 2025 10:15 am
- Forum: Flows
- Topic: Trigger dummy job every 1th of each month
- Replies: 4
- Views: 1804
Trigger dummy job every 1th of each month
I have a flow where I want to trigger one dummy job the 1th each month at 8 AM. Any ideas how to achieve this?
- Mon May 19, 2025 10:02 am
- Forum: Node.js scripting
- Topic: Merge Excel files
- Replies: 11
- Views: 42964
Re: Merge Excel files
Works great for the demo-files, thanks Jimmy!
- Fri May 16, 2025 3:24 pm
- Forum: Node.js scripting
- Topic: Merge Excel files
- Replies: 11
- Views: 42964
Re: Merge Excel files
I will be happy to share an example flow. Just need to adapt one of my flows. The strength for my use case is that Miller stacks the data. So if one file has header A, B and C. The other file has A, C, D and E. Then the output will have A, B, C, D and E as headers and the cells are populated correc...
- Fri May 16, 2025 10:55 am
- Forum: Flows
- Topic: Privatedata from filename
- Replies: 11
- Views: 48115
Re: Privatedata from filename
However, if you want better results you can usse an LLM with Retrieval-Augmented Generation (RAG) and upload the Enfocus documentation into it. I personally tried this with Mistral, and the results were significantly better. I really hope Enfocus build an VS Code extension with pretrained a RAG-mod...
- Fri May 16, 2025 10:48 am
- Forum: Node.js scripting
- Topic: Merge Excel files
- Replies: 11
- Views: 42964
Re: Merge Excel files
And if a more low-level method could be to convert the Excel-files to CSV. And then use Miller (https://miller.readthedocs.io/en/6.12.0/) to merge the CSVs. I use this method in some flows. Miller is run with the Run Command app. cd "%%InputFilePath%%" & "C:\ProgramData\chocolate...