1

I am able to navigate till workflow associations. Can anyone help me to display the workflows in progress count and the workflow nameenter image description here

3

1 Answer 1

2

Try to use the PowerShell as following:

$web=Get-SPWeb http://SpSiteName
$list=$web.Lists["ListName"]
$wf=$list.WorkflowAssociations | where {$_.RunningInstances -gt 0}
$wf | select Name,ParentList,RunningInstances | Format-List;

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.