A quick list of all SharePoint 2010 Powershell commandlets

Posted by Sahil Malik on Win Smarts See other posts from Win Smarts or by Sahil Malik
Published on Wed, 02 Feb 2011 04:16:31 GMT Indexed on 2011/02/02 15:31 UTC
Read the original article Hit count: 248

Filed under:

SharePoint 2010 Training: more information

Ever wonder what powershell commandlets exist on your SharePoint 2010 installation? Easy! Just run the SharePoint 2010 Management Shell, and issue the following command - Get-Command -module Microsoft.SharePoint.PowerShell And if you wish to find matching commands for a certain task, for instance, I wish to know all commands that have anything to do with “Update”, I would issue the following command  - Get-Command -module Microsoft.SharePoint.PowerShell  | where{$_.name -match "Update"} And if you want to do exactly the same for stsadm, you could do something like this -

Read full article ....


© Win Smarts or respective owner

Related posts about SharePoint 2010