How to enable Developer Tools always ON in IE

这一生的挚爱 提交于 2019-12-10 10:27:01

问题


How to enable Developer Tools always ON in IE.

Every time I set enable Developer Tools (either by Menu or pressing F12), previous settings like Network capture, profiler On are reset to default.

But that's not the case with Firebug :(

Any registry settings to always enable Developer tools in IE9/IE10?

thanks HydPhani


回答1:


HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\IEDevTools modify the "Disabed" to "Enabled"




回答2:


I wasn't able to find a key located at HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\IEDevTools. After searching around for a loong time I found this key instead does the trick:

  • HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\IEDevTools

Just set disabled to 0.




回答3:


You can't configure the network tool or the script profiler to be recording by default. They have to be started manually once F12 is open.




回答4:


https://social.technet.microsoft.com/Forums/ie/en-US/275dd263-8b88-498f-901f-43e9b05a4cb2/f12-developer-tools

12 Developer Tools could be disabled with group policy.

Since you are using Windows 10 home edition, we may consider change the following registry to disable F12 Developer Tools under Internet Exploer 11:

HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\IEDevTools

On the right pane, create a REG_DWORD 32 bit value "Disabled", and set the value to "0x00000001".

Then you would find the F12 developer tools is not listed under the Internet Settings list, and F12 is not function;

To disable F12 Tools under Microsoft Edge, open regedit.exe and navigate to the following path:

HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\MicrosoftEdge\F12 (If no such archive, create one)

On the right pane, add a REG_DWORD 32 bit value called "AllowDeveloperTools", set the value to "0x00000000"

This disables the F12 tools under Microsoft Edge.



来源:https://stackoverflow.com/questions/12294440/how-to-enable-developer-tools-always-on-in-ie

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!