Reputation: 21
I am using Finalbuilder to build packages. I want to execute .bat
using file content iterator. Can I use anything other than file content iterator to execute .bat files?
Upvotes: 0
Views: 302
Reputation: 19330
FinalBuilder has specific action, called Run DOS Command. And it is used to
...execute any native DOS command or batch file.
Upvotes: 1
Reputation: 346
Which version of FinalBuilder are you using?
You can use the Execute Program action. The program file would be cmd.exe, the path to your batch file goes as parameter.
E.g.: cmd.exe /C script.bat
Upvotes: 0