gpt4 book ai didi

powershell - 无法通过任务计划程序恢复工作流程

转载 作者:行者123 更新时间:2023-12-02 04:58:29 25 4
gpt4 key购买 nike

在 powershell 窗口中,我运行以下工作流程:

workflow foo { Suspend-Workflow; "hello world" | Out-File c:\users\weijgerss\desktop\foo.txt }

然后为了恢复工作流程,我通过触发任务调度程序安排了以下任务以在启动时运行:

Import-Module PSWorkflow
$jobs = Get-Job -state Suspended
$jobs > c:\users\weijgerss\desktop\zqqfff.txt
$resumedJobs = $jobs | resume-job -wait
$resumedJobs | wait-job

# Task scheduler action: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -WindowStyle Normal -NoLogo -NoProfile -Command "&'c:\users\weijgerss\desktop\resume.ps1'"

工作流程在启动时不会恢复,如果我通过任务计划程序手动触发它也不会恢复。 zqqfff.txt的内容表明任务计划程序激活的powershell看不到工作流程。当我运行 Get-Job 时,常规 powershell 窗口可以看到工作流程。

(普通 powershell 窗口和任务计划程序 powershell 实例都以同一用户身份运行。)

我使用 procmon 来查看发生了什么,从中可以看出,当 powershell 通常与taskscheduler 比较时,它会查看不同的工作流程持久路径,即:

C:\Users\weijgerss\AppData\Local\microsoft\windows\PowerShell\WF\PS\default\S-1-5-21-3519956147-933941082-741972881-500_EL(普通的 powershell 窗口使用此文件夹)C:\Users\weijgerss\AppData\Local\microsoft\windows\PowerShell\WF\PS\default\S-1-5-21-3519956147-933941082-741972881-500_EL_NI(任务计划程序激活的 powershell 实例使用此文件夹)

我完全被难住了。如何让任务计划程序激活的 powershell 实例看到与普通 powershell 窗口相同的工作流程?

最佳答案

以下脚本为您提供了一个解决方案,可在系统启动时使用任务计划程序在重新启动/崩溃后自动恢复 powershell 工作流程:

resume-workflows.ps1:(下面的第一行修复了问题中提到的 _NI 问题)

[System.Management.Automation.Remoting.PSSessionConfigurationData]::IsServerManager = $true
Import-Module PSWorkflow
Get-Job -State Suspended | Resume-Job -Wait| Wait-Job

resume-workflows.cmd:(解决 Windows 8/server 2012 任务计划程序错误)

@rem This is a workaround for task scheduler bug 
@rem See: http://support.microsoft.com/kb/2968540
set "USERPROFILE=%USERPROFILE%\..\%USERNAME%"
set "APPDATA=%USERPROFILE%\AppData\Roaming"
set "LOCALAPPDATA=%USERPROFILE%\AppData\Local"
"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NonInteractive -WindowStyle Normal -NoLogo -NoProfile -Command "&'c:\path\to\resume-workflows.ps1'"

为了将所有内容放在一起,请使用以下 powershell 脚本来安排 resume-workflows.cmd 在系统启动时运行:

$trigger = New-ScheduledTaskTrigger -AtStartup
$action = New-ScheduledTaskAction -Execute "c:\path\to\resume-workflows.cmd"
$currentuser = ([System.Security.Principal.WindowsIdentity]::GetCurrent().Name)
Register-ScheduledTask -TaskName "Resume $($currentuser.Replace('\', '-'))'s Powershell Workflows" `
-Trigger $trigger -Action $action -RunLevel Highest -User $currentuser `
-Password (Read-Host "Enter password for $currentuser")

享受吧!

(ILSpy、sysinternal 的 procmon、大量的 google 和少量的 Windbg 都有助于为您提供上述答案)

关于powershell - 无法通过任务计划程序恢复工作流程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31035899/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com