Jump to content

Russr

Members
  • Posts

    4
  • Joined

  • Last visited

Reputation

0 Neutral
  1. i want to run it as a silent task on my kids PC...
  2. so far, the ones ive run into were MindSpark toolbars... i use this script to kill the services now before running JRT, this makes sure it can delete the program folder.. wmic service where "name like 'UnzipApp%%'" call stopservice wmic SERVICE where "name like 'UnzipApp%%'" delete wmic service where "name like 'Coupon%%'" call stopservice wmic SERVICE where "name like 'Coupon%%'" delete wmic service where "name like 'WeatherBlink%%'" call stopservice wmic SERVICE where "name like 'WeatherBlink%%'" delete wmic service where "name like 'Utility Chest%%'" call stopservice wmic SERVICE where "name like 'Utility Chest%%'" delete wmic service where "name like 'MapsGalaxy%%'" call stopservice wmic SERVICE where "name like 'MapsGalaxy%%'" delete wmic service where "name like 'onlinemap%%'" call stopservice wmic SERVICE where "name like 'onlinemap%%'" delete
  3. also, failing to delete related services.... example.. Failed to delete: C:\Program Files (x86)\movies app (Folder) Failed to delete: C:\Program Files (x86)\utilitychest_49 (Folder) because the service is is running...
  4. not scanning all profiles for issues in appdata, and not removing uninstall info from the reg. example, all the mindspark tool bars.... it will remove the BHO and the folder, but not any of the reg info from uninstaller, so it "looks" like its still installed i had to write a script to go back and clean up.. reg query HKLM\software\classes\installer\products /f "Mindspark" /s | find "HKEY_LOCAL_MACHINE" >> %TEMP%\X.txt 2>NUL reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall /f "Mindspark" /s | find "HKEY_LOCAL_MACHINE" >> %TEMP%\X.txt 2>NUL reg query HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall /f "Mindspark" /s | find "HKEY_LOCAL_MACHINE" >> %TEMP%\X.txt 2>NUL reg query HKEY_CLASSES_ROOT\Installer\Products /f "Mindspark" /s | find "HKEY_LOCAL_MACHINE" >> %TEMP%\X.txt 2>NUL reg query HKLM\SOFTWARE\Classes\Installer\Features /f "Mindspark" /s | find "HKEY_LOCAL_MACHINE" >> %TEMP%\X.txt 2>NUL for /f "tokens=* delims= " %%a in (%TEMP%\X.txt) do reg delete "%%a" /f
Back to top
×
×
  • Create New...

Important Information

This site uses cookies - We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.