Link to home
Start Free TrialLog in
Avatar of James Halliburton
James HalliburtonFlag for United States of America

asked on

How can I see All Workflows within SharePoint 2010 & 2013?

How can I determine how many Workflows exist within both SharePoint 2010 and 2013 envirionments from the topmost level? Not just the Workflows I've created but all Workflows that exist within the environment. This requires a non code solution.
ASKER CERTIFIED SOLUTION
Avatar of Montoya
Montoya

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Montoya
Montoya

you can also try PowerShell

$site = Get-SPSite("your-site-url");
$site.AllWebs | foreach { $_.Lists | foreach { $_.WorkflowAssociations | foreach {
  write-host "Site:" $_.ParentWeb.Url ", List:" $_.ParentList.Title ", Workflow:" $_.Name
} } }


got that info from:

http://sharepoint.stackexchange.com/questions/15388/find-all-spd-workflows-in-site-collection