svortevik Posted June 18, 2005 Posted June 18, 2005 When installing some of my programs I need taskkill to run, but it wont.Can anyone look over my commands and tell med whats wrong?REG ADD %KEY%\009 /VE /D "BulletProof FTP Server" /fREG ADD %KEY%\009 /V 1 /D "%PP%ftpsetup.exe /verysilent" /fREG ADD %KEY%\009 /V 2 /D "taskkill.exe /IM bpftpserver.exe" /fREG ADD %KEY%\009 /V 3 /D "%PP%bpftpserver.exe" /fREG ADD %KEY%\016 /VE /D "DVD Identifier" /fREG ADD %KEY%\016 /V 1 /D "%PP%DVDIdentifier3.6.3.1.exe /VERYSILENT" /fREG ADD %KEY%\016 /V 2 /D "taskkill.exe /IM "DVD Identifier.exe"" /fREG ADD %KEY%\038 /VE /D "Opera Search ini editor" /fREG ADD %KEY%\038 /V 1 /D "%PP%OperaSearchIni\opsedsetup123.exe /SILENT" /fREG ADD %KEY%\038 /V 2 /D "taskkill.exe /IM opsed.exe" /fREG ADD %KEY%\052 /VE /D "TuneXp 1.5" /fREG ADD %KEY%\052 /V 1 /D "%PP%TuneXP15.exe /VERYSILENT /SP-" /fREG ADD %KEY%\052 /V 2 /D "%PP%Sleep.exe 10" /fREG ADD %KEY%\052 /V 3 /D "taskkill.exe /IM tunexp.exe" /f
Achdine Posted June 18, 2005 Posted June 18, 2005 Try adding the /F switch to "forcefully terminate the process(es)."You could also try using PsKill or NirCMD.
MAVERICKS CHOICE Posted June 18, 2005 Posted June 18, 2005 Pretty sure usin Taskill in Runonceex like that will cause the executeable to run first then execute taskill next not really servin the purpose. I generally script it through Autoit.
DonDamm Posted June 19, 2005 Posted June 19, 2005 svortevik, I don't know what your %pp% expands to, but at first glance I noticed that for the first two you might have a problem with the quotes. With RunOnceEx if you need more quotes you will need to preced them with a "\" to get them to transfer properly.So, your lineREG ADD %KEY%\016 /V 2 /D "taskkill.exe /IM "DVD Identifier.exe"" /fshould be...REG ADD %KEY%\016 /V 2 /D "taskkill.exe /IM \"DVD Identifier.exe\"" /fIf you expansion variable includes any spaces when expanded, then you'll have the same problem (I know as I learned the hard way!).Your first line has the executable being executed just after you've killed it!!!The other two I'm not too familiar with, so I can only ask why use sleep.exe and then taskill?? You might be able to wrap them in a Winrar sfx file or use 7zip for a silent install, but others here can better advise you.
svortevik Posted June 20, 2005 Author Posted June 20, 2005 PP=%cdrom%\Install\I`ll try to use "\" and see if that helps.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now