The GoTo Community is currently experiencing some technical issues affecting new posts and comments. You may need to reload the page you are on before you can post a comment. We are actively working with our service provider and apologize for the frustration.
User Profile
Gavin_Jones
Active Contributor
Joined 17 years ago
User Widgets
Contributions
Re: One2Many Script Repository
This is a quick one-liner that validates that Steady State is running on the target PC. tasklist | find /I "SCTSVC.EXE" > NULL An exit code of 0 is expected if the process SCTSVC.EXE is found in the process list, signifying that Steady State is loaded and active. This can be used with any command-line program, as long as you know what the exit code is for success (usually 0). This type of quick task is particularly useful for gauging the progress of jobs that may spread over large time periods. For instance testing to see if a large archive has finished transferring by running an archive 'list' process on the archive file and re-directing the ouput to NULL, but checking the exit code.25KViews0likes0Comments