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.
Page 1 / 1
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.