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 […]
Don’t try to pull a fast one on me. You’ve never used the Filter action in Nintex Workflow. I know you haven’t. If you have, would I be writing about this?? In all the years I’ve been working with Nintex Workflow on projects, with partners and customers, I think I may have seen one person […]
PDATE : This also works in Office 365. Screenshot at the bottom of this post. Thanks to some amazing people that I work with (Blake Nussey, Jarad Smith and Andrew Jolly), I was finally able to get the process of moving a document to another library or document set and preserve it’s version number and […]
For those that haven’t seen this, I wrote a post about a Smart Workflow. It was a workflow that utilized a State Machine and various states, to keep track of what it had done last. Then, if you happen to terminate the workflow and restart it, it would figure out roughly where it was, and […]
With the abilty to query multiple values from an XML document or a SharePoint List using Nintex Workflow actions, a number of people have come to me and asked for a nice way to iterate through each collection and get corresponding values from each collection. One of the more common business scenarios is trying to […]
Download Download the Workflow : Click here to download Note: This workflow was built in Nintex Workflow 2.3.3.0. If you are running an earlier build, it may not import. Introduction After using the Nintex Workflow Query LDAP action to retrieve some information, I ended up getting it in a distinguished name format: CN=wombat,OU=Users,OU=US,OU=Support,DC=alphas,DC=vadimtabakman,DC=com I needed […]
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 […]
Start of the Story Querying a database is something I do quite regularly. Whether it’s for work at Nintex or other projects. Sometimes this is just from using SQL Management Studio, othertimes, it is for something more complex and requires some code to be written that makes SQL queries and does something on the data. […]
For a mini-project I’m working on, I had a need to convert a number to it’s binary format. From those that don’t know what that means, it’s converting a numerical value into it’s 1’s and 0’s version. eg. 1 = 1 2 = 10 3 = 11 100 = 1100100 Feel free to read more […]
Had a moment of insanity and completely forget that Nintex Workflow had a fn-Power inline function. That, together with choosing not to write some code to make an inline function or a custom action, I decided to make a UDA that would perform a Math Power calculation. Dumb?…oh yes. But hey, I went to the […]