Created
August 8, 2014 15:17
-
-
Save rheid/af9d19d97ce8aea275a7 to your computer and use it in GitHub Desktop.
Read SharePoint Fields with PowerShell
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
$web = Get-SPWeb http://sharepoint/sites/training/salestraining | |
$list = $web.Lists["Announcements"] | |
$list.fields | select Title, InternalName, StaticName | sort title | ft -AutoSize |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment