在 PowerShell 中为快捷方式定义快捷键

Define shortcut key for shortcut in PowerShell

我想创建创建快捷方式的 PowerShell 脚本,但我找不到为创建的快捷方式定义 快捷键: 的函数。我的意思是,当打开快捷方式的 Properties 时,有一个 快捷键 的输入字段,是否有任何函数可以在 PowerShell 中定义它?

我刚刚找到解决方案:

https://blogs.technet.microsoft.com/heyscriptingguy/2008/11/03/hey-scripting-guy-how-can-i-add-a-windows-powershell-shortcut-to-the-quick-launch-toolbar/

函数是HotKey。像这样:$shortcut.HotKey = "CTRL+1"