6

作为备份操作的一部分,我正在运行 7zip 命令将文件夹压缩为单个 .7z 文件。没有问题,因为我正在使用InVoke-WMIMethod.

例子:

$zip = "cmd /c $irFolder\7za.exe a $somedirectory.7z $somedirectory"
"InVoke-WmiMethod -class Win32_process -name Create -ArgumentList $zip -ComputerName $remotehost"

当我的脚本继续运行时,我的问题出现了,7za.exe 进程尚未完成。然后我试图从远程系统中复制该项目,但它不完整或失败。

有人可以指出我的方向,以弄清楚如何识别 7za.exe 进程是否仍在运行,等到它死了,然后继续我的脚本的其余部分?

我可以通过...掌握从远程系统中提取进程的方法

get-wmiobject -class Win32_Process -ComputerName $remotehost | Where-Object $_.ProcessName -eq "7za.exe"}

不知道如何将其转化为对我的问题有用的信息。

回答更新:(感谢@dugas 轻推)

这将为需要它的人提供一些反馈...

do {(Write-Host "Waiting..."),(Start-Sleep -Seconds 5)}
until ((Get-WMIobject -Class Win32_process -Filter "Name='7za.exe'" -ComputerName $target | where {$_.Name -eq "7za.exe"}).ProcessID -eq $null)
4

2 回答 2

5

您可以使用 Invoke-Command cmdlet 在远程计算机上调用 Wait-Process cmdlet。例子:

$process = Invoke-WmiMethod -Class Win32_Process -Name create -ArgumentList notepad -ComputerName RemoteComputer

Invoke-Command -ComputerName RemoteComputer -ScriptBlock { param($processId) Wait-Process -ProcessId $processId } -ArgumentList $process.ProcessId

由于您提到使用 Invoke-Command 不是一个选项,因此另一个选项是轮询。例子:

$process = Invoke-WmiMethod -Class Win32_Process -Name create -ArgumentList notepad -ComputerName hgodasvccr01
$processId = $process.ProcessId

$runningCheck = { Get-WmiObject -Class Win32_Process -Filter "ProcessId='$processId'" -ComputerName hgodasvccr01 -ErrorAction SilentlyContinue | ? { ($_.ProcessName -eq 'notepad.exe') } }

while ($null -ne (& $runningCheck))
{
 Start-Sleep -m 250
}

Write-Host "Process: $processId is not longer running"
于 2013-08-20T19:00:55.130 回答
0

您应该可以使用 do...while 循环来完成它,该循环只会休眠直到进程完成。

 do { 
    "waiting"
    start-sleep 10 
    } while (gwmi -class win32_process -ComputerName $remotehost | Where ProcessName -eq "7za.exe")
于 2013-08-20T18:27:41.557 回答