How can I find what Static Classes and Methods there is available in PowerShell 2.0?
To get the static members of a type or object, pipe it to Get-Member and specify the Static switch:
[math] | Get-Member -Static