Invoke-GenerateChainPem¶
Synopsis¶
Combine private key, signed certificate and/or root certificate chain into a single PEM file.
Syntax¶
Invoke-GenerateChainPem [-outDirPath] <String> [-keyFilePath] <String> [-crtFilePath] <String> [-rootCaFilePath] <String>
Description¶
The Invoke-GenerateChainPem
cmdlet takes in private key, signed certificate and/or root certificate files and combine them into a single PEM file.
Examples¶
Example 1¶
Invoke-GenerateChainPem -outDirPath ".\certificates" -keyFilePath ".\certificates\sfo-vrli01.sfo.rainpole.io.key" -crtFilePath ".\certificates\sfo-vrli01.sfo.rainpole.io.crt" -rootCaFilePath .\certificates\rpl-ad01.rainpole.io-rootCA.pem"
This example will combine sfo-vrli01.sfo.rainpole.io's private key, signed certificate and rpl0-ad01's root chain certificate into single sfo-vrli01sfo-vrli01.sfo.rainpole.io.pem file.
Example 2¶
Invoke-GenerateChainPem -outDirPath ".\certificates" -crtFilePath ".\certificates\sfo-vrli01.sfo.rainpole.io.crt" -rootCaFilePath ".\certificates\sfo-rainpole-ca01.sfo.rainpole.io-rootCA.pem"
This example will combine sfo-vrli01.sfo.rainpole.io's signed certificate and sfo-rainpole-ca01's root chain certificate into single sfo-vrli01sfo-vrli01.sfo.rainpole.io.pem file.
Example 3¶
Invoke-GenerateChainPem -outDirPath ".\certificates" -keyFilePath ".\certificates\sfo-vrli01.sfo.rainpole.io.key" -crtFilePath ".\certificates\sfo-vrli01.sfo.rainpole.io.crt"
This example will combine sfo-vrli01.sfo.rainpole.io's private key and signed certificate into single sfo-vrli01sfo-vrli01.sfo.rainpole.io.pem file.
Parameters¶
-outDirPath¶
The directory path to store the combined certificate bundle file.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-keyFilePath¶
The full file path for the private key file.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-crtFilePath¶
The full file path for the signed certificate file.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-rootCaFilePath¶
The full file path for the Microsoft Certificate Authority root certificate file.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 4
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Common Parameters¶
This cmdlet supports the common parameters: -Debug
, -ErrorAction
, -ErrorVariable
, -InformationAction
, -InformationVariable
, -OutVariable
, -OutBuffer
, -PipelineVariable
, -Verbose
, -WarningAction
, and -WarningVariable
. For more information, see about_CommonParameters.