2
Reply

Power shell script to activate the site collection feature

Abhay Shanker

Abhay Shanker

Nov 07, 2013
1.4k
0

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

    Ketak Bhalsing
    October 20, 2014
    0

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

    Abhay Shanker
    November 07, 2013
    0