Windows / Office 常用设置注册表文件集
Windows Registry Editor Version 5.00
; Created by ion.chen, 20171201
; 实现功能:设置短日期格式为 "2017-12-01"
; 解决问题:多语言环境电脑日期格式统一化
[HKEY_CURRENT_USER\Control Panel\International]
"sShortDate"="yyyy-MM-dd"
[HKEY_USERS\.DEFAULT\Control Panel\International]
"sShortDate"="yyyy-MM-dd"
Windows Registry Editor Version 5.00
; Created by ion.chen, 20140924
; 实现功能:阻止 U 盘生成 System Volume Information 隐藏系统文件夹
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search]
"DisableRemovableDriveIndexing"=dword:00000001
Windows Registry Editor Version 5.00
; Created by ion.chen, 20110415
; 实现功能:设置 Office 2003 主要编辑语言为中文
; 解决问题:中文系统导出文件Excel打开出现乱码
; 其他 Office 版本:第一行 11.0 改为 12.0 / 13.0 等等
[HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Common\LanguageResources]
"InstallLanguage"=dword:00000804
Windows Registry Editor Version 5.00
; Created by ion.chen, 20171228
; 实现功能:取消警告提示 "无法验证发布者。您确定要运行此软件吗?"
; - Disable “Publisher Could Not Be Verified” Messages
; 使用方法:执行此文件,导入成功后,注销用户再次登录生效。
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations]
"LowRiskFileTypes"=".lnk;.cmd;.bat;.vbs;.exe;"
Windows Registry Editor Version 5.00
; Created by ion.chen, 20171117
; 实现功能:禁用 Office Excel 文件验证功能
; 解决问题:“Office 检测到此文件存在一个问题。要帮助保护您的计算机,不能打开此文件。”
; 恢复设定:去掉最后一行的注释符“;”
[HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Excel\Security\FileValidation]
"EnableOnLoad"=dword:00000000
;"EnableOnLoad"=-
Windows Registry Editor Version 5.00
; Created by ion.chen, 20130802
; 实现功能:
; 1. 控制 Windows 系统服务启用和禁用
; 2. 控制设备连接驱动服务的开关,用以禁用移动设备
; 设置说明:
; 1. 00000004 为禁用,00000003 为启用
; 2. 重启系统后生效
; 禁用移动存储服务
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR]
"Start"=dword:00000004
; 禁用文件搜索索引服务
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WSearch]
"Start"=dword:00000004
; 禁用赛门铁克网络访问控制服务
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SNAC]
;"Start"=dword:00000004
; 禁用系统备份服务
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SDRSVC]
Start"=dword:00000004
; 禁用文件离线服务
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CscService]
"Start"=dword:00000004
; 禁用安全中心服务
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WSCSVC]
"Start"=dword:00000004
; 禁用 Windows Defender 服务
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WinDefend]
"Start"=dword:00000004
; 禁用防火墙服务
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MpsSvc]
"Start"=dword:00000004
; 启用远程访问注册表
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteRegistry]
"Start"=dword:00000002
; 启用 Telnet 服务
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TlntSvr]
"Start"=dword:00000002
; 启用远程桌面服务
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TermService]
"Start"=dword:00000002
; 启用时间校准服务
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time]
"Start"=dword:00000002
; 启用自动更新服务
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wuauserv]
"Start"=dword:00000002
; 注解
; 文件头
Windows Registry Editor Version 5.00
; HKEY_USERS 只能显示当前登录用户,其他登录过的用户被隐藏。
; HKEY_USERS = &H80000003
; 删除设定
-[HKEY_CURRENT_USER\KeysToBeDeleted]
"ConfigToBeDeleted"=-
Last Update : 20171228