ContributionsMost RecentMost LikesSolutionsRe: One2Many Script Repository Hello Workday, I always use cscript foobar.vbs on the command line. Although I prefer to write .cmd as I'm not a VB person. 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.