Skip navigation
Learning About Data Returned from SharePoint

Learning About Data Returned from SharePoint

Windows PowerShell includes the Get-Member cmdlet, which displays a list of all the properties and methods of an object. If you enter

Get-SPSite http://yourserver/sites/yoursite 

PowerShell displays the site URL. To see all the options that are available for the site, pipe the output of the command to Get-Member:

Get-SPSite http://yourserver/sites/yoursite |

  -Get-Member MemberType Property

 

Return to the main article, "Exploring and Inventorying SharePoint Using PowerShell."

Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish