状态概览
系统
影子系统保护
网络

说明:本机状态需在机房电脑上运行下方 exe 检测后查看。下方为 PowerShell 检测命令(点击可复制)。

# 系统版本
systeminfo | Select-String "OS Name","OS Version"
# 是否受影子系统保护(8.5.5 驱动服务名 Dszradfla)
if (Get-Service Dszradfla -ErrorAction SilentlyContinue) { "受影子系统保护" } else { "未检测到影子系统" }
# 网络状态
ping -n 2 www.baidu.com
下载工具 & 命令 Win10 x64
系统配置(GUI)
下载
下载器(微信/Geek 直链 + QQ 跳转官网)
下载
恢复程序
下载
查看可复制的系统配置命令
rem 显示触摸键盘按钮到任务栏
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowTouchKeyboardButton /t REG_DWORD /d 1 /f
rem 显示搜索按钮(仅按钮)
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Search" /v SearchboxTaskbarMode /t REG_DWORD /d 1 /f
rem 允许执行 .ps1
powershell -Command "Set-ExecutionPolicy RemoteSigned -Scope LocalMachine -Force"
rem 修改默认浏览器为 Edge
reg add "HKCU\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http\UserChoice" /v Progid /t REG_SZ /d MSEdgeHTM /f
reg add "HKCU\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\https\UserChoice" /v Progid /t REG_SZ /d MSEdgeHTM /f
rem Edge 主页改为 bing.com
reg add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v HomepageLocation /t REG_SZ /d https://www.bing.com /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v ConfigureHomeButton /t REG_DWORD /d 1 /f
rem Edge 关闭后台运行/预加载
reg add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v BackgroundModeEnabled /t REG_DWORD /d 0 /f
rem Edge 关闭新标签页推广/广告
reg add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v NewTabPageContentEnabled /t REG_DWORD /d 0 /f