Skip to content

Latest commit

 

History

History
52 lines (42 loc) · 804 Bytes

File metadata and controls

52 lines (42 loc) · 804 Bytes
description Avoid Using Username and Password Parameters
ms.date 06/28/2023
ms.topic reference
title AvoidUsingUsernameAndPasswordParams

AvoidUsingUsernameAndPasswordParams

Severity Level: Error

Description

To standardize command parameters, credentials should be accepted as objects of type PSCredential. Functions should not make use of username or password parameters.

How

Change the parameter to type PSCredential.

Example

Wrong

function Test-Script
{
    [CmdletBinding()]
    Param
    (
        [String]
        $Username,
        [SecureString]
        $Password
    )
    ...
}

Correct

function Test-Script
{
    [CmdletBinding()]
    Param
    (
        [PSCredential]
        $Credential
    )
    ...
}