[AHK] Windows 10上用热键 隐藏/显示桌面图标
时间: 2024-01-23 21:04:06 浏览: 179
您可以使用AutoHotkey(AHK)编写脚本来实现在Windows 10上使用热键隐藏/显示桌面图标。
以下是一个示例脚本:
```
#NoEnv
SendMode Input
; 设置热键为Ctrl+Shift+H
^+H::
; 隐藏桌面图标
Run, reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideIcons" /t REG_DWORD /d 1 /f
SendMessage 0x111, 0x7E, 0, 0, "Progman"
SendMessage 0x111, 0x7E, 0, 0, "WorkerW"
return
; 设置热键为Ctrl+Shift+S
^+S::
; 显示桌面图标
Run, reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideIcons" /t REG_DWORD /d 0 /f
SendMessage 0x111, 0x7E, 0, 0, "Progman"
SendMessage 0x111, 0x7E, 0, 0, "WorkerW"
return
```
这个脚本使用Ctrl+Shift+H热键来隐藏桌面图标,使用Ctrl+Shift+S热键来显示桌面图标。您可以根据需要更改热键设置。
请注意,这个脚本需要管理员权限才能运行,因为它需要写入注册表。如果您没有管理员权限,您可以尝试使用以下命令来启动AHK:
```
runas /user:administrator "path_to_ahk_script.ahk"
```
这将使用管理员权限运行AHK脚本。
阅读全文