0

我想从 powershell 使用 get-vm 命令。

$my_vm = get-vm -Name MY_VM_NAME

有错误信息

术语“get-vm”未被识别为 cmdlet、函数、脚本文件或可运行程序的名称。检查名称的拼写,或者如果包含路径,请验证路径是否正确并重试。

我发现我需要安装 Microsoft.SystemCenter.VirtualMachineManager (如何在 windows powershell 上运行 get-vm 命令

执行:

PS C:\Windows\system32> 添加-PSSnapin -Name Microsoft.SystemCenter.VirtualMachineManager

Add-PSSnapin:此计算机上未安装 Windows PowerShell 管理单元“Microsoft.SystemCenter.VirtualMachineManager”。在行:1 字符:13

我真的需要安装那个巨大的工具吗?我的虚拟机上没有足够的空间。 http://www.microsoft.com/en-us/download/details.aspx?id=10712

这是解决get-vm问题的另一种方法吗?

谢谢!

4

1 回答 1

0

您可以查看连接到具有 VMM 的机器。您可以使用远程处理来执行此操作。您可以在此处找到有关它的更多信息:http: //windowsitpro.com/scripting/creating-remote-sessions-powershell-20?page=3

于 2013-07-04T02:24:57.443 回答