|
经测试,只有 4# 说的正确!
- Windows Registry Editor Version 5.00
- ;不提示:打开文件 - 安全警告
- ;控制面板 -> Internet 属性 -> 安全 -> 自定义级别 -> 其他 -> 加载应用程序和不安全文件 -> ☉启用(不安全)
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3]
- "1806"=dword:00000000
复制代码 下面这个可能是画蛇添足:
- Windows Registry Editor Version 5.00
- ;不提示:打开文件 - 安全警告
- ;开始 -> 运行 -> gpedit.msc -> 用户配置 -> 管理模板 -> Windows 组件 -> 附件管理器 -> 右击“中等风险文件类型的包含列表” -> 编辑 -> ☉已启用 -> 选项:.bat;.chm;.cmd;.exe;.js;.msi;.rar;.reg;.vbs;.zip
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\{36A2246D-223E-4609-9B43-F2461BDB3EED}User\Software]
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\{36A2246D-223E-4609-9B43-F2461BDB3EED}User\Software\Microsoft]
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\{36A2246D-223E-4609-9B43-F2461BDB3EED}User\Software\Microsoft\Windows]
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\{36A2246D-223E-4609-9B43-F2461BDB3EED}User\Software\Microsoft\Windows\CurrentVersion]
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\{36A2246D-223E-4609-9B43-F2461BDB3EED}User\Software\Microsoft\Windows\CurrentVersion\Policies]
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\{36A2246D-223E-4609-9B43-F2461BDB3EED}User\Software\Microsoft\Windows\CurrentVersion\Policies\Associations]
- "ModRiskFileTypes"=".bat;.chm;.cmd;.exe;.js;.msi;.rar;.reg;.vbs;.zip"
- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations]
- "ModRiskFileTypes"=".bat;.chm;.cmd;.exe;.js;.msi;.rar;.reg;.vbs;.zip"
复制代码
批处理版本:
- [url=home.php?mod=space&uid=336905]@echo[/url] off
- echo 不提示:打开文件 - 安全警告
- rem 控制面板 -> Internet 属性 -> 安全 -> 自定义级别 -> 其他 -> 加载应用程序和不安全文件 -> ☉启用(不安全)
- reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3" /f /v "1806" /t REG_DWORD /d 0
复制代码 下面这个可能是画蛇添足:
- @echo off
- rem 开始 -> 运行 -> gpedit.msc -> 用户配置 -> 管理模板 -> Windows 组件 -> 附件管理器 -> 右击“中等风险文件类型的包含列表” -> 编辑 -> ☉已启用 -> 选项:.bat;.chm;.cmd;.exe;.js;.msi;.rar;.reg;.vbs;.zip
- reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects\{36A2246D-223E-4609-9B43-F2461BDB3EED}User\Software\Microsoft\Windows\CurrentVersion\Policies\Associations" /f /v "ModRiskFileTypes" /t REG_SZ /d ".bat;.chm;.cmd;.exe;.js;.msi;.rar;.reg;.vbs;.zip"
- reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Associations" /f /v "ModRiskFileTypes" /t REG_SZ /d ".bat;.chm;.cmd;.exe;.js;.msi;.rar;.reg;.vbs;.zip"
- rem 应用组策略设置
- GPUpdate /Force
复制代码
|
|