| 
 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);
 
				__________________   |