Quick way to export SharePoint 2010 PowerShell CmdLets to a text file.
[codesyntax lang="powershell"]
Add-PSSnapin Microsoft.SharePoint.PowerShell Get-Command -PSSnapin "Microsoft.SharePoint.PowerShell" | select Name, Definition | format-list > C:SharePoint-CmdLets.txt
[/codesyntax]

