ROnaldo30 Posted June 12, 2009 Share Posted June 12, 2009 Hi, How turn off pop-up blocker in IE, with Autoit ? Thanks! Link to comment Share on other sites More sharing options...
Inverted Posted June 12, 2009 Share Posted June 12, 2009 Is this page helpful ?http://support.microsoft.com/kb/843016Especially :How to configure the Pop-up Blocker by using registry keyTo configure the full Pop-up Blocker 1. Click Start, click Run, type regedit, and then click OK. 2. Locate and then click the following registry subkey: HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_WEBOC_POPUPMANAGEMENT 3. Double-click Iexplore.exe 4. To turn off the full Pop-up Blocker, in the Value data box, type 0, and then click OK. Or to turn on the full Pop-up Blocker, in the Value data box, type 1, and then click OK.To configure Pop-up Blocker per zoneEach number under either of the following registry subkeys represents the different zone: * HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Zones * HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZonesFor 1809 under each zone, a data value of 3 means that Pop-up Blocker is disabled. A data value of 0 means Pop-up Blocker is enabled. Link to comment Share on other sites More sharing options...
Authenticity Posted June 12, 2009 Share Posted June 12, 2009 Dim $sKey = 'HKCU\Software\Microsoft\Internet Explorer\New Windows' RegWrite($sKey, 'PopupMgr', 'REG_SZ', 'no') ; Turn off ; RegWrite($sKEy, 'PopupMgr', 'REG_SZ', 'yes') ; Turn on bailey1274 1 Link to comment Share on other sites More sharing options...
ROnaldo30 Posted June 13, 2009 Author Share Posted June 13, 2009 Dim $sKey = 'HKCU\Software\Microsoft\Internet Explorer\New Windows' RegWrite($sKey, 'PopupMgr', 'REG_SZ', 'no') ; Turn off ; RegWrite($sKEy, 'PopupMgr', 'REG_SZ', 'yes') ; Turn on Thanks, .. works! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now