diff --git a/sharepoint/sharepoint-ps/sharepoint-server/Disable-SPFeature.md b/sharepoint/sharepoint-ps/sharepoint-server/Disable-SPFeature.md index e4cb22de59..87b7b15c68 100644 --- a/sharepoint/sharepoint-ps/sharepoint-server/Disable-SPFeature.md +++ b/sharepoint/sharepoint-ps/sharepoint-server/Disable-SPFeature.md @@ -39,7 +39,6 @@ This example disables the "MyCustom" Web site scoped feature at http://somesit ### --------------EXAMPLE 2----------------- ``` C:\PS>$w = Get-SPWeb http://somesite/myweb | ForEach{ $_.URL } - C:\PS>Get-SPFeature -Web $w |%{ Disable-SPFeature -Identity $_ -URL $w} ```