December 20th, 2013

PowerTip: Debug a Workflow with PowerShell 4.0

Doctor Scripto
Scripter

Summary: Use Windows PowerShell 4.0 to debug a workflow.

Hey, Scripting Guy! Question How do I set a breakpoint in a Windows PowerShell script workflow?

Hey, Scripting Guy! Answer Add the workflow to a script and use Set-PSBreakpoint to set a line breakpoint in the workflow:

Set-PSBreakpoint -Script C:Test-MyWorkflow1.ps1 -Line 12

 

ID Script                           Line Command   Variable  Action

— ——                           —- ——-   ——–  ——

   0 WFExample1.ps1                     12

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.