Jump to content

Recommended Posts

Posted

i am having a strange problem

i want to know how to ascertain image name in taskkill

i want to install a software called crazy browser (inno setup)

its install properly

but it is executed after installation

and i want to kill it by using taskkill but i am not sure how to do it

i mean how to ascertain the image name i.e im

i have tried following lines

taskkill.exe /F /IM crazybrowser.exe

taskkill.exe /F /IM crazy browser.exe

taskkill.exe /F /IM Crazy Browser.exe

taskkill.exe /F /IM CrazyBrowser.exe

pskill crazybrowser.exe

pskill crazy browser.exe

plz tell me how to get details regarding image file im

ECHO.

ECHO Installing Crazy Browser

ECHO Please wait...

start /wait %systemdrive%\apps\crazybrowser.exe /VERYSILENT /SP-

ECHO.

ECHO Killing Crazy Browser

taskkill.exe /F /IM crazybrowser.exe


Posted

To run task manager and see exactly the name of process... Or U can use tasklist from cmd... Using taskkill to kill process is not the best way - better is to use

pskill

or

wmic process where name="process.exe" call terminate

Posted

@mikku

what is ur operating system.bcz for windows xp home edition taskkill,pskill r not working.iam using belo code to taskill my yahoo messenger

prog[pn]=['Yahoo Messenger']

desc[pn]=['Yahoo Messenger is a free service that allows you to see when friends come online and send them instant messages..']

cmd1[pn]=['%cdrom%\\DOCS\\Install\\Yahoo\\Yahoo.exe /S']

cmd2[pn]=['tskill ypager']

dflt[pn]=['yes']

ordr[pn]=[240]

pn++

i dono exactly why.but for xp home edition this is the only way.o else u have to go for pskill.exe (extrenal application)

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...