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?
In need of a Google toolbar removal script code
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
lee hung
75 points
N/A
#148875
In need of a Google toolbar removal script code
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)