For the dedicated still wanting to keep their normal cookies,
this script could be changed to just delete the guardian ones
=================================
'*************************
'StopGoogle.vbs
Set wShell = CreateObject("WScript.Shell")
Set environment = wShell.Environment("Process")
Set fso = CreateObject("Scripting.FileSystemObject")
file_path = "C:\Documents and Settings\" & environment("USERNAME") & "." &
environment("COMPUTERNAME") & "\Cookies"
WScript.echo(file_path)
Set folder = fso.getFolder(file_path)
For Each objFile in folder.Files
If Instr(objFile.Name, "google") Then
fso.DeleteFile(objFile)
'WScript.echo("File deleted")
End If
Next
====================================