2
Reply

Power shell script to activate the site collection feature

Abhay Shanker

Abhay Shanker

11y
1.5k
0
Reply

    Have a look at this blog from me ....http://www.c-sharpcorner.com/code/134/power-shell-activate-feature-on-all-site-collection.aspx

    $site = Get-SPSite http://siteurl/
    Enable-SPFeature -Identity “Feature Name” -Url $site.Url
    $site.Dispose()