We make it super easy to run things like Techsuite in our scripting engine.
Setup your script
- Go to Techsuite and download "Console Version."
- Go to Syncro, Scripts, Add Files, and upload "Techsuite_console.exe" to the shared files.
- Go to Scripts, New Script, and set it up like this with the required file.
- Now you can start scripting!
Once you have the file attached and required in the script, you can do all the Techsuite console functions like this.
Install VLC
Type: Powershell
RunAs: System
Script:
$Params = "-r,--tool,Install VLC"
$ParsedParams = $Params.Split(",")
& "C:\temp\techsuite.exe" $ParsedParams
In this script example you can see we are passing params "--tool" and "Install VLC" - you can use this to run any of the Techsuite tools.