用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/taracodlabs/aiden --skill windows-registry命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | windows-registry |
| description | Read, write, query Windows Registry via PowerShell provider |
| category | windows |
| version | 1.0.0 |
| platform | windows |
| tags | registry, regedit, windows, powershell, hklm, hkcu, settings, config |
| license | Apache-2.0 |
Read and write Windows Registry keys and values using PowerShell's built-in Registry provider — inspect startup entries, app settings, and system configuration without regedit.
Get-ItemPropertyValue -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer" `
-Name "ShellState"
Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion"
# Current user only
Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Run"
# All users (machine-wide)
Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run"
New-Item -Path "HKCU:\Software\Aiden" -Force
Set-ItemProperty -Path "HKCU:\Software\Aiden" -Name "Version" -Value "3.5.0" -Type String
Set-ItemProperty -Path "HKCU:\Software\Aiden" -Name "Enabled" -Value 1 -Type DWord
Remove-ItemProperty -Path "HKCU:\Software\Aiden" -Name "OldSetting"
Remove-Item -Path "HKCU:\Software\Aiden" -Recurse -Force
Get-ChildItem -Path "HKLM:\SOFTWARE" -Recurse -ErrorAction SilentlyContinue |
Where-Object { $_.Property -contains "DisplayName" } |
Get-ItemProperty |
Select-Object DisplayName, DisplayVersion, Publisher |
Sort-Object DisplayName
Get-ItemProperty "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*" |
Select-Object DisplayName, DisplayVersion, Publisher, InstallDate |
Where-Object DisplayName |
Sort-Object DisplayName
"What programs launch at startup for my user?"
→ Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Run" — each value name is an entry, value data is the command.
"List all installed software with version numbers" → Query both HKLM and HKCU Uninstall keys and merge results.
"Add a registry entry to run a script at login"
→ Set-ItemProperty -Path "HKCU:\...\Run" -Name "MyScript" -Value "powershell.exe -File C:\scripts\login.ps1"
reg export "HKCU\Software\Aiden" C:\backup\aiden-backup.reg\ as separator (not /) and hive aliases like HKCU: and HKLM: