我知道如何从 CLI 连接到 Hyper-V VM:
vmconnect localhost 'machine'
我也知道如何以非交互方式启动它们,我通过这样的快捷方式进行操作:
powershell.exe -ExecutionPolicy Bypass -Command "& {Start-VM -Name 'machine'}"
但是我们如何才能将这两个操作合并到一个快捷方式中呢?我根本不想打开 Hyper-V 控制台。我试过了,但没有用:
powershell.exe -ExecutionPolicy Bypass -Command "& {Start-VM -Name 'machine' & vmconnect localhost 'machine'}"
它抛出:
At line:1 char:36
+ & {Start-VM -Name 'machine' & vmconnect localhost 'machine ...
+ ~
The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double
quotation marks ("&") to pass it as part of a string.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : AmpersandNotAllowed
此外,在我看来,应该在启动和连接之间等待一些时间间隔,因为此类命令的立即序列将无法成功执行。
答案1
您缺少两件事:您必须在启动 VM 之前导入 Hyper-V 模块,并且它&
是一个调用运算符而不是命令分隔符。
powershell.exe -ExecutionPolicy Bypass -Command "ipmo hyper-v; Start-VM machine; vmconnect localhost machine"
我已经在 Windows 10 1703 上测试了上述操作。