DISQUS

Tech-Recipes: NT/2000/XP: Clearing relaunching spyware processes | Windows spyware | Tech-Recipes

  • davak · 5 years ago
    So when I use this in XP:

    tskill *

    It kills everything... and then reboots. I have no way to running anything before the system reloads everything. There is got to be an easy way to kill everything except the nonvitals.

    Do you have an easier way?
  • GauntletWizard · 5 years ago
    Hmm.. I've never seen that require a reboot. You can replace the asterisk with a regular expression that matches the process names of the spyware (e.g. tskill w* for wintoolsa and wsup, the wintools daemons). You can also run "tskill *" and then "Shutdown -a" to prevent a shutdown, if you can bring up the task manager fast enough.
  • MickeyMouse · 5 years ago
    If you kill an svchost.exe process with CTRL-ALT-DEL, it gives that little countdown and then reboots...

    the blanket tskill * does it as well... I am assuming it is from killing the svchost.exe.

    I can't imagine a system that it wouldn't force a reboot.
  • GauntletWizard · 5 years ago
    Well, I tested it out some, and discovered that as an administrator (Which you should NEVER run as), you can indeed kill SVCHOST with this util. Most people shouldn't be running as admin. Running the desktop as a normal user account and using runas (Hold down "Shift" while right clicking on an executable or link to executable) should be sufficent for any normal use and even most installations.

    Also, is it possible to edit recipes? I'd like to make a note of this in the main writeup.
  • russellcomputer · 4 years ago
    I did the tskill * and the computer wanted to shutdown. I got around it by Ctrl-Alt-Del, clicked on Task Manager -> File -> Run -> shutdown -a.

    It stopped the shutdown and I could then work on the computer some more.
  • davak · 4 years ago
    <ul id="quote"><h6>russellcomputer wrote:</h6>I did the tskill * and the computer wanted to shutdown. I got around it by Ctrl-Alt-Del, clicked on Task Manager -> File -> Run -> shutdown -a.

    It stopped the shutdown and I could then work on the computer some more.</ul>

    You rock! Love it!