Skip to main content
Nintex Community Menu Bar

Fetch All site or scheduled workflows

  • September 6, 2022
  • 1 reply
  • 117 views

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.

1 reply

Forum|alt.badge.img+7
  • Rookie
  • October 31, 2023

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