Page 2 of 2 FirstFirst 12
Results 11 to 17 of 17

Thread: Spywear Toolbar Remover

  1. #11
    This would be a cool project. The klf toolbar remover.

    Anyways I have a suggestion. Why not get rid of all the prompts and just show just two dialog box.

    First one say
    Code:
    Title: klf toolbar remover: This will remove all third party Internet Explorer toolbars. Internet Explorer and Windows Explorer will close during this process.
    Then have ok/ cancel buttons.


    Last First one say Title: klf toolbar remover

    If it went ok it could say:
    Code:
    all third party Internet Explorer toolbars are successfully removed
    If not ok:
    Code:
    klf toolbar remover wan not able to remove third party Internet Explorer toolbars restart your computer and try again

  2. Software & Hardware   -   #12
    muchspl2
    Guest
    sounds hard, but I bet someone can code that

  3. Software & Hardware   -   #13
    Poster
    Join Date
    Oct 2003
    Location
    Montevideo,Uruguay
    Posts
    983
    Originally posted by muchspl2@20 March 2004 - 13:37
    not spywear/adwear toolbars
    this will kill everything
    if the toolbar is not included in the Add-Remove programs it is illegal

  4. Software & Hardware   -   #14
    muchspl2
    Guest
    well plenty out their that don't
    have fun prosecuting them

  5. Software & Hardware   -   #15
    fkdup74's Avatar Pneuberator.
    Join Date
    Sep 2003
    Posts
    3,554
    Originally posted by CoolMac+21 March 2004 - 06:27--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (CoolMac @ 21 March 2004 - 06:27)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin-muchspl2@20 March 2004 - 13:37
    not spywear/adwear toolbars
    this will kill everything
    if the toolbar is not included in the Add-Remove programs it is illegal [/b][/quote]
    i sincerely hope you dont rely on the add/remove programs list
    to tell you exactly what is on your pc

    and i dont know about the legality, but it is unethical as fuck
    either way, it doesnt stop em from putting shit like that on the net


    &#39;luck on the project muchspl B)
    maybe i&#39;ll give it a shot...
    I am just a worthless liar. I am just an imbecile.
    I will only complicate you. Trust in me and fall as well.
    I will find a center in you. I will chew it up and leave.
    I will work to elevate you just enough to bring you down.

  6. Software & Hardware   -   #16
    After some quick study I made some changes. Does it look good?

    Code:
    L_Welcome_MsgBox_Message_Text  = &#34;This will remove all third party Internet Explorer toolbars. Internet Explorer and Windows Explorer will close during this process&#34;
    L_Welcome_MsgBox_Title_Text   = &#34;klf toolbar remover v1.0 Test Only&#34;
    Call Welcome&#40;&#41;
    
    
    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&#40;&#34;WScript.Shell&#34;&#41;
    
    objWShell.RegWrite &#34;HKEY_LOCAL_MACHINE&#092;SOFTWARE&#092;Microsoft&#092;Windows&#092;CurrentVersion&#092;Internet Settings&#092;Zones&#092;3&#092;1001&#34;, 3, &#34;REG_DWORD&#34;
    objWShell.RegWrite &#34;HKEY_LOCAL_MACHINE&#092;SOFTWARE&#092;Microsoft&#092;Windows&#092;CurrentVersion&#092;Internet Settings&#092;Zones&#092;3&#092;1004&#34;, 3, &#34;REG_DWORD&#34;
    
    objWShell.RegWrite &#34;HKEY_LOCAL_MACHINE&#092;SOFTWARE&#092;Microsoft&#092;Internet Explorer&#092;ActiveX Compatibility&#092;{D27CDB6E-AE6D-11cf-96B8-444553540000}&#092;Compatibility Flags&#34;, 1024, &#34;REG_DWORD&#34;
    
    KillAll HKEY_LOCAL_MACHINE, &#34;SOFTWARE&#092;Microsoft&#092;Internet Explorer&#092;Explorer Bars&#34;
    KillAll HKEY_LOCAL_MACHINE, &#34;SOFTWARE&#092;Microsoft&#092;Internet Explorer&#092;Extensions&#34;
    KillAll HKEY_LOCAL_MACHINE, &#34;SOFTWARE&#092;Microsoft&#092;Internet Explorer&#092;Toolbar&#34;
    KillAll HKEY_CURRENT_USER, &#34;Software&#092;Microsoft&#092;Internet Explorer&#092;Toolbar&#092;Explorer&#34;
    KillAll HKEY_CURRENT_USER, &#34;Software&#092;Microsoft&#092;Internet Explorer&#092;Toolbar&#092;ShellBrowser&#34;
    KillAll HKEY_CURRENT_USER, &#34;Software&#092;Microsoft&#092;Internet Explorer&#092;Toolbar&#092;WebBrowser&#34;
    
    For Each Process in GetObject&#40;&#34;winmgmts&#58;{impersonationLevel=impersonate}&#34;&#41;.ExecQuery&#40;&#34;select * from Win32_Process&#34;&#41;
    If &#40;InStr&#40;LCase&#40;process.name&#41;, &#34;iexplore.exe&#34;&#41; Or InStr&#40;LCase&#40;process.name&#41;, &#34;explorer.exe&#34;&#41;&#41; Then
     Process.terminate&#40;0&#41;
    End If
    Next
    
    objWShell.Run &#34;Explorer&#34;
    
    Sub KillAll&#40;intHive, strKeyPath&#41;
    
    Set objReg=GetObject&#40;&#34;winmgmts&#58;{impersonationLevel=impersonate}&#33;&#092;&#092;.&#092;root&#092;default&#58;StdRegProv&#34;&#41;
    
    objReg.EnumKey intHive, strKeyPath, arrSubKeys
    
    If IsArray&#40;arrSubKeys&#41; Then
     For Each Subkey in arrSubKeys
      objReg.DeleteKey intHive, strKeyPath & &#34;&#092;&#34; & SubKey
     Next
    End If
    
    objReg.EnumValues intHive,strKeyPath,arrItems,arrValueTypes
    
    If IsArray&#40;arrItems&#41; Then 
     For Each objItem In arrItems
     objReg.DeleteKey intHive, strKeyPath & &#34;&#092;&#34; & objItem
     Next
    End If
    
    Set objReg = Nothing
    
    End Sub
    
    Sub Welcome&#40;&#41;
      Dim intDoIt
    
      intDoIt = MsgBox&#40;L_Welcome_MsgBox_Message_Text, _
               vbOKCancel + vbInformation,  _
               L_Welcome_MsgBox_Title_Text &#41;
      If intDoIt = vbCancel Then
        WScript.Quit
      End If
    End Sub
    I found some fundamental problems with this script. It appears to make some problems with the flash player. You will need to re-install it. Maybe someone can fix this. (Make it ignore Flash Player registry entries)

  7. Software & Hardware   -   #17
    muchspl2
    Guest
    I&#39;m not sure but it seems to work ok so far
    but i want some people to add to it

Page 2 of 2 FirstFirst 12

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
  •