Skip to content

Instantly share code, notes, and snippets.

@mcantrell
Created April 20, 2012 14:58
Show Gist options
  • Select an option

  • Save mcantrell/2429317 to your computer and use it in GitHub Desktop.

Select an option

Save mcantrell/2429317 to your computer and use it in GitHub Desktop.
Fix Sharepoint Alternate Headers
Add-PSSnapin Microsoft.SharePoint.PowerShell
$w = Get-SPWeb http://domain/siteName; $w.AlternateHeader = $null; $w.Update()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment