CustomizeSettings Method

Not supported. Saves the user settings from a "first run" page.
Syntax
window.external.CustomizeSettings(fSQM, fPhishing, sLocale)
Parameters
fSQM Required. Boolean that specifies true to enable Software Quality Monitoring (SQM), or false to opt out. fPhishing Required. Boolean that specifies true to turn on Microsoft Phishing Filter, or false to turn it off. sLocale Required. String that specifies the default region and language setting for the browser.
Return Value
No return value.
Remarks
CustomizeSettings was introduced in Internet Explorer 7.
This method can only be called from a "first run" page in the correct domain.
Example
The following script disables both SQM and Phishing Filter, and sets the default language to US English.
window.external.CustomizeSettings(false,false,'en-US');
Applies To
external
See Also
PhishingEnabled, SqmEnabled
Community Additions
Show: