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
YubiKey offline settings :: YubiOn Portal Guide
Starting At 50 How To Still Retire A Millionaire
Teleport Pads Disabled In Garden
How To Add An ESIM With A QR Code - Easy Guide | ESIM2Fly.com
Lesson 1 Homework 5.5 Answer Key
Courses In Touch
Jiffy Lube D'iberville Reviews
Stretchmark Camouflage Highland Park
Bella 700 RAID - Powerboat and RIB
Cheap Manicure Near Me
Lpga Scores Espn
Stephanie Palomares Obituary
Beacon Schneider La Porte
Marshfieldnewsherald Obituary
Citibank Branch Locations In Orlando Florida
Meg 2: The Trench Showtimes Near Phoenix Theatres Laurel Park
Mychart University Of Iowa Hospital
Groce Funeral Home Obituaries Lake Julian
Varsity Competition Results 2022
Cheley Packing List
Desert Cabinet Odds And Ends
Myapps Tesla Ultipro Sign In
0Gomovies Online
Lms Ensign Login
Pbr Wisconsin Baseball
Gas Prices Sam
Burlington Antioch Ca
Hot Fuzz Putlocker
Senior Tax Analyst Vs Master Tax Advisor
Walmart Tire Center York Pa
Best Zoroark Build Unite
Craigslist Rooms For Rent Winston-Salem Nc
belarus studio│bingサジェスト検索結果履歴│
E 77 · Baureihe 177 · bay. EG3 · preuß. EG 701–25 Fotos
Shaanxi Y-9 Medium-Lift Transport Aircraft
Farmers And Merchants Bank Broadway Va
Michael Zhang Cooley
Different Types of Conditional Sentences in English: Definition and Examples | Proofreading
Pick34 Free Zone
3054934776
OPINION: My grandfather was Delaware's last Republican governor. I'm supporting Harris
Hanco*ck County Mugshots Busted Newspaper
Dr Yoel Rojas Google Reviews
Craigslist Motorcycles For Sale Albuquerque
northern virginia apartments / housing for rent - craigslist
Ncqa Report Cards
Soulbound (Return of the Elves, #1)
Espn Mbb Scores
Jennifer Maker Website
Round Cake Pans Walmart
Latest Posts
Article information

Author: Duane Harber

Last Updated:

Views: 6033

Rating: 4 / 5 (71 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Duane Harber

Birthday: 1999-10-17

Address: Apt. 404 9899 Magnolia Roads, Port Royceville, ID 78186

Phone: +186911129794335

Job: Human Hospitality Planner

Hobby: Listening to music, Orienteering, Knapping, Dance, Mountain biking, Fishing, Pottery

Introduction: My name is Duane Harber, I am a modern, clever, handsome, fair, agreeable, inexpensive, beautiful person who loves writing and wants to share my knowledge and understanding with you.