“PowerShell Detrential объект” Ответ

PowerShell Detrential объект

# Define clear text string for username and password
[string]$userName = 'MyUserName'
[string]$userPassword = 'MySuperSecurePassword'

# Convert to SecureString
[securestring]$secStringPassword = ConvertTo-SecureString $userPassword -AsPlainText -Force
Helpless Hippopotamus

PowerShell Detrential объект

[pscredential]$credObject = New-Object System.Management.Automation.PSCredential ($userName, $secStringPassword)
Helpless Hippopotamus

Ответы похожие на “PowerShell Detrential объект”

Вопросы похожие на “PowerShell Detrential объект”

Больше похожих ответов на “PowerShell Detrential объект” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования