Skip to content

Latest commit

 

History

History
60 lines (42 loc) · 1.22 KB

File metadata and controls

60 lines (42 loc) · 1.22 KB
external help file Module Name online version schema
AzureKeyVaultHelper-help.xml
AzureKeyVaultHelper
2.0.0

Convert-SecureStringToString

SYNOPSIS

Converts a secure string to a plain text string.

SYNTAX

Convert-SecureStringToString [-Secure] <SecureString> [<CommonParameters>]

DESCRIPTION

Converts a secure string to a plain text string.

EXAMPLES

Example 1

PS C:\> ConvertTo-SecureString 'test' -AsPlainText -Force | Convert-SecureStringToString

Converts the secure string to a plain text string.

PARAMETERS

-Secure

The secure string you want to convert.

Type: SecureString
Parameter Sets: (All)
Aliases:

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

System.Security.SecureString

OUTPUTS

System.Object

NOTES

RELATED LINKS