eddy_71Under WinXP Pro, two copies of taskkill.exe are found here:
- C:\WINDOWS\system32\
- C:\WINDOWS\system32\dllcache\
taskkill.exe is installed by default with WinXP Pro.
However, as I read in some posts, taskkill.exe isn't part of WinXP Home. So, if you have WinXP Home, you need to get taskkill.exe, then put it here:
$OEM$\$$\System32\taskkill.exeThis is an example taken from a post:
QUOTE
REG ADD %KEY%\0070 /VE /D "IsoBuster" /f
REG ADD %KEY%\0070 /V 1 /D "%systemdrive%\install\IsoBuster.exe /VERYSILENT /SP-" /f
REG ADD %KEY%\0070 /V 2 /D "taskkill /F /IM isobuster.exe" /f
REG ADD %KEY%\0110 /VE /D "Getright Download Manager" /f
REG ADD %KEY%\0110 /V 1 /D "%systemdrive%\install\Getright.exe /s" /f
As you can see, you don't have to refer to the directory in which taskkill.exe resides, which is System32. Nor you need to put the taskkill program in DAP directory.
/F means
force (i.e. to force termination of a process without confirmation)
/IM means
image (i.e. name of process or program to terminate).
More info:
http://unattended.msfn.org/xp/runonceex.htmVisit this link for more information on taskkill:
http://www.microsoft.com/windowsxp/home/us...en/taskkill.aspI hope this helps.