To create or edit a ProcessExecutor test:
 (New Child Test) on the toolbar, or click
 (New Child Test) on the toolbar, or click 
                     			  (Edit).
 (Edit). 
                     		   
                  		    
                  			 
                  The New Test/Edit Test dialog box appears.
To configure a ProcessExecutor test that runs the Windows Script Host from the command line with the /c switch and two parameters, specify the following:
#!/usr/bin/env python
#
import sys
import os
print 'command and arguments: ' + str(sys.argv)
print 'SCTM_EXEC_RESULTSFOLDER: ' + str(os.environ.get('SCTM_EXEC_RESULTSFOLDER')) 
                  		Instead of using the environment variable SCTM_EXEC_RESULTSFOLDER, you can set the predefined parameter #sctm_test_results_dir as an argument in Silk Central. The argument will be replaced with the corresponding environment variable when the script is executed.