Created
July 13, 2014 21:41
-
-
Save devendrasv/7b16ec25e560547ea09c to your computer and use it in GitHub Desktop.
update column displayname
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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