January 2019
Intermediate to advanced
536 pages
14h 14m
English
To create a service principal using certificates, the following steps should be executed:
To create a self-signed certificate, the following command can be executed. The self-signed certificate is exportable and stored in a personal folder on the local machine. It also has an expiry date:
$currentDate = Get-Date$expiryDate = $currentDate.AddYears(1)$finalDate = $expiryDate.AddYears(1)$servicePrincipalName = "https://automation.book.com"$automationCertificate = New-SelfSignedCertificate -DnsName $servicePrincipalName ...
Read now
Unlock full access