Hi community,
I need to start a .bat-File from a job stream. I know it should be possible with the procedure node, but whats the syntax to call a batch-File? I just can't find something like that in the documentation so any help would be much appreciated!
Best regards,
Sonnfan
In the Procedure node, use the system function to execute things like running batch files, copying or deleting files etc.
System( 'c:\runme.bat' )
Better late then never: Thank you, works like a charm! :D