Scripting Blog [archived]

Formerly known as the "Hey, Scripting Guy!" blog

Just go with the flow…. WorkFlow that is with Windows PowerShell

Doctor Scripto returns again with our good friend Joel Vickery, PFE who is going to touch on the use of Workflows In PowerShell. Take it away Joel! Following up on my original post Parallel Processing with jobs in PowerShell, I wanted to go into another method of running parallel processes in PowerShell, namely WorkFlows. WorkFlow is ...

PowerTip: Identify Completed PowerShell Jobs with Data yet to be Received

Summary: Doctor Scripto quickly shows how to identify Completed Jobs in PowerShell which have yet to have the data Received Hey Doctor Scripto, How can I identify jobs which already completed but I haven’t done a Receive-Job on to get the data? (image) You can do this with the Get-Job Cmdlet by targeting the -ChildJobState and -...