
Automation Workshop includes the Execute Script Action which, besides supporting other scripting formats, can execute batch file scripts automatically. The batch file examples provided are aimed at giving the user a general idea of how to integrate batch files into the flow of automated processes.

The data communication with other scripts is based on screen output. The screen output of the script can be retrieved using the Variable Wizard from a subsequent Execute Script Action. It is possible to retrieve either the full screen output or any of the first six output lines separately.
Batch file #1
@echo off
set text=Hello world!
echo %text%
Batch file #2
@echo off
set text="Hello my example world!"
for /f "tokens=2,3" %%i in (%text%) do (
rem Output: my example
echo %%i %%j
)
Discover
Automation Workshop includes many more awesome Triggers and numerous Actions to aid you to automate any repetitive computer or business task by providing state-of-the-art GUI tools.
Assistance is here…
If you have any questions, please do not hesitate to contact our support team.