Activate Nintex Forms Web Application Feature via PowerShell

  • 9 June 2015
  • 1 reply
  • 107 views

Userlevel 7
Badge +10

Products: Nintex Forms 2010, Nintex Forms 2013

 

A question came in about activating Nintex Forms 2010/2013 via PowerShell. It is fairly easy to do assuming you have the FeatureDefinitionID (0cdf436f-61b0-43d2-b250-4360f0353b63). Below you will find an example for how to activate/deactivate the feature via PowerShell.

 

PowerShell Script
  1. Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
  2.  
  3. Enable-SPFeature -Url http://contoso.com -Identity 0cdf436f-61b0-43d2-b250-4360f0353b63 -Confirm:$false
  4.  
  5. #Disable-SPFeature -Url http://contoso.com -Identity 0cdf436f-61b0-43d2-b250-4360f0353b63 -Confirm:$false
 

 

Note: To deactivate the feature, uncomment the 5th line and comment the 3rd line.

 

Version History and other scripts can be found here: http://alps.codeplex.com


1 reply

Badge +3

I had to perform the same command on SharePoint 2016 as a FYI

Reply