antmar904 Posted March 19, 2014 Posted March 19, 2014 Hello, Is there a to disable/enable a BHO (Broswer Helper Object, Add-On, Toolbar) with Autoit in IE? Lets use Shockwave as an example:
JohnOne Posted March 19, 2014 Posted March 19, 2014 Lets use Shockwave as an example: example of what? AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
antmar904 Posted March 20, 2014 Author Posted March 20, 2014 (edited) Of a BHO that I would like to disable but I'm not even sure if that is something that can be scripted. Edited March 20, 2014 by antmar904
Solution Myicq Posted March 20, 2014 Solution Posted March 20, 2014 (edited) Would this help you in any way ? You can enable/disable BHOs by adding/removing a DWORD registry value called "Flags" with a value of 1 to this key: HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Ext\Settings\<BHO CLSID> From http://stackoverflow.com/questions/857563/activate-ie-add-ons-from-an-bho And / Or perhaps this: // BHOs HKLM\Software\Microsoft\Windows\CurrentVersion\explorer\Browser Helper Objects // IE toolbars HKLM\Software\Microsoft\Internet Explorer\Toolbar // IE extensions HKLM\Software\Microsoft\Internet Explorer\Extensions from http://stackoverflow.com/questions/413333/how-can-i-list-the-plugins-bhos-that-internet-explorer-uses-from-my-program Edit: Assuming you know how to manipulate Registry entries from AutoIT3, lots of examples around and in helpfile. Edited March 20, 2014 by Myicq I am just a hobby programmer, and nothing great to publish right now.
antmar904 Posted March 20, 2014 Author Posted March 20, 2014 (edited) @Myicq, That worked perfect thank you! This is the solution that i used: You can enable/disable BHOs by adding/removing a DWORD registry value called "Flags" with a value of 1 to this key: HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionExtSettings<BHO CLSID> Edited March 20, 2014 by antmar904
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