To find a list of all the commands available to you from the SCE 2007 PowerShell console you can run the following commands. The first one returns the information to the PowerShell console and the second one saves the results as an HTML webpage.
List To PowerShell console:
$SCE | GM | Select-Object Name
Output to Web Page:
$SCE | GM | Select-Object Name | ConvertTo-Html | Out-File "FileName.Html"
Did you see the post at myitforum.com