简单的AHK脚本或.bat文件,用于更改电源计划,禁用Windows aero和禁用桌面图标

时间:2013-02-24 23:51:17

标签: batch-file autohotkey

我在AHK中没有做太多的脚本(大多数只是“sendinput”的东西),所以任何帮助都会非常感激:D

因此,脚本或.bat文件需要:

  • 更改为特定的电力计划
  • 禁用Windows Aero
  • 禁用桌面图标
  • 退出

再次感谢你:)

1 个答案:

答案 0 :(得分:1)

这应该会让你走上正轨。

; Disable Aero
RunWait, %comspec% /c "net stop uxsms",, Hide

; Run powercfg.exe -list in command line to get the correct guid
RunWait, %comspec% /c "powercfg.exe /setactive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c",, Hide

; Hide icons (might require log off/in)
RegWrite, REG_DWORD, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, HideIcons, 1

ExitApp