Amie jackson
Amie jackson

Reputation: 21

How to execute .bat files using Finalbuilder?

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

Answers (2)

T.S.
T.S.

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

Chris
Chris

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

Related Questions