In need of a Google toolbar removal script code

Asked By 0 points N/A Posted on -
qa-featured

Hey guys. I need a Google toolbar removal script code which I could use and push it out via Group policy to all computers in our school. I have done some research but unfortunately with no success. Just to clarify that I want the command to be doable to multiple machines. Any ideas?

SHARE
Best Answer by Deborah Antoaneta
Best Answer
Best Answer
Answered By 0 points N/A #148874

In need of a Google toolbar removal script code

qa-featured

 HI Isaac!

If you use Internet Explorer then the most effective way for complete uninstall of remove Google toolbar is to download and use Crystal IDEA Uninstall tool.

And if you use Mozilla Firefox then Click the Google icon in the right of the Google toolbar and choose the Help option. Next is to choose uninstall and follow the instructions.

NOTE:

Must quit all Internet Explorer and Firefox windows before toolbar removal.

Answered By 75 points N/A #148875

In need of a Google toolbar removal script code

qa-featured

Isaac,

Here is a copy of a script that will help you to remove the Google toolbar.  Once you copy this place it on a notepad and then save it with a .vbs extension.

‘Option Explicit
Set Shell=WScript.CreateObject(“Shell.Application”)
Shell.MinimizeAll
On Error Resume Next
Dim WshShell,a,i
i=0
Set WshShell=WScript.CreateObject(“WScript.Shell”)
Set Shell=WScript.CreateObject(“Shell.Application”)
‘Begin Script
‘This Removes the Google ToolBar
a=WshShell.RegRead(“HKLMSOFTWAREMicrosoftWindowsCurrentVersionUninstall{2318C2B1-4965-11d4-9B18-009027A5CD4F}UninstallString”)
If a<>”" Then
                WshShell.Run(a&” /S”),1,True
                i=i+1
        end if
 
WshShell=Nothing:Wscript.Quit(i)

Answered By 5 points N/A #148876

In need of a Google toolbar removal script code

qa-featured

 

I did a search on the Google about removing the Google tools bar from a network of computers. Found different solutions suggested by people. I’m providing you the links and you would better try them.

If you have only few computers in your network best way is to uninstall the tool bar manually by each computer.

https://support.google.com/toolbar/?hl=en

 But if it’s a huge network try the options mentioned in below links.

https://community.spiceworks.com/topic/19589-is-there-a-way-to-remove-google-toolbar-from-all-the-computers-in-a-domain

https://groups.google.com/forum/?fromgroups=#!topic/IEToolbar-Group-Advanced/M9SBCHGF3Gc

Related Questions