Skip to main content
Nintex Community Menu Bar

Activate Nintex Forms Web Application Feature via PowerShell

  • June 9, 2015
  • 1 reply
  • 152 views

Forum|alt.badge.img+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

Forum|alt.badge.img+3
  • 10 replies
  • July 28, 2016

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