PowerShell Screept For Enable Nintex Workflow Feature on all Site Collections and it’s all Sub sites
Add-PsSnapin Microsoft.SharePoint.PowerShell ## SharePoint DLL [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") $webApplicationURL = "http://WebApplicationURL" $featureFolderName = "NintexWorkflowWeb" $webApp = Get-SPWebApplication $webApplicationURL if($webApp -ne $null) { foreach($siteColl in $webApp.Sites) { foreach($subWeb in $siteColl.AllWebs) { $FeatureID = Get-SPFeature -Web $subWeb.Url | Where {$_.DisplayName -eq $featureFolderName} if (Get-SPFeature -Web $subWeb.Url | Where {$_.ID -eq $FeatureID.Id}) { Write-Host $featureFolderName "is already activated at :" $subWeb.Url #$subWeb.url | Out-File -FilePath F:\AlreadyActivatedSites.txt -Append } else { ...