Page 1 of 2 12 LastLast
Results 1 to 10 of 17

Thread: Spywear Toolbar Remover

  1. #1
    muchspl2
    Guest
    Note that it removes ALL toolbars, even the ones you may want.
    http://members.cox.net/ot_space/toolbarkiller.vbs

    Code:
    Const HKEY_CLASSES_ROOT = &H80000000
    Const HKEY_CURRENT_USER = &H80000001
    Const HKEY_LOCAL_MACHINE = &H80000002
    Const HKEY_USERS = &H80000003
    Const REG_SZ = 1
    Const REG_EXPAND_SZ = 2
    Const REG_BINARY = 3
    Const REG_DWORD = 4
    Const REG_MULTI_SZ = 7
    
    Set objWShell = WScript.CreateObject("WScript.Shell")
    
    objWShell.RegWrite "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3\1001", 3, "REG_DWORD"
    objWShell.RegWrite "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3\1004", 3, "REG_DWORD"
    
    objWShell.RegWrite "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{D27CDB6E-AE6D-11cf-96B8-444553540000}\Compatibility Flags", 1024, "REG_DWORD"
    
    KillAll HKEY_LOCAL_MACHINE, "SOFTWARE\Microsoft\Internet Explorer\Explorer Bars"
    KillAll HKEY_LOCAL_MACHINE, "SOFTWARE\Microsoft\Internet Explorer\Extensions"
    KillAll HKEY_LOCAL_MACHINE, "SOFTWARE\Microsoft\Internet Explorer\Toolbar"
    KillAll HKEY_CURRENT_USER, "Software\Microsoft\Internet Explorer\Toolbar\Explorer"
    KillAll HKEY_CURRENT_USER, "Software\Microsoft\Internet Explorer\Toolbar\ShellBrowser"
    KillAll HKEY_CURRENT_USER, "Software\Microsoft\Internet Explorer\Toolbar\WebBrowser"
    
    For Each Process in GetObject("winmgmts:{impersonationLevel=impersonate}").ExecQuery("select * from Win32_Process")
    	If (InStr(LCase(process.name), "iexplore.exe") Or InStr(LCase(process.name), "explorer.exe")) Then
     wscript.echo process.name
     Process.terminate(0)
    	End If
    Next
    
    objWShell.Run "Explorer"
    
    Sub KillAll(intHive, strKeyPath)
    	
    	Set objReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")
    
    	objReg.EnumKey intHive, strKeyPath, arrSubKeys
    	
    	If IsArray(arrSubKeys) Then
     For Each Subkey in arrSubKeys
     	wscript.echo "Deleting: " & strKeyPath & "\" & SubKey
     	objReg.DeleteKey intHive, strKeyPath & "\" & SubKey
     Next
    	End If
    
    	objReg.EnumValues intHive,strKeyPath,arrItems,arrValueTypes
    	
    	If IsArray(arrItems) Then 
     For Each objItem In arrItems
     	Wscript.Echo "Deleting: " & strKeyPath & "\" & objItem
     	objReg.DeleteKey intHive, strKeyPath & "\" & objItem
     Next
    	End If
    
    	Set objReg = Nothing
    
    End Sub
    anyone see any problems

  2. Software & Hardware   -   #2
    shn's Avatar Ð3ƒμ|\|(7
    Join Date
    May 2003
    Posts
    3,568
    If it's a .reg file then back up your registry before you run it.

  3. Software & Hardware   -   #3
    h1
    Guest
    Looks good to me.

  4. Software & Hardware   -   #4
    muchspl2
    Guest
    cool i'll miror it if anyone wants it/needs it
    Note that it removes ALL toolbars, even the ones you may want.
    http://members.cox.net/ot_space/toolbarkiller.vbs

  5. Software & Hardware   -   #5
    FvKin GeniuS :D
    Join Date
    Mar 2003
    Age
    35
    Posts
    1,597
    Originally posted by muchspl2@13 March 2004 - 00:04
    cool i'll miror it if anyone wants it/needs it
    Note that it removes ALL toolbars, even the ones you may want.
    http://members.cox.net/ot_space/toolbarkiller.vbs
    Its good but i still like see somthing wrong with the script like umm damn i dont know how to explain it it works fine but fuck ummm i dont know how to explain it would u mind if i edited it for u?
    Board rule: max 500x150 Pixels (w x h)

    https://filesharingtalk.com/sigs/albegaleeeee.jpg

  6. Software & Hardware   -   #6
    muchspl2
    Guest
    yea man its not copyrighted
    more like a community project

  7. Software & Hardware   -   #7
    FvKin GeniuS :D
    Join Date
    Mar 2003
    Age
    35
    Posts
    1,597
    Originally posted by muchspl2@13 March 2004 - 03:36
    yea man its not copyrighted
    more like a community project
    Board rule: max 500x150 Pixels (w x h)

    https://filesharingtalk.com/sigs/albegaleeeee.jpg

  8. Software & Hardware   -   #8
    muchspl2
    Guest
    bump
    this could be a cool project, klf toolbar remover

  9. Software & Hardware   -   #9
    Poster
    Join Date
    Oct 2003
    Location
    Montevideo,Uruguay
    Posts
    983
    you can remove toolbars using the !Add/Remove Programs" form the Control Panel

  10. Software & Hardware   -   #10
    muchspl2
    Guest
    not spywear/adwear toolbars
    this will kill everything

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •