examples/clientCertificate.example.ps1
1 2 3 4 5 6 7 8 9 10 |
$count = 0 while($count -le $numberOfClientCerts) { $clientCertName = 'azureVPNClient.' + $count $rootCert | New-AzureVPNClientCertificate -thumbPrint 'sddddffddffd' -subject $clientCertName | Export-AzureVPNCertificate -path $exportPath -pfx -password $pfxpassword -removeAfterExport $count++ } |