Windows Server 2008 R2 已经激活但每隔一段时间自动关机 VMware 环境

👌 2019-09-12 Windows Server 2008 R2 已经激活但每隔一段时间自动关机 VMware 环境

原因:

C:\Windows\system32\wlms\wlms.exe程序关闭的系统

处理方案:

1.bat批处理文件

taskkill /f /im wlms.exe
ping -n  4 127.0.0.1
shutdown -a

2.下载PSTools后修改注册表

下载链接:https://docs.microsoft.com/en-us/sysinternals/downloads/pstools

Win + R ⌘ 打开运行(文件放在C盘)即管理员权限打开
C:\PSTools\psexec.exe -d -i -s regedit.exe

注册表 找 WLMS [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WLMS]

启动类型由02(自动)改为04(禁用)
并修改加载的EXE位置

参考资料:

https://www.cnblogs.com/CodingArt/articles/2264132.html https://my.oschina.net/yysue/blog/1796171