tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 VB Script > Shell > Child Process

Child Process 

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.

File Name  :  
source/VBS/shell/child_proc.vbs 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
01Set shellObj = CreateObject("Wscript.Shell")
02 
03'Opens C:\\prop_file.txt in the notepad window
04Set scriptExecObj = shellObj.Exec("notepad.exe C:\\prop_file.txt")
05 
06 
07'Possible status values
08' 0 - Running
09' 1 - Finished
10 
11WScript.echo "Status : " & scriptExecObj.Status
12 
13 
14'Wait for sometime and close the notepad
15 
16WScript.Sleep(2000)
17scriptExecObj.Terminate
18WScript.echo "Status : " & scriptExecObj.Status

It gives the following output,
Status : 0
Status : 1



 
  


  
bl  br