Skip to main content

I want to export a list of all site/scheduled Nintex workflows in my SharePoint 2013 web application. I have a PowerShell script which returns only those workflows which are associated with a list or library.

NitinMaggu,

For you or anyone else that needs a list of Site Workflows via PowerShell, you can use the following:

# Write list of Published Site Workflows for the current web. List includes all previous versions as well.

$web = get-spweb -Identity "http://my.website.com"

$web.WorkflowAssociations > c:\temp\SiteWF-List.txt


Reply