“Hasło szyfrynowe PowerShell” Kod odpowiedzi

Hasło szyfrynowe PowerShell

(get-credential).Password | ConvertFrom-SecureString -key (get-content C:\passwords\aes.key) | set-content "C:\Passwords\password.txt"
Careful Chamois

Hasło szyfrynowe PowerShell

$Key = New-Object Byte[] 32
[Security.Cryptography.RNGCryptoServiceProvider]::Create().GetBytes($Key)
$Key | out-file C:\passwords\aes.key
Careful Chamois

Hasło szyfrynowe PowerShell

$password = Get-Content C:\Passwords\password.txt | ConvertTo-SecureString -Key (Get-Content C:\Passwords\aes.key)
$credential = New-Object System.Management.Automation.PsCredential("Luke",$password)
Careful Chamois

Odpowiedzi podobne do “Hasło szyfrynowe PowerShell”

Pytania podobne do “Hasło szyfrynowe PowerShell”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu