Skip to content

Instantly share code, notes, and snippets.

@devendrasv
Created July 13, 2014 21:41
Show Gist options
  • Save devendrasv/7b16ec25e560547ea09c to your computer and use it in GitHub Desktop.
Save devendrasv/7b16ec25e560547ea09c to your computer and use it in GitHub Desktop.
update column displayname
$w = Get-SPWeb "http://site"
$f = $w.Fields["date_reported"] #internal name of the column
$f.Title = "date reported" #new display name of date_reported column
$f.Update()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment