如何让任务调度程序终止从powershell脚本启动的子进程

问题描述 投票:4回答:1

我有一个启动exe进程的powershell脚本。我有一个任务计划在计算机空闲时运行这个powershell脚本,我设置它在它没有空闲时停止它。

问题是任务计划没有杀死启动的exe进程,我假设它只是试图杀死PowerShell进程。

从任务调度程序启动时,我似乎无法找到一种方法将启动的exe作为powershell.exe的子进程

我已经尝试使用invoke-expression,start-proces启动进程,我也试图通过管道输出out-null,wait-process等等。当从任务调度程序启动ps1时,似乎没有任何工作。

有没有办法实现这个目标?

谢谢

windows powershell
1个回答
5
投票

我不认为你的问题有一个简单的解决方案,因为当一个进程是terminated它没有收到任何通知,你没有机会进行任何清理。

但是,您可以生成另一个监视您的第一个进程并为您进行清理的监视程序进程:

启动脚本在没有其他任何操作后等待:

#store pid of current PoSh
$pid | out-file -filepath C:\Users\you\Desktop\test\currentposh.txt
$child = Start-Process notepad -Passthru
#store handle to child process
$child | Export-Clixml -Path (Join-Path $ENV:temp 'processhandle.xml')

$break = 1
do
{
    Sleep 5 # run forever if not terminated
}
while ($break -eq 1)

如果启动脚本被终止,监视程序脚本会杀死子进程:

$break = 1
do
{
    $parentPid = Get-Content C:\Users\you\Desktop\test\currentposh.txt
    #get parent PoSh1
    $Running = Get-Process -id $parentPid -ErrorAction SilentlyContinue
    if($Running -ne $null) {
        $Running.waitforexit()
        #kill child process of parent posh on exit of PoSh1
        $child = Import-Clixml -Path (Join-Path $ENV:temp 'processhandle.xml')
        $child | Stop-Process
    }
    Sleep 5
}
while ($break -eq 1)

这可能有点复杂,根据您的情况可以简化。无论如何,我认为你明白了。

© www.soinside.com 2019 - 2024. All rights reserved.