0

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?

T.S.
  • 18,195
  • 11
  • 58
  • 78

2 Answers2

1

FinalBuilder has specific action, called Run DOS Command. And it is used to

...execute any native DOS command or batch file.

T.S.
  • 18,195
  • 11
  • 58
  • 78
0

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

Chris
  • 316
  • 2
  • 5