🧡 Skip to main content🔍 Skip to search
Execute Script & VBScript

Automation Workshop includes the Execute Script Action which, besides supporting other scripting formats, can execute VBScript scripts automatically. The VBScript examples are aimed at giving the user a general idea of how to integrate custom scripts into automated Tasks.

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.

VBScript #1

Option Explicit
Dim text
text="Hello world!"
WScript.Echo(text)

VBScript #2

Option Explicit
Dim myNum, myOut
myNum=7

If myNum < 5 Then
   ' This will execute. 7 is larger than 5
   WScript.Echo("Number is less than 5")
End If

myOut=myNum & myNum
WScript.Echo(myOut) ' Output: 77

myOut=myNum + myNum
WScript.Echo(myOut) ' Output: 14
YouTube video · Auto email IP address

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.

Automated Trigger · Amazon S3 Watcher
Amazon S3 Watcher
Automate Action · Find & replace text
Find & replace text

How automation works? A 90-second journey.

Need a helping hand?

If you have any questions, please do not hesitate to contact our support team.