{"id":893,"date":"2013-06-26T15:16:04","date_gmt":"2013-06-26T22:16:04","guid":{"rendered":"https:\/\/mmman.itgroove.net\/?p=893"},"modified":"2023-02-24T21:48:43","modified_gmt":"2023-02-24T21:48:43","slug":"how-to-enabledisable-numerous-features-across-an-entire-farm","status":"publish","type":"post","link":"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/","title":{"rendered":"How to Enable\/Disable Numerous Features Across an Entire Farm"},"content":{"rendered":"<p>I was recently asked to enable and disable certain features across an entire farm that were activated by virtue of having upgraded to the SharePoint enterprise license.&nbsp; The key is that to do this effectively, I wrote some PowerShell, and I needed the Feature ID.&nbsp; The table of features with their IDs is below.<\/p>\n<table cellspacing=\"0\" cellpadding=\"2\" width=\"734\" border=\"0\"><strong><\/strong> <\/p>\n<tbody><strong><\/strong> <\/p>\n<tr>\n<td valign=\"top\" width=\"325\"><strong><\/strong><\/td>\n<td valign=\"top\" width=\"137\"><strong>Short Name<\/strong><\/td>\n<td valign=\"top\" width=\"270\"><strong>Feature ID<\/strong><\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"325\"><strong>Deactivate (site collection features)<\/strong><\/td>\n<td valign=\"top\" width=\"137\">&nbsp;<\/td>\n<td valign=\"top\" width=\"270\">&nbsp;<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"325\">Document ID Service Feature<\/td>\n<td valign=\"top\" width=\"137\">DocId<\/td>\n<td valign=\"top\" width=\"270\">b50e3104-6812-424f-a011-cc90e6327318<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"325\">Disposition Approval Workflow feature<\/td>\n<td valign=\"top\" width=\"137\">ExpirationWorkflow<\/td>\n<td valign=\"top\" width=\"270\">c85e5759-f323-4efb-b548-443d2216efb5<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"325\">In Place Records Management Feature<\/td>\n<td valign=\"top\" width=\"137\">InPlaceRecords<\/td>\n<td valign=\"top\" width=\"270\">da2e115b-07e4-49d9-bb2c-35e93bb9fca9<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"325\">Library and Folder Based Retention Feature<\/td>\n<td valign=\"top\" width=\"137\">LocationBasedPolicy<\/td>\n<td valign=\"top\" width=\"270\">063c26fa-3ccc-4180-8a84-b6f98e991df3<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"325\"><strong>Deactivate (site features (i.e. web))<\/strong><\/td>\n<td valign=\"top\" width=\"137\">&nbsp;<\/td>\n<td valign=\"top\" width=\"270\">&nbsp;<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"325\">Content Organizer<\/td>\n<td valign=\"top\" width=\"137\">DocumentRouting<\/td>\n<td valign=\"top\" width=\"270\">7ad5272a-2694-4349-953e-ea5ef290e97c<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"325\">E-mail Integration with Content Organizer<\/td>\n<td valign=\"top\" width=\"137\">EMailRouting<\/td>\n<td valign=\"top\" width=\"270\">d44a1358-e800-47e8-8180-adf2d0f77543<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"325\">&nbsp;<\/td>\n<td valign=\"top\" width=\"137\">&nbsp;<\/td>\n<td valign=\"top\" width=\"270\">&nbsp;<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"325\"><strong>Activate (site collection feature)<\/strong><\/td>\n<td valign=\"top\" width=\"137\">&nbsp;<\/td>\n<td valign=\"top\" width=\"270\">&nbsp;<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"325\">Open Documents in Client Applications by Default<\/td>\n<td valign=\"top\" width=\"137\">OpenInClient<\/td>\n<td valign=\"top\" width=\"270\">8a4b8de2-6fd8-41e9-923c-c7c3c00f8295<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<p>The following is the PowerShell I used to enable \/ disable these features on the web application \u201cwebapplication.company.com\u201d.&nbsp; Note that if you wanted to do this across multiple web applications, you would need to do this block of statements for each web application in the farm.<\/p>\n<p><font face=\"Courier New\">Get-SPWebApplication <\/font><font face=\"Courier New\">http:\/\/webapplication.company.com<\/font><font face=\"Courier New\"> | Get-SPSite -Limit ALL | ForEach-Object {Disable-SPFeature -identity &#8220;b50e3104-6812-424f-a011-cc90e6327318&#8221; -URL $_.URL -confirm:$false}<br \/>Get-SPWebApplication &#8220;<\/font><font face=\"Courier New\">http:\/\/webapplication.company.com&#8221;<\/font><font face=\"Courier New\"> | Get-SPSite -Limit ALL | ForEach-Object {Disable-SPFeature -identity &#8220;c85e5759-f323-4efb-b548-443d2216efb5&#8221; -URL $_.URL -confirm:$false}<br \/>Get-SPWebApplication &#8220;<\/font><font face=\"Courier New\">http:\/\/webapplication.company.com&#8221;<\/font><font face=\"Courier New\"> | Get-SPSite -Limit ALL | ForEach-Object {Disable-SPFeature -identity &#8220;da2e115b-07e4-49d9-bb2c-35e93bb9fca9&#8221; -URL $_.URL -confirm:$false}<br \/>Get-SPWebApplication &#8220;<\/font><font face=\"Courier New\">http:\/\/webapplication.company.com&#8221;<\/font><font face=\"Courier New\"> | Get-SPSite -Limit ALL | ForEach-Object {Disable-SPFeature -identity &#8220;063c26fa-3ccc-4180-8a84-b6f98e991df3&#8221; -URL $_.URL -confirm:$false}<br \/>Get-SPWebApplication &#8220;<\/font><font face=\"Courier New\">http:\/\/webapplication.company.com&#8221;<\/font><font face=\"Courier New\"> | Get-SPSite -Limit ALL | ForEach-Object {Disable-SPFeature -identity &#8220;7ad5272a-2694-4349-953e-ea5ef290e97c&#8221; -URL $_.URL -confirm:$false}<br \/>Get-SPWebApplication &#8220;<\/font><font face=\"Courier New\">http:\/\/webapplication.company.com&#8221;<\/font><font face=\"Courier New\"> | Get-SPSite -Limit ALL | ForEach-Object {Disable-SPFeature -identity &#8220;d44a1358-e800-47e8-8180-adf2d0f77543&#8221; -URL $_.URL -confirm:$false}<br \/>Get-SPWebApplication &#8220;<\/font><font face=\"Courier New\">http:\/\/webapplication.company.com&#8221;<\/font><font face=\"Courier New\"> | Get-SPSite -Limit ALL | ForEach-Object {Enable-SPFeature -identity &#8220;8a4b8de2-6fd8-41e9-923c-c7c3c00f8295&#8221; -Url $_.Url -confirm:$false}<\/font><\/p>\n","protected":false},"excerpt":{"rendered":"<p>I was recently asked to enable and disable certain features across an entire farm that were activated by virtue of having upgraded to the SharePoint enterprise license.&nbsp; The key is that to do this effectively, I wrote some PowerShell, and I needed the Feature ID.&nbsp; The table of features with their IDs is below. Short &hellip; <a href=\"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/\"><\/a><\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[31,7],"tags":[],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Enable\/Disable Numerous Features Across an Entire Farm - Archive<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Enable\/Disable Numerous Features Across an Entire Farm - Archive\" \/>\n<meta property=\"og:description\" content=\"I was recently asked to enable and disable certain features across an entire farm that were activated by virtue of having upgraded to the SharePoint enterprise license.&nbsp; The key is that to do this effectively, I wrote some PowerShell, and I needed the Feature ID.&nbsp; The table of features with their IDs is below. Short &hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/\" \/>\n<meta property=\"og:site_name\" content=\"Archive\" \/>\n<meta property=\"article:published_time\" content=\"2013-06-26T22:16:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-24T21:48:43+00:00\" \/>\n<meta name=\"author\" content=\"Colin Phillips (Alumni)\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Colin Phillips (Alumni)\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/\",\"url\":\"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/\",\"name\":\"How to Enable\/Disable Numerous Features Across an Entire Farm - Archive\",\"isPartOf\":{\"@id\":\"https:\/\/regroove.ca\/archive\/#website\"},\"datePublished\":\"2013-06-26T22:16:04+00:00\",\"dateModified\":\"2023-02-24T21:48:43+00:00\",\"author\":{\"@id\":\"https:\/\/regroove.ca\/archive\/#\/schema\/person\/adeb0df1cc7a862160be620ca7eace1b\"},\"breadcrumb\":{\"@id\":\"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog Archive\",\"item\":\"https:\/\/regroove.ca\/archive\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Enable\/Disable Numerous Features Across an Entire Farm\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/regroove.ca\/archive\/#website\",\"url\":\"https:\/\/regroove.ca\/archive\/\",\"name\":\"Archive\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/regroove.ca\/archive\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/regroove.ca\/archive\/#\/schema\/person\/adeb0df1cc7a862160be620ca7eace1b\",\"name\":\"Colin Phillips (Alumni)\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/regroove.ca\/archive\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/14eeab0d377e9630e0983d9c08911979?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/14eeab0d377e9630e0983d9c08911979?s=96&d=mm&r=g\",\"caption\":\"Colin Phillips (Alumni)\"},\"url\":\"https:\/\/regroove.ca\/archive\/author\/cphillips\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Enable\/Disable Numerous Features Across an Entire Farm - Archive","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/","og_locale":"en_US","og_type":"article","og_title":"How to Enable\/Disable Numerous Features Across an Entire Farm - Archive","og_description":"I was recently asked to enable and disable certain features across an entire farm that were activated by virtue of having upgraded to the SharePoint enterprise license.&nbsp; The key is that to do this effectively, I wrote some PowerShell, and I needed the Feature ID.&nbsp; The table of features with their IDs is below. Short &hellip;","og_url":"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/","og_site_name":"Archive","article_published_time":"2013-06-26T22:16:04+00:00","article_modified_time":"2023-02-24T21:48:43+00:00","author":"Colin Phillips (Alumni)","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Colin Phillips (Alumni)","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/","url":"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/","name":"How to Enable\/Disable Numerous Features Across an Entire Farm - Archive","isPartOf":{"@id":"https:\/\/regroove.ca\/archive\/#website"},"datePublished":"2013-06-26T22:16:04+00:00","dateModified":"2023-02-24T21:48:43+00:00","author":{"@id":"https:\/\/regroove.ca\/archive\/#\/schema\/person\/adeb0df1cc7a862160be620ca7eace1b"},"breadcrumb":{"@id":"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/regroove.ca\/archive\/2013\/06\/26\/how-to-enabledisable-numerous-features-across-an-entire-farm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Archive","item":"https:\/\/regroove.ca\/archive\/"},{"@type":"ListItem","position":2,"name":"How to Enable\/Disable Numerous Features Across an Entire Farm"}]},{"@type":"WebSite","@id":"https:\/\/regroove.ca\/archive\/#website","url":"https:\/\/regroove.ca\/archive\/","name":"Archive","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/regroove.ca\/archive\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/regroove.ca\/archive\/#\/schema\/person\/adeb0df1cc7a862160be620ca7eace1b","name":"Colin Phillips (Alumni)","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/regroove.ca\/archive\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/14eeab0d377e9630e0983d9c08911979?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/14eeab0d377e9630e0983d9c08911979?s=96&d=mm&r=g","caption":"Colin Phillips (Alumni)"},"url":"https:\/\/regroove.ca\/archive\/author\/cphillips\/"}]}},"_links":{"self":[{"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/posts\/893"}],"collection":[{"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/comments?post=893"}],"version-history":[{"count":1,"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/posts\/893\/revisions"}],"predecessor-version":[{"id":1923,"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/posts\/893\/revisions\/1923"}],"wp:attachment":[{"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/media?parent=893"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/categories?post=893"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/regroove.ca\/archive\/wp-json\/wp\/v2\/tags?post=893"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}