Import-Certificate

Imports one or more certificates into a certificate store.

Syntax

Import-Certificate
      [-FilePath] <String>
      [-CertStoreLocation <String>]
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]

Description

The Import-Certificate cmdlet imports one or more certificates into a certificate store.

Examples

EXAMPLE 1

PS C:\>$file = ( Get-ChildItem -Path C:\files\root.cer )



PS C:\>$file | Import-Certificate -CertStoreLocation cert:\CurrentUser\Root

This example imports the certificate from the file into the root store of the current user.

EXAMPLE 2

PS C:\>Set-Location -Path cert:\CurrentUser\My



PS C:\>Import-Certificate -Filepath "C:\files\intermediate.cert"

This example imports the certificate from the file into the current store.

Required Parameters

-FilePath

Specifies the path to a certificate file to be imported. Acceptable formats include .sst, .p7b, and .cert files. If the file contains multiple certificates, then each certificate will be imported to the destination store.

Type: String
Aliases: FullName
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

Optional Parameters

-CertStoreLocation

Specifies the path to the certificate store where the certificates will be imported. If the path to the certificate store is not specified, then the current store is used.

Type: String
Position: Named
Default value: None
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
Accept pipeline input: False
Accept wildcard characters: False
-WhatIf

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

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

Inputs

System.String

A String containing the file path.

Outputs

System.Security.Cryptography.X509Certificates.X509Certificate2[]

The output is an array of X509Certificate2[] objects.