Export-PfxCertificate (pki) (2024)

  • Reference
Module:
pki

Exports a certificate or a PFXData object to a Personal Information Exchange (PFX) file.

Syntax

Export-PfxCertificate [-NoProperties] [-NoClobber] [-Force] [-CryptoAlgorithmOption <CryptoAlgorithmOptions>] [-ChainOption <ExportChainOption>] [-ProtectTo <String[]>] [-Password <SecureString>] [-FilePath] <String> [-PFXData] <PfxData> [-WhatIf] [-Confirm] [<CommonParameters>]
Export-PfxCertificate [-NoProperties] [-NoClobber] [-Force] [-CryptoAlgorithmOption <CryptoAlgorithmOptions>] [-ChainOption <ExportChainOption>] [-ProtectTo <String[]>] [-Password <SecureString>] [-FilePath] <String> [-Cert] <Certificate> [-WhatIf] [-Confirm] [<CommonParameters>]

Description

The Export-PfxCertificate cmdlet exports a certificate or a PFXData object to a PersonalInformation Exchange (PFX) file. By default, extended properties and the entire chain are exported.

Delegation may be required when using this cmdlet with Windows PowerShell remoting and changinguser configuration.

Examples

EXAMPLE 1

$mypwd = ConvertTo-SecureString -String '1234' -Force -AsPlainTextGet-ChildItem -Path Cert:\LocalMachine\My\5F98EBBFE735CDDAE00E33E0FD69050EF9220254 | Export-PfxCertificate -FilePath C:\mypfx.pfx -Password $mypwd

This example exports a certificate from the local machine store to a PFX file which includes theentire chain and all external properties.

EXAMPLE 2

$mypwd = ConvertTo-SecureString -String '1234' -Force -AsPlainTextGet-ChildItem -Path Cert:\LocalMachine\My | Export-PfxCertificate -FilePath C:\mypfx.pfx -Password $mypwd

This example exports all certificates under the My store for the machine account into one file namedmypfx.pfx. In order for this cmdlet to succeed, all keys need to be exportable.

EXAMPLE 3

powershell$mypwd = ConvertTo-SecureString -String '1234' -Force -AsPlainText$params = @{ Cert = 'Cert:\CurrentUser\My\5F98EBBFE735CDDAE00E33E0FD69050EF9220254' FilePath = 'C:\myexport.pfx' ChainOption = 'EndEntityCertOnly' NoProperties = $true Password = $mypwd}Export-PfxCertificate @params

This example exports a certificate from the current user store with no chain and no externalproperties

EXAMPLE 4

$a = Get-ChildItem -Path Cert:\LocalMachine\My$params = @{ Cert = $a[1] FilePath = 'C:\myexport.pfx' ProtectTo = 'billb99', 'johnj99'}Export-PfxCertificate @params

This example exports a certificate from the local machine store. Both user accounts, billb99 andjohnj99, can access this PFX with no password. A Windows Server 2012 or later domain controller isrequired for key distribution.

EXAMPLE 5

$a = Get-ChildItem -Path Cert:\LocalMachine\My$mypwd = ConvertTo-SecureString -String '1234' -Force -AsPlainText$params = @{ Cert = $a[1] FilePath = 'C:\myexport.pfx' ProtectTo = 'billb99', '\johnj99' Password = $mypwd}Export-PfxCertificate @params

This example exports a certificate from the local machine store. Both user accounts, johnj99 andbillb99, can access this PFX file with no password. For everyone else, they need to use 1234 as apassword. A Windows Server 2012 or later domain controller is required for key distribution.

EXAMPLE 6

$NewPwd = ConvertTo-SecureString -String 'abcd' -Force -AsPlainText$mypfx = Get-PfxData -FilePath C:\mypfx.pfx -Password $OldpwdExport-PfxCertificate -PFXData $mypfx -FilePath C:\mypfx2.pfx -Password $NewPwd

This example changes an existing password for a PFX file from $OldPwd to $NewPwd.

Parameters

-Cert

Specifies the path to the certificate to be exported.

Type:Microsoft.CertificateServices.Commands.Certificate
Aliases:PsPath
Position:0
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-ChainOption

Specifies the options for building a chain when exporting certificates.The acceptable values for this parameter are:

  • BuildChain: Certificate chain for all end entity certificates will be built and included in theexport. This option is valid for both PfxData and Cert parameters. In the case ofPfxData parameter, the collection of all PFX certificates will be used as an additionalstore.
  • EndEntityCertOnly: Only end entity certificates are exported without any chain. This option isvalid for both the PfxData and the Cert parameters.
  • PfxDataOnly: Certificates contained in PFXData objects will be exported with no chainbuilding. This option is only valid when the PfxData parameter is used.
Type:Microsoft.CertificateServices.Commands.ExportChainOption
Accepted values:BuildChain, EndEntityCertOnly, PfxDataOnly
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type:SwitchParameter
Aliases:cf
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-CryptoAlgorithmOption

Specifies the algorithm for encrypting private keys within the PFX file. If this parameter is notspecified, the default is TripleDES_SHA1. The acceptable values for this parameter are:

  • TripleDES_SHA1: Private keys will be encrypted in the PFX file using Triple DES encryption.
  • AES256_SHA256: Private keys will be encrypted in the PFX file using AES-256 encryption.
Type:Microsoft.CertificateServices.Commands.CryptoAlgorithmOptions
Accepted values:TripleDES_SHA1, AES256_SHA256
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-FilePath

Specifies the path for the PFX file to be exported.

Type:String
Position:1
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-Force

Specifies that the provided PFX file should be overwritten, even if the Read-only attribute is seton the file. By default, this cmdlet overwrites existing PFX files without warning, unless theRead-only or hidden attribute is set or the NoClobber parameter is used in the cmdlet.

Type:Microsoft.CertificateServices.Commands.CryptoAlgorithmOptions
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-NoClobber

Specifies that if the PFX file already exists, it should not be overwritten. This parameter takesprecedence over the Force parameter, which permits this cmdlet to overwrite a PFX file even ifit has the Read-only attribute set.

Type:Microsoft.CertificateServices.Commands.CryptoAlgorithmOptions
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-NoProperties

Specifies whether the extended properties for a certificate are exported. If this parameter isspecified, then extended properties are not included with the export. By default, all extendedproperties are included in the exported file.

Type:Microsoft.CertificateServices.Commands.CryptoAlgorithmOptions
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Password

Specifies the password used to protect the exported PFX file. The password should be in the form ofsecure string. Either the ProtectTo or this parameter must be specified, or an error will bedisplayed.

Type:System.SecureString
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-PFXData

Specifies a PFXData object that contains one or more certificates from a PFX file.

Type:PfxData
Position:0
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-ProtectTo

Specifies an array of strings for the username or group name that can access the private key of PFXfile without any password. This requires a Windows Server 2012 or later domain controller. Eitherthe Password or this parameter must be specified, or an error will be displayed.

Type:String[]
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-WhatIf

Shows what would happen if the cmdlet runs.The cmdlet is not run.

Type:Microsoft.CertificateServices.Commands.CryptoAlgorithmOptions
Aliases:wi
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Inputs

X509Certificate2[]

The X509Certificate2[] object is an array of certificate objects.

Outputs

FileInfo

The FileInfo object contains the information about the PFX file.

  • ConvertTo-SecureString
  • Get-ChildItem
  • Get-PfxData
  • Import-PfxCertificate
Export-PfxCertificate (pki) (2024)
Top Articles
Innovative Recruitment Methods for Finance & Accounting Jobs | LRO Staffing
A Money Behaviorist Explains Why UBI Can Positively Support Mental Health
Fiskars X27 Kloofbijl - 92 cm | bol
Jail Inquiry | Polk County Sheriff's Office
Manhattan Prep Lsat Forum
Algebra Calculator Mathway
What Are the Best Cal State Schools? | BestColleges
T Mobile Rival Crossword Clue
Sprague Brook Park Camping Reservations
Tyrunt
Music Archives | Hotel Grand Bach - Hotel GrandBach
biBERK Business Insurance Provides Essential Insights on Liquor Store Risk Management and Insurance Considerations
Items/Tm/Hm cheats for Pokemon FireRed on GBA
Indiana Immediate Care.webpay.md
Jack Daniels Pop Tarts
Classroom 6x: A Game Changer In The Educational Landscape
ocala cars & trucks - by owner - craigslist
Walmart Windshield Wiper Blades
Conan Exiles Thrall Master Build: Best Attributes, Armor, Skills, More
Mzinchaleft
All Obituaries | Buie's Funeral Home | Raeford NC funeral home and cremation
Glenda Mitchell Law Firm: Law Firm Profile
Scout Shop Massapequa
Sea To Dallas Google Flights
Anotherdeadfairy
F45 Training O'fallon Il Photos
Sofia the baddie dog
Page 2383 – Christianity Today
Wood Chipper Rental Menards
Radical Red Ability Pill
Hwy 57 Nursery Michie Tn
Rek Funerals
Little Einsteins Transcript
Greyson Alexander Thorn
Nurofen 400mg Tabletten (24 stuks) | De Online Drogist
Vlacs Maestro Login
Mosley Lane Candles
Account Now Login In
Mg Char Grill
Bozjan Platinum Coins
Whas Golf Card
Supermarkt Amsterdam - Openingstijden, Folder met alle Aanbiedingen
How to Draw a Sailboat: 7 Steps (with Pictures) - wikiHow
Clausen's Car Wash
US-amerikanisches Fernsehen 2023 in Deutschland schauen
Is Ameriprise A Pyramid Scheme
Ghareeb Nawaz Texas Menu
Yale College Confidential 2027
Tacos Diego Hugoton Ks
Where and How to Watch Sound of Freedom | Angel Studios
Latest Posts
Article information

Author: Prof. Nancy Dach

Last Updated:

Views: 6363

Rating: 4.7 / 5 (77 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Prof. Nancy Dach

Birthday: 1993-08-23

Address: 569 Waelchi Ports, South Blainebury, LA 11589

Phone: +9958996486049

Job: Sales Manager

Hobby: Web surfing, Scuba diving, Mountaineering, Writing, Sailing, Dance, Blacksmithing

Introduction: My name is Prof. Nancy Dach, I am a lively, joyous, courageous, lovely, tender, charming, open person who loves writing and wants to share my knowledge and understanding with you.