For the complete documentation index, see llms.txt. This page is also available as Markdown.

Set-RDMPrivateSessionPassword

Synopsis

Set the password from the specified session.

Syntax

Id

Set-RDMPrivateSessionPassword [-ID] <guid> [-Password] <securestring> [[-PasswordAge] <int>]
 [[-PasswordSinceDate] <datetime>] [-PassThru] [-Refresh] [-SetSession]
 [-ForcePromptAnswer <DialogResult[]>] [<CommonParameters>]

InputObject

Set-RDMPrivateSessionPassword [-Session] <PSConnection> [-Password] <securestring>
 [[-PasswordAge] <int>] [[-PasswordSinceDate] <datetime>] [-PassThru] [-Refresh] [-SetSession]
 [-ForcePromptAnswer <DialogResult[]>] [<CommonParameters>]

Description

Set the password from the specified session. Session must be marked as "Allow show credentials" if not null is returned. To persist the new password, the switch SetSession must be used.

Examples

Example 1

Set the password from the session with ID = "{00000000-0000-0000-0000-000000000000}".

Example 2

Retrieves the list of available sessions and sets the password from the the second element in the list.

Example 3

Modify the domain, password and username of the entry named 'UniqueName'. The variable $securePassword is a secure string previously set. Persist the modification with the Set-RDMUserVaultSession call.

Parameters

-ForcePromptAnswer

Switch to use with caution. It will automatically answer prompt asking yes/no, yes/no/cancel, or ok/cancel questions. In case of multiple prompts, multiple values can be passed to this parameter. Here are the accepted values:

  • Yes: Accept the prompt. Cover the OK and Automatic value.

  • No: Refuse the yes/no/cancel prompt. "Cancel" is the fallback option if there is no "No" option.

  • Cancel: Cancel the yes/no/cancel prompt. "No" is the fallback option if there is no "Cancel" option.

-ID

Specifies the ID of the session to get the password from.

Must be a valid GUID, in the form {00000000-0000-0000-0000-000000000000}.

-PassThru

Return the modified entry.

-Password

Password as SecureString.

Use either "Read-Host -AsSecureString" or "ConvertTo-SecureString"

-PasswordAge

Specifies password age in days. PasswordAge takes presedence over PasswordSinceDate.

-PasswordSinceDate

Specifies date/time (UTC) at which the password was first created. PasswordAge takes presedence over PasswordSinceDate.

-Refresh

Send refresh notification to Remote Desktop Manager application.

-Session

Specifies the session to set the password to.

-SetSession

Save the session in the current workspace.

CommonParameters

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

Outputs

Notes

For more information, type "Get-Help Set-RDMPrivateSessionPassword -detailed". For technical information, type "Get-Help Set-RDMPrivateSessionPassword -full".

Last updated

Was this helpful?