This example shows opening a text file in notepad window as a child process. It waits for 2000ms and kills the child process. The notepad window gets closed automatically.
01
Set
shellObj = CreateObject(
"Wscript.Shell"
)
02
03
'Opens C:\\prop_file.txt in the notepad window
04
scriptExecObj = shellObj.Exec(
"notepad.exe C:\\prop_file.txt"
05
06
07
'Possible status values
08
' 0 - Running
09
' 1 - Finished
10
11
WScript.echo
"Status : "
& scriptExecObj.Status
12
13
14
'Wait for sometime and close the notepad
15
16
WScript.Sleep(2000)
17
scriptExecObj.Terminate
18
Status : 0 Status : 1