Windows Server 2025还原生加入了蓝牙支持,这下在笔记本上功能也不差什么了。
这里做个桌面使用Windows Server 2025 (2022/2019等老版本的也可以参考)桌面化/桌面使用的配置和checklist,把一些配置改成适合桌面使用的,自取所需。
# 禁用锁屏界面 (不显示那个时钟,直接显示输密码的那个界面)
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v "NoLockScreen" /t REG_DWORD /d 1 /f
# 登录界面(输密码的那个界面)背景不模糊
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "DisableAcrylicBackgroundOnLogon" /t REG_DWORD /d 1 /f
# 禁用自动下载&安装更新(仅检查更新并通知,不自动下载安装)
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "AUOptions" /t REG_DWORD /d 2 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "ScheduledInstallDay" /t REG_DWORD /d 0 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "ScheduledInstallTime" /t REG_DWORD /d 3 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "ScheduledInstallEveryWeek" /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "AllowMUUpdateService" /t REG_DWORD /d 1 /f
# 禁用询问关机原因
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Reliability" /v "ShutdownReasonOn" /t REG_DWORD /d 0 /f
# 不用按Ctrl+Alt+Del登录
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v DisableCAD /t REG_DWORD /d 1 /f
# 下面这个能启用在netplwiz中启用自动登录 (不然「要使用本计算机,用户必须输入用户名和密码」那个选项不显示)
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v DevicePasswordLessBuildVersion /t REG_DWORD /d 0 /f
# 然后
netplwiz
# 去掉那个「要使用本计算机,用户必须输入用户名和密码」,输入密码,就能配置自动登录了
# 卸载 Windows Defender
Uninstall-WindowsFeature Windows-Defender
# 安装 Microsoft Store
wsreset -i
禁用密码复杂度要求:

关闭 IE增强安全配置:

安装.NET 3.5和Direct Play:

处理器计划改成「程序」:

本文地址:https://www.liyanfeng.com/post/145.html(如转载,需注明本原文地址)