我在AHK中没有做太多的脚本(大多数只是“sendinput”的东西),所以任何帮助都会非常感激:D
因此,脚本或.bat文件需要:
再次感谢你:)
答案 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