中国移动家庭云电脑是中国移动推出的一项基于云计算技术的服务,旨在为家庭用户提供类似于云桌面或虚拟桌面的功能。通过这项服务,用户可以在不依赖本地高性能硬件的情况下,使用中国移动提供的远程云端计算资源,进行日常办公、娱乐和学习等操作。
默认情况下中国移动家庭云电脑断开超过1小时后自动关机,本文将提供脚本实现24小时不关机。
脚本内容
将以下内容保存至lolicp.bat
文件,并使用管理员权限执行。
// 清理
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Policies\Microsoft\Windows\System" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\VDAgent\LogonInfo" /f
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" /f
sc config BalloonService start=disabled
sc config FileTranS start=disabled
sc config MMRHookService start=disabled
sc config SoftwareStoreAgent start=disabled
sc config qemu-ga start=disabled
sc config Vmbooster start=disabled
sc config VmBoosterMonitor start=disabled
sc config VmQoEAgent start=disabled
sc config SoftwarestoreService start=disabled
sc config UpdateDaemon start=disabled
sc config GuardAgent start=disabled
sc config sc-alive start=disabled
sc config AssistantService start=disabled
sc config MswitchWin start=disabled
// 优化IPV6
sc config iphlpsvc start=disabled
// 中国移动畅连
sc config FCNSService start=disabled
sc config FCNSAndDeskServer start=disabled
sc config FCNSHelper.exe start=disabled
sc config edgeupdate start=disabled
sc config edgeupdatem start=disabled
reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v wpsphotoautoasso /f
reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v SysguardSystemOptimize /f
reg delete HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run /v FCNS /f
// 删除任务计划
SCHTASKS /DELETE /TN "\Microsoft\XblGameSave\XblGameSaveTask" /F
SCHTASKS /DELETE /TN "WpsUpdateLogonTask_Administrator" /F
SCHTASKS /DELETE /TN "WpsUpdateTask_Administrator" /F
SCHTASKS /DELETE /TN "atowinX" /F
SCHTASKS /DELETE /TN "atowinZ" /F
SCHTASKS /DELETE /TN "mainservice" /F
SCHTASKS /DELETE /TN "MicrosoftEdgeUpdateTaskMachineCore{16136" /F
SCHTASKS /DELETE /TN "MicrosoftEdgeUpdateTaskMachineUA{D9EE53A" /F
SCHTASKS /DELETE /TN "MicrosoftEdgeUpdateTaskMachineCore" /F
SCHTASKS /DELETE /TN "MicrosoftEdgeUpdateTaskMachineUA" /F
SCHTASKS /DELETE /TN "RunAsStdUser Task" /F
SCHTASKS /DELETE /TN "\Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /F
SCHTASKS /DELETE /TN "\Microsoft\Windows\Application Experience\ProgramDataUpdater" /F
// 清理文件
rmdir /s /Q "C:\yidongyunpan"
rmdir /s /Q "C:\Program Files\FCNS"
// 删除防火墙
netsh advfirewall firewall delete rule name="@{Microsoft.Windows.Cortana_1.11.5.17763_neutral_neutral_cw5n1h2txyewy?ms-resource://Microsoft.Windows.Cortana/resources/PackageDisplayName}"
执行后重启云电脑即可。