Pages

Wednesday 11 July 2012

SharePoint 2010 PowerShell Commands List

SharePoint 2010 PowerShell is very powerful Feature for SharePoint. It’s very easy and some time required for SharePoint administrator to work in PowerShell.
It’s very hard to remember all PowerShell command SharePoint.

Here is simplest way to get list of all command related to SharePoint .

That will show results in table format. 
get-command -PSSnapin "Microsoft.SharePoint.Powershell" | select name, definition | format-table 
That will show results in List format.  
get-command -PSSnapin "Microsoft.SharePoint.Powershell" | select name, definition | format-List 
you can save all Commands in Text File by adding -wrap > [path to save file] at end of above command
get-command -PSSnapin "Microsoft.SharePoint.Powershell" | select name, definition | format-List  > C:\Sharepointcmd.txt

No comments:

Post a Comment