1

我有一个 PowerShell 2.0 脚本,用于在 Windows 主机环境中使用 vmrun 克隆目标 vmware 工作站来宾。克隆虚拟机的代码正确执行。

我现在正在尝试扩展此脚本以自动化更多过程,例如,检查虚拟机是否正在运行,如果正在运行,则vmrun list停止虚拟机vmrun stop [pathToVMXfile]

使用 windows 命令提示符,当我运行时vmrun list,它返回以下内容:

正在运行的虚拟机总数:2
D:\[path]\[name].vmx
E:\[path]\[name].vmx

当我在 PowerShell 中尝试以下操作时,没有任何返回。这是我到目前为止所尝试的。我期望一个数组返回我从命令提示符运行时看到的值。

$vmwareRun = "C:\Program Files (x86)\VMware\VMware Workstation\vmrun.exe"

#Original test, also tried with single quotes and no quotes, 
#also tried quoting the -filePath   
Start-Process $vmwareRun -ArgumentList "list" 

#This gives a handle to the process but no return value  
$myProcess = Start-Process $vmwareRun -ArgumentList "list" -PassThru 

#$t is empty
Start-Process $vmwareRun -ArgumentList "list" -OutVariable $t  

#$t is empty, clone command requires the -T ws parameters  
Start-Process $vmwareRun -ArgumentList "-T ws list" -OutVariable $t 

#RedirectStandardOutput creates a file with the expected output, $t is empty
Start-Process -FilePath "$vmwareRun" -ArgumentList $argList -OutVariable $t -RedirectStandardError "C:\testError.log" -RedirectStandardOutput C:\testOut.log"

无论我尝试什么,我都没有得到任何输出。我错过了什么?注意:Vmrun 命令行文档可在此处找到:“ https://www.vmware.com/support/developer/vix-api/vix112_vmrun_command.pdf

谢谢。

4

1 回答 1

0

我在这里找到了一个类似的帖子:使用 Start-Process 捕获标准输出和错误

无论出于何种原因,powershell 解决方案都不会像我预期的那样将进程的结果发送到 -OutVariable。

因此,我按照页面上指示的步骤创建了一个新的$pinfo = New-Object System.Diagnostics.ProcessStartInfo. 我设置了相应的属性,然后使用 System.Diagnostics.Process 启动了该过程,它允许我将结果输出到字符串变量。

于 2017-07-06T14:32:27.323 回答