
//*********************************************
//
// Eliminazione del proxy per Internet Explorer
//
//*********************************************

var vbOKCancel = 1;
var vbInformation = 64;
var vbCancel = 2;

// ********************************************************************************
// *
// * Registry related methods.
// *

var WSHShell = WScript.CreateObject("WScript.Shell");

try
{
	WSHShell.RegDelete("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ProxyServer");
	WSHShell.RegDelete("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ProxyOverride");
	WSHShell.RegDelete("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ProxyEnable");
}
catch(e)
{
	WSHShell.Popup("Chiave non esistente", 0, "", vbInformation );
	WScript.Quit();
}

WSHShell.Popup("Impostazione del proxy eliminata.", 0, "", vbInformation );

