Created
October 19, 2017 08:00
-
-
Save naamancampbell/6a5f5c4e0336fabaed3d0f7f02e013da to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## generate Certificate Signing Request (CSR) with certutil | |
$FedServiceName = "sts.clancampbell.id.au" | |
$RequestPolicy = @" | |
[Version] | |
Signature="`$Windows NT$" | |
[NewRequest] | |
Subject = "CN=$FedServiceName,OU=ICT,O=ClanCampbell,L=Brisbane,S=Queensland,C=AU" | |
Exportable = FALSE ; TRUE = Private key is exportable | |
KeyLength = 2048 ; Valid key sizes: 1024, 2048, 4096, 8192, 16384 | |
KeySpec = 1 ; Key Exchange – Required for encryption | |
KeyUsage = 0xA0 ; Digital Signature, Key Encipherment | |
MachineKeySet = True | |
ProviderName = "Microsoft RSA SChannel Cryptographic Provider" | |
FriendlyName = "ADFS | |
RequestType = PKCS10 | |
[Extensions] | |
; Subject Alternative Names (SANs) | |
2.5.29.17 = "{text}" | |
_continue_ = "dns=$FedServiceName&" | |
_continue_ = "dns=enterpriseregistration.clancampbell.id.au&" | |
"@ | |
$CertsDir = "C:\Admin\Certs" | |
if ( ! (Test-Path -Path $CertsDir -PathType Container)) { | |
mkdir -p $CertsDir | |
} | |
$RequestPolicy > $CertsDir\$FedServiceName.inf | |
certreq -new $CertsDir\$FedServiceName.inf $CertsDir\$FedServiceName.req |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment