perfessor101 Posted June 6, 2008 Share Posted June 6, 2008 Hello, I'm having a problem over the last few days. AutoIt files will no longer execute from the command line or in batch files on my system. It's Windows XP Pro SP3 on an ASUS M3A motherboard with AMD Phenom 9850 processor and 4GB DDR2-1000 RAM. When I type 'LaunchNMP.au3' at a command prompt the system responds with "The system cannot execute the program specified." Any AutoIt script (*.au3) started from the command line gives me the same response. I have also found that any file with an extension other than *.bat, *.com, *.exe when typed at the command line will give me that error. for example if I typed any of the following at a command prompt : todo.txt, video.mpg, faq.doc, manual.rtf (they exist in the current directory path) they will return "The system cannot execute the program specified", instead of the normal default action which would be to launch that extensions associated program. thanks for your time, my scripts and my sanity thank you ... Bobby Link to comment Share on other sites More sharing options...
Bert Posted June 6, 2008 Share Posted June 6, 2008 Your file association's in the registry are hosed. The Vollatran project My blog: http://www.vollysinterestingshit.com/ Link to comment Share on other sites More sharing options...
perfessor101 Posted June 6, 2008 Author Share Posted June 6, 2008 Your file association's in the registry are hosed.kewl ... how might I fix them? if that is the case all I did was leave XP running for more than 48 hours ... I know not a good idea if you have anything installed on it ...I tried reinstalling autoit and then autoit beta ... which I thought may have at least restored AutoIt's file associations, but that was a day ago ... and I'm here now ...Bobby Link to comment Share on other sites More sharing options...
Bert Posted June 6, 2008 Share Posted June 6, 2008 here you are. I had to use this once. Real handy to have..http://www.dougknox.com/xp/file_assoc.htm The Vollatran project My blog: http://www.vollysinterestingshit.com/ Link to comment Share on other sites More sharing options...
perfessor101 Posted June 6, 2008 Author Share Posted June 6, 2008 here you are. I had to use this once. Real handy to have..http://www.dougknox.com/xp/file_assoc.htmThank you very much ... I was getting confused over windows xp properties (enable command extensions) ... antivirus madness (agnitum outpost) or a windows defender update that occurred around the same time as I started to notice the problems ...I'll be trying this right away ... Now if I just though of searching on broken file associations first ... rather than the more complex issues it may have beenBobby Link to comment Share on other sites More sharing options...
Bert Posted June 6, 2008 Share Posted June 6, 2008 What will drive you nuts is that each one is a separate file. I went and downloaded them all and put them together into one reg file The Vollatran project My blog: http://www.vollysinterestingshit.com/ Link to comment Share on other sites More sharing options...
perfessor101 Posted June 7, 2008 Author Share Posted June 7, 2008 What will drive you nuts is that each one is a separate file. I went and downloaded them all and put them together into one reg fileWhat's gonna drive me crazy is that I'm still getting the error after several reboots and uninstalling/installing Autoit3 a few times ...I'm swinging back to the antivirus theory or a forced windows update.I have windows update set to download and ask before install ... but it installed that one without asking ;-)Kewl part is that System Restore won't work on dates before the problem started ... Virus maybe?now to sleep and decide whether it's going to be easier to reinstall WindowsBobby Link to comment Share on other sites More sharing options...
MHz Posted June 7, 2008 Share Posted June 7, 2008 now to sleep and decide whether it's going to be easier to reinstall WindowsAt least check your PATH and PATHEXT before considering a reinstall of Windows. This script may help to check easily _Update_PATH('PATH', @WindowsDir & ';' & @SystemDir & ';' & @SystemDir & '\WBEM') _Update_PATH('PATHEXT', '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH') Func _Update_PATH(Const $VALUE, Const $DATA) Local $info Local Const $IDYES = 6 Local Const $KEY_ENVIRONMENT = 'HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment' ; show the variable contents $info = $VALUE & ' variable is' MsgBox(0x40000, $VALUE, $info & @CRLF & @CRLF & EnvGet($VALUE)) ; show expected variable contents $info = $VALUE & ' variable supposed to be similar to (may contain more semicolon delimited entries)' MsgBox(0x40000, $VALUE, $info & @CRLF & @CRLF & $DATA) ; read the registry for HKLM contents If RegRead($KEY_ENVIRONMENT, $VALUE) = '' And Not @error Then ; ask for update to the variable if empty $info = 'Do you want to add system paths expected to the ' & $VALUE & ' variable' If MsgBox(0x40024, $VALUE, $info) = $IDYES Then ; update to the variable RegWrite($KEY_ENVIRONMENT, $VALUE, 'REG_SZ', $DATA) EnvUpdate() EndIf EndIf EndFunc Link to comment Share on other sites More sharing options...
perfessor101 Posted June 7, 2008 Author Share Posted June 7, 2008 At least check your PATH and PATHEXT before considering a reinstall of Windows. This script may help to check easily _Update_PATH('PATH', @WindowsDir & ';' & @SystemDir & ';' & @SystemDir & '\WBEM') _Update_PATH('PATHEXT', '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH') Func _Update_PATH(Const $VALUE, Const $DATA) Local $info Local Const $IDYES = 6 Local Const $KEY_ENVIRONMENT = 'HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment' ; show the variable contents $info = $VALUE & ' variable is' MsgBox(0x40000, $VALUE, $info & @CRLF & @CRLF & EnvGet($VALUE)) ; show expected variable contents $info = $VALUE & ' variable supposed to be similar to (may contain more semicolon delimited entries)' MsgBox(0x40000, $VALUE, $info & @CRLF & @CRLF & $DATA) ; read the registry for HKLM contents If RegRead($KEY_ENVIRONMENT, $VALUE) = '' And Not @error Then ; ask for update to the variable if empty $info = 'Do you want to add system paths expected to the ' & $VALUE & ' variable' If MsgBox(0x40024, $VALUE, $info) = $IDYES Then ; update to the variable RegWrite($KEY_ENVIRONMENT, $VALUE, 'REG_SZ', $DATA) EnvUpdate() EndIf EndIf EndFunc I compiled your program and the values returned seemed ok ... a few more entries ... Here's the output of Set : ALLUSERSPROFILE=C:\Documents and Settings\All Users APPDATA=C:\Documents and Settings\bobbys\Application Data CLIENTNAME=Console CommonProgramFiles=C:\Program Files\Common Files COMPUTERNAME=M3A-2 ComSpec=C:\WINDOWS\system32\cmd.exe FP_NO_HOST_CHECK=NO HOMEDRIVE=C: HOMEPATH=\Documents and Settings\bobbys LOGONSERVER=\\M3A-2 NUMBER_OF_PROCESSORS=4 OS=Windows_NT Path=C:\Program Files\Windows Resource Kits\Tools\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\MySQL\MySQL Server 5.0\bin;c:\testing\berk;c:\testing;C:\Program Files\Smart Projects\IsoBuster PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH PROCESSOR_ARCHITECTURE=x86 PROCESSOR_IDENTIFIER=x86 Family 16 Model 2 Stepping 3, AuthenticAMD PROCESSOR_LEVEL=16 PROCESSOR_REVISION=0203 ProgramFiles=C:\Program Files PROMPT=$P$G SESSIONNAME=Console SystemDrive=C: SystemRoot=C:\WINDOWS TEMP=C:\DOCUME~1\bobbys\LOCALS~1\Temp TMP=C:\DOCUME~1\bobbys\LOCALS~1\Temp USERDOMAIN=M3A-2 USERNAME=bobbys USERPROFILE=C:\Documents and Settings\bobbys windir=C:\WINDOWS Still looking for the source of this problem Link to comment Share on other sites More sharing options...
MHz Posted June 7, 2008 Share Posted June 7, 2008 When I type 'LaunchNMP.au3' at a command prompt the system responds with "The system cannot execute the program specified." Any AutoIt script (*.au3) started from the command line gives me the same response. I have also found that any file with an extension other than *.bat, *.com, *.exe when typed at the command line will give me that error. for example if I typed any of the following at a command prompt : todo.txt, video.mpg, faq.doc, manual.rtf (they exist in the current directory path) they will return "The system cannot execute the program specified", instead of the normal default action which would be to launch that extensions associated program.Your environmental variables look ok as you display in the previous reply. When you run these from a command prompt, would you try using the Start command. I.e. Start todo.txt assuming the command prompt is opened at the working directory of where the file is. If the files open correct using the Start command then associations would perhaps be fine. You can veiw associations by typing ftype|more at the command prompt and you will see all the file types and the default open commands listed. That will help visually confirm the state of file type associations. Link to comment Share on other sites More sharing options...
perfessor101 Posted June 7, 2008 Author Share Posted June 7, 2008 (edited) Your environmental variables look ok as you display in the previous reply. When you run these from a command prompt, would you try using the Start command. I.e. Start todo.txt assuming the command prompt is opened at the working directory of where the file is. If the files open correct using the Start command then associations would perhaps be fine. You can veiw associations by typing ftype|more at the command prompt and you will see all the file types and the default open commands listed. That will help visually confirm the state of file type associations. start todo.txt returns the same error "The system cannot execute the program specified." ftype | more returns expandcollapse popup123Worksheet=C:\lotus\123\123w.exe "%1" ACDSee.ais="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.ani="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.art="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.AutoPlayHandler="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.bmp="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.bw="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.crw="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.cur="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.dcx="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.ddf="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.dib="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.djv="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.djvu="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.emf="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.fpx="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.gif="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.icl="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.icn="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.ico="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.iff="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.ilbm="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.int="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.inta="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.iw4="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.jfif="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.jif="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.jpe="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.jpeg="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.jpg="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.kdc="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.lbm="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.mag="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.pbm="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.pcd="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.pct="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.pcx="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.pgm="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.pic="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.pict="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.pix="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.plp="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.png="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.ppm="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.psd="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.psp="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.ras="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.rgb="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.rgba="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.rle="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.rsb="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.sgi="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.sid="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.tga="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.thm="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.tif="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.tiff="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.ttc="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.ttf="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.wmf="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.xbm="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.xif="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" ACDSee.xpm="C:\Program Files\ACD Systems\ACDSee\5.0\ACDSee5.exe" "%1" acrobat=C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe /u "%1" AcroExch.Document="C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe" "%1" AcroExch.document.7="C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe" "%1" AcroExch.FDFDoc="C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe" "%1" AcroExch.XDPDoc="C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe" "%1" AcroExch.XFDFDoc="C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe" "%1" acwfile=%SystemRoot%\system32\accwiz.exe %1 AIFFFile="C:\Program Files\Windows Media Player\wmplayer.exe" /Open "%L" Application.Manifest=rundll32.exe dfshim.dll,ShOpenVerbApplication %1 Application.Reference=rundll32.exe dfshim.dll,ShOpenVerbShortcut %1 Applications="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" ASFFile="C:\Program Files\Windows Media Player\wmplayer.exe" /prefetch:7 /Open "%L" aspects_auto_file=%SystemRoot%\system32\NOTEPAD.EXE %1 ASXFile="C:\Program Files\Windows Media Player\wmplayer.exe" /Open "%L" AUFile="C:\Program Files\Windows Media Player\wmplayer.exe" /Open "%L" AutoIt3Script="C:\Program Files\AutoIt3\SciTE\SciTE.exe" "%1" AutoIt3ScriptBeta="C:\Program Files\AutoIt3\SciTE\SciTE.exe" "%1" AVIFile="C:\Program Files\Windows Media Player\wmplayer.exe" /prefetch:8 /Open "%L" batfile="%1" %* Briefcase=explorer.exe %1 callto="C:\Program Files\Skype\Phone\Skype.exe" "/callto:"%l"" CATFile=rundll32.exe cryptext.dll,CryptExtOpenCAT %1 cclaunch="C:\Program Files\CCleaner\ccleaner.exe" /%1 cdafile="C:\Program Files\Windows Media Player\wmplayer.exe" /Open "%L" CERFile=rundll32.exe cryptext.dll,CryptExtOpenCER %1 CertificateStoreFile=rundll32.exe cryptext.dll,CryptExtOpenSTR %1 certificate_wab_auto_file="C:\Program Files\Outlook Express\wab.exe" /certificate %1 chm.file="C:\WINDOWS\hh.exe" %1 clpfile=clipbrd.exe %1 cmdfile="%1" %* comfile="%1" %* CompressedFolder=rundll32.exe zipfldr.dll,RouteTheCall %L contact_vcard_file="C:\Program Files\Windows Live\Mail\wlmail.exe" /VCard %1 CoverDesigner.Files7.cdc="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" CoverDesigner.Files7.ncd="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" CRLFile=rundll32.exe cryptext.dll,CryptExtOpenCRL %1 DaysEase.Document=H:\an7-f\INSTAL~1\INSTAL~2\programs\daysease\DaysEase.exe "%1" divFile="C:\Program Files\DivX\DivX Player\DivX Player.exe" "%1" divxFile="C:\Program Files\DivX\DivX Player\DivX Player.exe" "%1" divxTicketFile="C:\Program Files\DivX\DivX Player\DivX Player.exe" "%1" DocShortcut=rundll32 %SystemRoot%\System32\shscrap.dll,OpenScrap_RunDLL /r /x %1 dpsFile="C:\Program Files\DivX\DivX Player\DivX Player.exe" "%1" dunfile=%SystemRoot%\system32\RUNDLL32.EXE NETSHELL.DLL,InvokeDunFile %1 dxuFile="C:\Program Files\DivX\DivX Player\DivX Player.exe" "%1" EBXTransfer="C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe" "%1" EDNActivation="C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe" "%1" emffile=rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscreen %1 error_auto_file=%SystemRoot%\system32\NOTEPAD.EXE %1 exefile="%1" %* FirefoxHTML="C:\Program Files\Mozilla Firefox 3 Beta 5\firefox.exe" -requestPending -osint -url "%1" FirefoxURL="C:\Program Files\Mozilla Firefox 3 Beta 5\firefox.exe" -requestPending -osint -url "%1" fndfile=%SystemRoot%\Explorer.exe Folder=%SystemRoot%\Explorer.exe /idlist,%I,%L fonfile=%SystemRoot%\System32\fontview.exe %1 ftp="C:\Program Files\Internet Explorer\IEXPLORE.EXE" %1 giffile="C:\Program Files\Internet Explorer\iexplore.exe" -nohome Google Earth.etafile="C:\Program Files\Google\Google Desktop Search\GoogleDesktop.exe" /display /kml "%1" Google Earth.kmlfile="C:\Program Files\Google\Google Desktop Search\GoogleDesktop.exe" /display /kml "%1" Google Earth.kmzfile="C:\Program Files\Google\Google Desktop Search\GoogleDesktop.exe" /display /kml "%1" GoogleDesktop.search="C:\Program Files\Google\Google Desktop Search\GoogleDesktop.exe" /search "%1" GoogleGadget="C:\Program Files\Google\Google Desktop Search\GoogleDesktop.exe" /display /load "%1" GoogleGadgetContainer="C:\Program Files\Google\Google Desktop Search\GoogleDesktop.exe" /display /load "%1" GoogleGadgetManifest="C:\Program Files\Google\Google Desktop Search\GoogleDesktop.exe" /display /load "%1" gopher="C:\Program Files\Internet Explorer\iexplore.exe" -nohome HCP="C:\WINDOWS\PCHealth\HelpCtr\Binaries\HelpCtr.exe" -FromHCP -url "%1" helpfile=winhlp32.exe %1 hlpfile=%SystemRoot%\System32\winhlp32.exe %1 htafile=C:\WINDOWS\system32\mshta.exe "%1" %* htfile="C:\Program Files\Windows NT\HYPERTRM.EXE" %1 htmlfile="C:\Program Files\Internet Explorer\iexplore.exe" -nohome HTTP="C:\Program Files\Mozilla Firefox 3 Beta 5\firefox.exe" -requestPending -osint -url "%1" https="C:\Program Files\Mozilla Firefox 3 Beta 5\firefox.exe" -requestPending -osint -url "%1" ICY=C:\Program Files\Winamp\winamp.exe %1 inffile=%SystemRoot%\System32\NOTEPAD.EXE %1 inifile=%SystemRoot%\System32\NOTEPAD.EXE %1 InternetShortcut=rundll32.exe shdocvw.dll,OpenURL %l IrfanView="C:\Program Files\IrfanView\i_view32.exe" "%1" IsoBuster.b5i="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.b5t="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.bin="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.c2d="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.ccd="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.cd="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.cdi="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.cif="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.cue="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.dao="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.dmg="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.fcd="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.gcd="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.gi="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.ibp="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.ibq="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.img="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.iso="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.mdf="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.mds="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.nrg="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.P01="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.pdi="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.pxi="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.tao="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" IsoBuster.vc4="C:\Program Files\Smart Projects\IsoBuster\IsoBuster.exe" "%1" ITS FILE="C:\Program Files\Internet Explorer\iexplore.exe" -nohome jarfile="C:\Program Files\Java\jre1.6.0_05\bin\javaw.exe" -jar "%1" %* JNLPFile="C:\Program Files\Java\jre1.6.0_05\bin\javaws.exe" "%1" JSEFile=%SystemRoot%\System32\WScript.exe "%1" %* JSFile=%SystemRoot%\System32\WScript.exe "%1" %* LDAP="C:\Program Files\Outlook Express\wab.exe" /ldap:%1 Lotus123.SmartMaster.98=C:\lotus\123\123w.exe "%1" Lotus123.Workbook.98=C:\lotus\123\123w.exe "%1" m3ufile="C:\Program Files\Windows Media Player\wmplayer.exe" /prefetch:6 /Open "%L" MacromediaFlashPaper.MacromediaFlashPaper="C:\Program Files\Mozilla Firefox 3 Beta 5\firefox.exe" -requestPending -osint -url "%1" mailto="C:\Program Files\Windows Live\Mail\wlmail.exe" /mailurl:%1 MD5_Checksum_File="C:\Program Files\QuickPar\QuickPar.exe" "%1" mhtmlfile="C:\Program Files\Internet Explorer\IEXPLORE.EXE" -nohome Microsoft Internet Mail Message="C:\Program Files\Windows Live\Mail\wlmail.exe" /eml:%1 Microsoft Internet News Message="C:\Program Files\Windows Live\Mail\wlmail.exe" /nws:%1 MIDFile="C:\Program Files\Windows Media Player\wmplayer.exe" /Open "%L" MMS="C:\Program Files\Windows Media Player\wmplayer.exe" "%L" MMST="C:\Program Files\Windows Media Player\wmplayer.exe" "%L" MMSU="C:\Program Files\Windows Media Player\wmplayer.exe" "%L" money=C:\Program Files\Microsoft Money\System\msmoney.exe Money.Document="C:\Program Files\Microsoft Money\System\msmoney.exe" %1 MoneyBackup.Document="C:\Program Files\Microsoft Money\System\msmoney.exe" %1 mp3file="C:\Program Files\Windows Media Player\wmplayer.exe" /prefetch:6 /Open "%L" mpegfile="C:\Program Files\Windows Media Player\wmplayer.exe" /prefetch:9 /Open "%L" MPlayer=mplay32.exe /play /close "%L" msbackupfile=%SystemRoot%\system32\ntbackup.exe MSBD="C:\Program Files\Windows Media Player\wmplayer.exe" "%L" MSCFile=%SystemRoot%\system32\mmc.exe "%1" %* MSDASC=Rundll32.exe C:\PROGRA~1\COMMON~1\System\OLEDB~1\oledb32.dll,OpenDSLFile %1 Msi.Package="%SystemRoot%\System32\msiexec.exe" /i "%1" %* Msi.Patch="%SystemRoot%\System32\msiexec.exe" /p "%1" %* MSInfo.Document=C:\Program Files\Common Files\Microsoft Shared\MSInfo\MSInfo32.exe /msinfo_file %1 MSProgramGroup=C:\WINDOWS\system32\grpconv.exe %1 MsRcIncident=%SystemRoot%\PCHealth\HelpCtr\Binaries\HelpCtr.exe -Mode "hcp://system/Remote%%20Assistance/RAClientLayout.xml" -url "hcp://system/Remote%%20Assistance/Interaction/Client/rctoolScreen1.htm" -ExtraArgument "IncidentFile=%1" msstylesfile=%SystemRoot%\system32\rundll32.exe %SystemRoot%\system32\shell32.dll,Control_RunDLL %SystemRoot%\system32\desk.cpl desk,@Appearance /Action:OpenMSTheme /file:"%1" MusicMagicFile=C:\Program Files\MusicIP\MusicIP Mixer\MusicMagicMixer.exe %1 NeroBackItUp.Files7.nba="C:\Program Files\Nero\Nero 7\Nero BackItUp\BackItUp.exe" "%1" NeroBackItUp.Files7.nbi="C:\Program Files\Nero\Nero 7\Nero BackItUp\BackItUp.exe" "%1" NeroBackItUp.Files7.nbt="C:\Program Files\Nero\Nero 7\Nero BackItUp\BackItUp.exe" "%1" NeroBackItUp.Files7.nco="C:\Program Files\Nero\Nero 7\Nero BackItUp\BackItUp.exe" "%1" NeroBackItUp.Files7.nc_="C:\Program Files\Nero\Nero 7\Nero BackItUp\BackItUp.exe" "%1" NeroBackItUp.Files7.nda="C:\Program Files\Nero\Nero 7\Nero BackItUp\BackItUp.exe" "%1" NeroBackItUp.Files7.nef="C:\Program Files\Nero\Nero 7\Nero BackItUp\BackItUp.exe" "%1" NeroBackItUp.Files7.nji="C:\Program Files\Nero\Nero 7\Nero BackItUp\BackItUp.exe" "%1" NeroBackItUp.Files7.njt="C:\Program Files\Nero\Nero 7\Nero BackItUp\BackItUp.exe" "%1" NeroBurningROM.Files7.cue="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.iso="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nhf="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nhv="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nmd="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nr3="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nr4="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nra="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nrb="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nrc="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nrd="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nre="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nrg="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nrh="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nri="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nrm="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nrs="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nru="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nrv="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nrw="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroBurningROM.Files7.nsd="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroCoverDesigner.Files7.bmp="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroCoverDesigner.Files7.cdc="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroCoverDesigner.Files7.dib="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroCoverDesigner.Files7.gif="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroCoverDesigner.Files7.jif="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroCoverDesigner.Files7.jpg="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroCoverDesigner.Files7.ncd="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroCoverDesigner.Files7.ncw="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroCoverDesigner.Files7.pcx="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroCoverDesigner.Files7.png="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroCoverDesigner.Files7.tga="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroCoverDesigner.Files7.tif="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroCoverDesigner.Files7.wmf="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroCoverDesigner.Files7.wpg="C:\Program Files\Nero\Nero 7\Nero CoverDesigner\CoverDes.exe" "%1" NeroExpress.Files7.nab="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroExpress.Files7.nrj="C:\Program Files\Nero\Nero 7\Core\nero.exe" "%1" NeroPhotoSnapViewer.Files7.bmp="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.cut="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.dds="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.gif="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.ico="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.iff="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.jfif="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.jif="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.jng="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.jpe="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.jpeg="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.jpg="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.koa="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.lbm="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.ljp="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.mng="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.ncw="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.pbm="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.pcd="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.pcx="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.png="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.ppm="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.psd="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.tga="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.tif="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.tiff="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.wbm="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.wbmp="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.wmf="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.wpg="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroPhotoSnapViewer.Files7.xbm="C:\Program Files\Nero\Nero 7\Nero PhotoSnap\PhotoSnapViewer.exe" "%1" NeroVision.Document="C:\Program Files\Nero\Nero 7\Nero Vision\NeroVision.exe" "%1" news="%ProgramFiles%\Outlook Express\msimn.exe" /newsurl:"%1" nntp="%ProgramFiles%\Outlook Express\msimn.exe" /newsurl:"%1" NZBfile=C:\Program Files\NewsMan Pro\Newsman.exe "%1" nzb_auto_file="C:\Program Files\NewsMan Pro\NewsMan.exe" "%1" ofc.Document="C:\Program Files\Microsoft Money\System\mnyimprt.exe" %1 office.Extension.1="C:\Program Files\OpenOffice.org 2.4\program\unopkg.exe" gui "%1" ofx.Document="C:\Program Files\Microsoft Money\System\mnyimprt.exe" %1 opendocument.Calcdocument.1="C:\Program Files\OpenOffice.org 2.4\program\scalc.exe" -o "%1" opendocument.CalcTemplate.1="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" opendocument.Databasedocument.1="C:\Program Files\OpenOffice.org 2.4\program\sbase.exe" -o "%1" opendocument.Drawdocument.1="C:\Program Files\OpenOffice.org 2.4\program\sdraw.exe" -o "%1" opendocument.DrawTemplate.1="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" opendocument.Impressdocument.1="C:\Program Files\OpenOffice.org 2.4\program\simpress.exe" -o "%1" opendocument.ImpressTemplate.1="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" opendocument.Mathdocument.1="C:\Program Files\OpenOffice.org 2.4\program\smath.exe" -o "%1" opendocument.Writerdocument.1="C:\Program Files\OpenOffice.org 2.4\program\swriter.exe" -o "%1" opendocument.WriterGlobaldocument.1="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" opendocument.WriterTemplate.1="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" opendocument.WriterWebTemplate.1="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" OpenOffice.org.doc="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -writer -o "%1" OpenOffice.org.dot="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -writer -o "%1" OpenOffice.org.pot="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -impress -o "%1" OpenOffice.org.pps="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -impress -o "%1" OpenOffice.org.ppt="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -impress -o "%1" OpenOffice.org.rtf="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -writer -o "%1" OpenOffice.org.xls="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -calc -o "%1" OpenOffice.org.xlt="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -calc -o "%1" otffile=%SystemRoot%\System32\fontview.exe %1 Outpost.AttachmentQuarantine=rundll32.exe C:\PROGRA~1\Agnitum\OUTPOS~1\op_shell.dll,ProcessFile %1 P7RFile=rundll32.exe cryptext.dll,CryptExtOpenP7R %1 P7SFile=rundll32.exe cryptext.dll,CryptExtOpenPKCS7 %1 Paint.Picture=rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscreen %1 PAR2_Recovery_Volume="C:\Program Files\QuickPar\QuickPar.exe" "%1" PAR_Recovery_Volume="C:\Program Files\QuickPar\QuickPar.exe" "%1" pbkfile=%SystemRoot%\system32\rasphone.exe -f "%1" PerfFile=%SystemRoot%\system32\perfmon.exe %1 pfmfile=%SystemRoot%\System32\fontview.exe %1 piffile="%1" %* pjpegfile=rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscreen %1 pngfile=rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscreen %1 pnm="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" prffile=rundll32.exe msrating.dll,ClickedOnPRF %1 Publishing Folder=explorer.exe /idlist,%I,%L qif.Document="C:\Program Files\Microsoft Money\System\mnyimprt.exe" %1 ratfile=rundll32.exe msrating.dll,ClickedOnRAT %1 RealJukebox.RJS.1="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealJukebox.RJT.1="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealJukebox.RMJ.1="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealJukebox.RMP.1="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealJukebox.RMX.1="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.3GPP2.10="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.3GPP_AMR.10="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.AMR.10="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.AMR_WB.10="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.AutoPlay.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" /autoplay "%1" RealPlayer.CDBurn.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" /burn "%1" RealPlayer.IVR.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.PIX.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.RA.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.RAM.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.RAX.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.RM.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.RMS.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.RMVB.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.RP.6="C:\Program Files\Common Files\Real\Update_OB\rnxproc.exe" "%1" RealPlayer.RSML.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.RT.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.RV.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.RVX.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.SDP.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" RealPlayer.SMIL.6="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" regedit=regedit.exe %1 regfile=regedit.exe %1 rlogin=rundll32.exe url.dll,TelnetProtocolHandler %l rtffile="C:\Program Files\Windows NT\Accessories\WORDPAD.EXE" "%1" rtsp="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" SavedDsQuery=rundll32 %SystemRoot%\system32\dsquery.dll,OpenSavedDsQuery %1 SC=C:\Program Files\Winamp\winamp.exe %1 scrfile="%1" %* scriptletfile="C:\WINDOWS\NOTEPAD.EXE" "%1" Search-ms="C:\Program Files\Windows Desktop Search\WindowsSearch.exe" /url "%1" SFV_Checksum_File="C:\Program Files\QuickPar\QuickPar.exe" "%1" SHCmdFile=explorer.exe Shell=%SystemRoot%\Explorer.exe /idlist,%I,%L ShellScrap=rundll32 %SystemRoot%\system32\shscrap.dll,OpenScrap_RunDLL %1 SHOUT=C:\Program Files\Winamp\winamp.exe %1 skype="C:\Program Files\Skype\Phone\Skype.exe" "/uri:%l" Skype.Content="C:\Program Files\Skype\Phone\Skype.exe" /file:"%1" snews="%ProgramFiles%\Outlook Express\msimn.exe" /newsurl:"%1" soffice.StarCalcdocument.5="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarCalcdocument.6="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarCalcTemplate.6="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarChartdocument.5="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarDrawdocument.5="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarDrawdocument.6="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarDrawTemplate.6="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarImpressdocument.5="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarImpressdocument.6="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarImpressTemplate.6="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarMathdocument.5="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarMathdocument.6="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarOfficeTemplate.5="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarWriterdocument.5="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarWriterdocument.6="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarWriterGlobaldocument.5="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarWriterGlobaldocument.6="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" soffice.StarWriterTemplate.6="C:\Program Files\OpenOffice.org 2.4\program\soffice.exe" -o "%1" SoundRec="C:\Program Files\Windows Media Player\wmplayer.exe" /Open "%L" SPCFile=rundll32.exe cryptext.dll,CryptExtOpenPKCS7 %1 SpybotSD.DisabledFile="C:\Program Files\Spybot - Search & Destroy\blindman.exe" "%1" SpybotSD.SBEFile="C:\Program Files\Spybot - Search & Destroy\SpybotSD.exe" "%1" SpybotSD.SBIFile="C:\Program Files\Spybot - Search & Destroy\SpybotSD.exe" "%1" SpybotSD.SBSFile="C:\Program Files\Spybot - Search & Destroy\SpybotSD.exe" "%1" SpybotSD.TInfoFile="C:\Program Files\Spybot - Search & Destroy\SpybotSD.exe" "%1" SpybotSD.UTIFile="C:\Program Files\Spybot - Search & Destroy\SpybotSD.exe" "%1" SpybotSD.UTSFile="C:\Program Files\Spybot - Search & Destroy\SpybotSD.exe" "%1" SSM="C:\Program Files\Real\RealPlayer\RealPlay.exe" "%1" STLFile=rundll32.exe cryptext.dll,CryptExtOpenCTL %1 SUPER.Encode.Profile=C:\Program Files\eRightSoft\SUPER\SUPER.exe "%1" telnet=rundll32.exe url.dll,TelnetProtocolHandler %l themefile=%SystemRoot%\system32\rundll32.exe %SystemRoot%\system32\shell32.dll,Control_RunDLL %SystemRoot%\system32\desk.cpl desk,@Themes /Action:OpenTheme /file:"%1" tibfile="C:\Program Files\Acronis\TrueImageHome\TrueImage.exe" /restore:"%1" TIFImage.Document=rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscreen %1 tn3270=rundll32.exe url.dll,TelnetProtocolHandler %l ttcfile=%SystemRoot%\System32\fontview.exe %1 ttffile=%SystemRoot%\System32\fontview.exe %1 txtfile=%SystemRoot%\system32\NOTEPAD.EXE %1 UNSV=C:\Program Files\Winamp\winamp.exe %1 UVOX=C:\Program Files\Winamp\winamp.exe %1 VBEFile=%SystemRoot%\System32\WScript.exe "%1" %* VBSFile=%SystemRoot%\System32\WScript.exe "%1" %* vcard_wab_auto_file="C:\Program Files\Outlook Express\wab.exe" /vcard %1 VncViewer.Config="C:\Program Files\UltraVNC\vncviewer.exe" -config "%1" wab_auto_file="C:\Program Files\Outlook Express\wab.exe" %1 WAXFile="C:\Program Files\Windows Media Player\wmplayer.exe" /Open "%L" webpnpFile=%SystemRoot%\system32\wpnpinst.exe %1 Winamp.File="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.669="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.AAC="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.aiff="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.amf="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.ASF="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.au="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.AVI="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.avr="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.caf="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.CDA="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.far="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.FLAC="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.FLV="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.htk="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.iff="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.it="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.itz="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.KAR="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.M2V="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.M4A="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.mat="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.mdz="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.MID="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.MIDI="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.MIZ="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.mod="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.MP1="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.MP2="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.MP3="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.MP4="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.MPEG="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.MPG="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.mtm="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.NSA="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.nst="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.NSV="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.OGG="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.okt="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.paf="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.ptm="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.pvf="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.raw="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.RMI="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.s3m="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.s3z="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.sd2="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.sds="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.sf="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.stm="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.stz="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.ult="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.VLB="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.voc="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.w64="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.wav="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.WMA="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.WMV="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.xi="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.xm="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.File.xmz="C:\Program Files\Winamp\winamp.exe" "%1" Winamp.PlayList="C:\Program Files\Winamp\winamp.exe" "%1" Windows Live Contact="C:\Program Files\Windows Live\Mail\wlmail.exe" /contact:%1 Windows Live Group="C:\Program Files\Windows Live\Mail\wlmail.exe" /group:%1 Windows.Movie.Maker="C:\Program Files\Movie Maker\moviemk.exe" %1 WinRAR="C:\Program Files\WinRAR\WinRAR.exe" "%1" WinRAR.REV="C:\Program Files\WinRAR\WinRAR.exe" "%1" WinRAR.ZIP="C:\Program Files\WinRAR\WinRAR.exe" "%1" wmafile="C:\Program Files\Windows Media Player\wmplayer.exe" /prefetch:5 /Open "%L" WMDFile="C:\Program Files\Windows Media Player\wmplayer.exe" /WMPackage:"%L" wmffile=rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscreen %1 WMP.DVR-MSFile="C:\Program Files\Windows Media Player\wmplayer.exe" /Open "%L" WMSFile="C:\Program Files\Windows Media Player\wmplayer.exe" /layout:"%L" WMVFile="C:\Program Files\Windows Media Player\wmplayer.exe" /prefetch:7 /Open "%L" WMZFile="C:\Program Files\Windows Media Player\wmplayer.exe" /layout:"%L" Wordpad.document.1="%ProgramFiles%\Windows NT\Accessories\WORDPAD.EXE" "%1" WordPro.Document="C:\lotus\wordpro\wordpro.exe" -f "%1" WordPro.SmartMaster="C:\lotus\wordpro\wordpro.exe" -f "%1" WPLFile="C:\Program Files\Windows Media Player\wmplayer.exe" /Open "%L" wrifile="C:\Program Files\Windows NT\Accessories\WORDPAD.EXE" "%1" WSFFile=%SystemRoot%\System32\WScript.exe "%1" %* WSHFile=%SystemRoot%\System32\WScript.exe "%1" %* WVXFile="C:\Program Files\Windows Media Player\wmplayer.exe" /Open "%L" x-internet-signup=%ProgramFiles%\Internet Explorer\Connection Wizard\ISIGNUP.EXE %1 xmlfile="C:\Program Files\Internet Explorer\iexplore.exe" -nohome xslfile="C:\Program Files\Internet Explorer\iexplore.exe" -nohome ymsgr="C:\Program Files\Yahoo!\Messenger\YahooMessenger.exe" %1 YPager.Messenger="C:\Program Files\Yahoo!\Messenger\YahooMessenger.exe" %1 YPager.Messenger.1="C:\Program Files\Yahoo!\Messenger\YahooMessenger.exe" %1 zapfile=%SystemRoot%\system32\NOTEPAD.EXE %1 should something else be associated with cmd.exe other than ComSpec=C:\WINDOWS\system32\cmd.exe? Edited June 7, 2008 by perfessor101 Link to comment Share on other sites More sharing options...
MHz Posted June 7, 2008 Share Posted June 7, 2008 should something else be associated with cmd.exe other than ComSpec=C:\WINDOWS\system32\cmd.exe?The Comspec setting is fine. Cmd.exe is the NT interpreter for the command prompt. I am not sure what could be causing the issue. You could try Dial-a-fix or similar to see if it may fix it if your lucky but a fresh install of windows maybe the easiest option at present. Spending too much time on an issue can instead be useful time used in a clean install of windows. Link to comment Share on other sites More sharing options...
perfessor101 Posted June 9, 2008 Author Share Posted June 9, 2008 The Comspec setting is fine. Cmd.exe is the NT interpreter for the command prompt. I am not sure what could be causing the issue. You could try Dial-a-fix or similar to see if it may fix it if your lucky but a fresh install of windows maybe the easiest option at present. Spending too much time on an issue can instead be useful time used in a clean install of windows.Another symptom I seem to have is that other computers cannot browse the network shares on this system even with the firewall configured correctly ... Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now