by Fatboyfun » Thu Dec 22, 2011 8:12 pm
There is no facility in SystemInformation to close by itself...
But by using Mortscript you can start SystemInformation and,(1) Wait a specified time and either close and exit SystemInformation, Or (2) simulate a mouse click to move onto a different screen, (Like i do in EasyShell!)
Set the device to run the script and use either...
1,
Run ("\{Path to}\SystemInformation.exe")
Sleep (5000) # Five seconds
Kill ("SystemInformation.exe")
Or
2,
Run ("\{Path to}\SystemInformation.exe")
Sleep (5000)
MouseClick (1,1)
The second script will require you to set up a 2x2 pixel button in the top left of the screen with a newini command.
Currently sleeping...