A new addition to the PowerShell script for Nintex Workflow that I’ve been working on, so that you can get a report of the total number of actions in a workflow and also how many times each type of action is used. The usage is quite simple: .\AllWorkflows.ps1 -nwoperation FindActionsInWorkflow -nwlogin domain\username -nwpassword password -nwworkflow “workflowname” […]
Some of you may be using the “Set Workflow Status” action in Nintex Workflow, which allows you to create custom workflow statuses (statii?). I just had a need to find out what status codes sharePoint thinks are available for my workflow, since there seemed to be a mismatch between the status I was setting, and […]
Starting a workflow via PowerShell can be a useful function and can speed up a lot of work. I’ve created a couple of scripts to help out. The first one is a script to start a SharePoint workflow, using the SharePoint object model. The second one is a script to start a Nintex Workflow, using […]
This is Part 5 from the previous post on PowerShell Find Workflows that contain a Specific Action Part 4. Added a new operation that looks in all the workflows to find those that have Verbose Logging enabled. Operation is : FindVerboseLogging Changes to the PowerShell Script The way to export and publish a workflow is via a […]
Today I talked to a customer (Kevin Dunn at DH Pace, Inc.) who had a need to purge some data from the Nintex Workflow History List. The NWAdmin tool helps with purging data from the Nintex Workflow history lists and there’s also a way to do it through the Manage History Lists page in Site […]
Nintex Workflow – PowerShell Find Workflows that contain a Specific Action Part 4 – Vadim Tabakman This is Part 4 from the previous post on PowerShell Find All Workflows and Export or Republish. We now have the ability to find all our workflows, export them to file and also to republish them. The next step, […]
This is Part 3 from the previous post on PowerShell Find All Workflows and Export. We now have the ability to find all our workflows, parse the information and export the workflows to file. Next, what I would like to do, is have the abililty to republish each of these workflows. This is a request […]
This is Part 2 from the previous post on PowerShell Find All Workflows. We currently have the ability to find all our workflows and parse the information. Next, what I would like to do, is to be able to export each of these workflow to file. This would be useful as a backup process. Since […]
I recently encountered a question about how to automatically enable the Nintex Workflow Site Feature on all the subsites under a root site in a Site Collection. This isn’t the first time it has been asked of me, so I thought I’d create a simple PowerShell script to do it. It’s not complex. It just […]
WARNING DO NOT run this on a production system unless absolutely necessary. It iterates through all sites, lists, items and workflows. I have not tested this for performance and system impact. There have been some requests on how to cancel all running workflows. I’ve looked online and have found a number of C# and PowerShell […]