win10 优化关键字

powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61

通知和操作
自动维护
存储
个性化 透明效果
启动
登录选项 更新或重启后
权限和 dsable
后台应用
显示-》 在windows中显示动画
扫描选项 -》 脱机扫描
消息
powercfg -h off 

powershell:

Get-AppxPackage * | Remove-AppxPackage

Uninstall edge:

1.C: \ Program Files (x86) \ Microsoft \ Edge \ Application。
2、进入对应当前Edge版本号的文件夹,并进入“Installer”文件夹内找到setup.exe。
3、选中setup.exe后单击窗口“文件”中的“以管理员身份打开PowerShell”
4、输入以下命令并回车即可:

.\setup.exe --uninstall --system-level --verbose-logging --force-uninstall

netplwiz用户账户中无法取消开机密码登录

Regedit 定位到:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device
DevicePasswordLessBuildVersion 改成0
http://www.winwin7.com/JC/20207.html

停用服务 https://blog.csdn.net/w3340372244/article/details/105479220/

net stop "服务名称"   停止服务
net pause "服务名称"  暂停服务
net start "服务名称"  启动服务
sc config "服务名称" start= auto(自动)
sc config "服务名称" start= demand(手动)
sc config "服务名称" start= disabled(禁用)
sc config "服务名称" start= delayed-auto(自动(延迟启动))

sc stop "wsearch"
sc config "WMPNetworkSvc" start= disabled
sc config "wsearch" start= disabled
del /f /s /q %ALLUSERSPROFILE%\Microsoft\Search\Data\Applications\Windows
sc stop "WdiSystemHost"
sc stop "WdiServiceHost"
sc stop "DPS"
sc config "DPS" start= disabled
sc config "WdiServiceHost" start= disabled
sc config "WdiSystemHost" start= disabled
net stop "HomeGroupProvider"
net stop "HomeGroupListener"
sc config "HomeGroupProvider" start= disabled
sc config "HomeGroupListener" start= disabled

del /f /s /q "%windir%\Prefetch\*.pf"

net stop "wuauserv"
sc config "wuauserv" start= disabled

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /d 1 /t REG_DWORD /f

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\DomainProfile" /v "EnableFirewall" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\PrivateProfile" /v "EnableFirewall" /d 0 /t REG_DWORD /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\PublicProfile" /v "EnableFirewall" /d 0 /t REG_DWORD /f
net stop "MpsSvc"
sc config "MpsSvc" start=disabled

net stop "iphlpsvc"
sc config "iphlpsvc" start= disabled

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat" /v "DisablePCA" /d 1 /t REG_DWORD /f
sc stop "PcaSvc"
sc config "PcaSvc" start= disabled


net stop "SDRSVC"
sc config "SDRSVC" start= disabled

net stop "WerSvc" 
sc config "WerSvc" start= disabled


rem net stop "AppReadiness"
rem sc config "AppReadiness" start= disabled
net stop "RemoteRegistry"
sc config "RemoteRegistry" start= disabled
Win10常见优化.bat 批处理程序 https://blog.csdn.net/usenk/article/details/120447109
posted @ 2021-10-14 11:39  supersdar  阅读(104)  评论(0编辑  收藏  举报