Windows のショートカットファイルをスクリプトで作る
ps1
$WshShell = New-Object -ComObject WScript.Shell
$shortcut = $WshShell.CreateShortcut("$env:USERPROFILE\Desktop\MyTool.lnk")
$shortcut.TargetPath = "C:\Path\To\YourScript.ps1"
$shortcut.Hotkey = "Ctrl+Alt+G"
$shortcut.Save()