Summary: Learn how to find Windows PowerShell cmdlets and providers that support credentials.
How can I find which Windows PowerShell cmdlets support the credential parameter?
Use the Get-Command cmdlet with a command such as:
Get-Command -ParameterName credential
How can I find which Windows PowerShell providers support credentials?
Use the Get-PSProvider cmdlet and pipe the results to Where-Object. Then look for credential in the capabilities property. An example for doing this in Windows PowerShell 3.0 is shown here.
Get-PSProvider | where -Property capabilities -Value credential -Match