To shutdown or restart Windows from an InTouch application, a windows command will need to be executed within an InTouch script, using the “StartApp” script function.
Paste one of the following lines of code within an InTouch script event:
To shutdown Windows use the following code:
StartApp "SHUTDOWN -s";
To shutdown and restart Windows use the following code:
StartApp "SHUTDOWN -r";