Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Severity Level: Warning
Description
If the cmdlet or function has a Credential parameter, the parameter must accept the PSCredential type.
How
Change the Credential parameter's type to be PSCredential.
Example
Wrong
function Credential([String]$Credential)
{
...
}
Correct
function Credential([PSCredential]$Credential)
{
...
}