Microsoft Internet Security and Acceleration Server 2000

Unregister the Web Filter From the Command Line

To uninstall the filter, type this line at the command prompt:

regsvr32 -u Webresponsemodifier.dll 

This command is also carried out by a function that the filter developer writes. The code from the Webresponsemodifier sample is shown here.

// DllUnregisterServer - Removes entries from the system registry
 
STDAPI DllUnregisterServer(void)
{
	HRESULT hr = RegisterWebFilter(false);
	return hr;
}