Skip to content

Instantly share code, notes, and snippets.

@paschott
Created November 24, 2020 22:38
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save paschott/966f5ae8b1eda5efce874914d95aafd9 to your computer and use it in GitHub Desktop.
Save paschott/966f5ae8b1eda5efce874914d95aafd9 to your computer and use it in GitHub Desktop.
PowerShell script to generate a Certificate Request for a server using certain criteria
#Create new Certificate Request for SQL Server security
# Should be made into a function at some point
# Needs to be able to handle Cluster names/IP addresses
#Set location of the server
$Location = "City"
$State = "State"
$OU = "OU"
$Company = "Organization"
$IPv4Address = (Get-NetIPAddress -AddressState Preferred -AddressFamily IPv4 | Where-object IPAddress -ne "127.0.0.1" | Select-Object IPAddress -First 1 -ExpandProperty IPAddress)
#Create C:\CertificateRequest folder if one does not exist
$CertFolder = "C:\CertificateRequest"
if (!(Test-Path $CertFolder)) {
New-Item -Path $CertFolder -Type Directory
}
#Get the FQDN, Computer Name, and IPv4 address
$FQDN = [System.Net.DNS]::GetHostByName($Null).HostName
$MachineName = $env:ComputerName
$CertName = "$FQDN"
$FriendlyName = "MSSQL Cert for Windows Server $FQDN"
$dns1 = $MachineName
$dns2 = $FQDN
$dns3 = $IPv4Address
$ipaddress = $IPv4Address
Write-Host "Creating CertificateRequest(CSR) for $CertName `r "
#Create Cert
$CSRPath = "$CertFolder\$($CertName).csr"
$INFPath = "$CertFolder\$($CertName).inf"
$Signature = '$Windows NT$'
$INF =
@"
[Version]
Signature= "$Signature"
[NewRequest]
Subject = "CN=$CertName, OU=$OU, O=$Company, L=$Location, S=$State, C=US"
FriendlyName = "$FriendlyName"
KeySpec = AT_KEYEXCHANGE
KeyLength = 2048
Exportable = TRUE
MachineKeySet = TRUE
SMIME = False
PrivateKeyArchive = FALSE
UserProtected = FALSE
UseExistingKeySet = FALSE
ProviderName = "Microsoft RSA SChannel Cryptographic Provider"
ProviderType = 12
RequestType = PKCS10
KeyUsage = 0xa0
[EnhancedKeyUsageExtension]
OID=1.3.6.1.5.5.7.3.1
[Extensions]
2.5.29.17 = "{text}"
_continue_ = "dns=$dns1&"
_continue_ = "dns=$dns2&"
_continue_ = "dns=$dns3&"
_continue_ = "ipaddress=$ipaddress&"
"@
if (!(test-path $CSRPath)) {
write-Host "Certificate Request is being generated `r "
$INF | out-file -filepath $INFPath -force
& certreq.exe -new $INFPath $CSRPath
}
write-output "Certificate Request has been generated"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment