
var wsh = new ActiveXObject("WScript.Shell");  
try {
	wsh.RegDelete("HKCU\\Software\\Microsoft\\Internet Explorer\\MenuExt\\Page Spy\\");
	WScript.Echo("Uninstallation appears to have been successful.  You may need\r\n" + 
				 "to close and reopen your browser[s] for it to take effect.");
} catch(e){
	WScript.Echo("There was a problem with our attempt to remove the PageSpy entry\r\n" +
				 "from your registry.  Surely your machine has no reason for this,\r\n" +
				 "but this is its excuse:\r\n\r\n\t" + e.description);
}
