View Single Post
  #12  
Old 09-16-2004, 11:47 PM
Spike
Discordant
 
Join Date: Mar 2004
Location: Florida
Posts: 362
Default

Just tell me if I am correct here...

The file is called jampded

start Notepad.exe minimized in the background:
$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Run("jampded", 7, false);

start a shell command invisible in the background:
$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Run("cmd /C dir /S %windir%", 0, false);

start MSPaint maximized and wait for you to close it before continuing the script:
$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Run("jampded", 3, true);
__________________
Reply With Quote