windows-xp – 如何禁用“您是否希望允许此网站在您的计算机上打开程序?”警告特定程序/名字对象?

我一直在玩新的 URL monikers in Windows用于我正在研究的实用程序.当我从开始>运行新网址时跑,它只是运行.如果我通过Notes将URL发送给自己或将其输入IE地址栏,我会得到一个窗口,上面写着:
"Do you want to allow this website to open a program on your computer?"

Program: UrlMonikerTest1

Address:  urltest://ticket?param1=42&param2=Derf

[CheckBox] Always ask before opening this type of address

                                      [Button]  Allow  [Button]  Cancel


Allowing web content to open a program can be useful,but it can
potentially harm your computer.  Do not allow it unless you trust
the source of the content.  What's the risk?

鉴于该实用程序将仅在使用SCCM部署到的内部计算机上运行,​​并且我可以应用组策略,是否可以单独为此应用程序/ URL名字对象禁用此消息?

客户端目前是XP.他们将在某些时候成为Win7.我们不必考虑Vista.

可以通过以下注册表编辑禁用此提示:
HKCU:仅影响当前用户:
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\ProtocolExecute\YOUR_MONIKER]
"WarnOnOpen"=dword:00000000

HKLM:影响本地机器 – 适用于32位机器

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ProtocolExecute\YOUR_MONIKER]
"WarnOnOpen"=dword:00000000

HKLM:影响整台机器 – 适用于64位机器

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\ProtocolExecute\YOUR_MONIKER]
"WarnOnOpen"=dword:00000000

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...