Vraag : Geautomatiseerde Authentificatie

Is daar een manier het wachtwoord in volgende powershell command.

Test-OWAConnectivity automatisch om over te gaan - url https://mail.yourdomain.co m/owa - mailboxcredentials: (De gebruiker \ van krijgen-Credential domail)

Antwoord : Geautomatiseerde Authentificatie

cre�ër het wachtwoord in een tekstdossier:
$my_secure_password_string = convertto-securestring - asplaintext - kracht „Exchange12Rocks“
$my_encrypted_string = het convertfrom-securestring $my_secure_password_string - sleutel (1..16)
$my_encrypted_string > password.txt

dan gebruik het tekstdossier in een manuscript:
$password = convertto-securestring (inhoud password.txt) - sleutel (1..16)
$login = nieuw-Voorwerp - TypeName System.Management.Automation.PsCredential - Brievenbus \ van ArgumentList de „CONTOSO“, $password
Test-OwaConnectivity - URL https://owa.contoso.com/owa - MailboxCredential: $login
Andere oplossingen  
 
programming4us programming4us