PSPKI icon indicating copy to clipboard operation
PSPKI copied to clipboard

PowerShell PKI Module

Results 63 PSPKI issues
Sort by recently updated
recently updated
newest added

Submitting an enhancement request to pull attributes and extensions of pending certificate requests in the Get-PendingRequest (and similar cmdlets if they exist). I found #82 , where someone had a...

wontfix

The function New-SelfSignedCertificateEx does not allow for creating CSRs. Neither does the SysadminsLV.PKI.Cryptography.X509Certificate.X509CertificateBuilder class. So it would be great to have this function.

enhancement

Hi Vadims as discussed, I propose to implement a new parameter to allow for sorting. -OrderBy defines the property used to sort. Only some attributes are possible, specified as enum....

enhancement

I am trying to generate a self-signed certificate with ECDSA key pair on a smartcard by running this New-SelfSignedCertificateEx command on my Windows 10 machine: ```powershell New-SelfSignedCertificateEx -Subject "CN=John D"...

question

When I use the Convert-PfxToPem cmdlet, it fails with an error. Command: ``` $pwd = ConvertTo-SecureString -string "AAAAA" -AsPlainText -Force Convert-PfxToPem -InputFile c:\test.pfx -OutputFile c:\test.pem -Password $pwd ``` Output: ```...

enhancement
Investigate

Using the following command together with a policy.inf file allows to "change" some content of a CSR: `CertReq -f -q –config "MyCA\Test Root CA" -cert 88884808333333336960447CE1731EA6654345676 –policy .\MyFriends.CSR .\MyCPS.inf .\MyUpdated.csr`...

enhancement

Whenever I use `Connect-CertificationAuthority -ComputerName {FQDN}` to a CA in a different forest I receive an output without the displayname: ``` DisplayName ComputerName IsAccessible ServiceStatus Type ----------- ------------ ------------ -------------...

Research

$NewTemplateName = "Tenant14OCSPResponseSigning" $ACLs = Get-CertificateTemplate -Name $NewTemplateName | Get-CertificateTemplateAcl #

It seems like there is some change in Powershell 7.4+ that causes the Get-CertificationAuthorityAcl to no longer return data. Expected behavior (using PSPKI 4.2.0 running on Powershell 7.2.18 on Windows...

Research

Is the Private Key Flag (msPKI-Private-Key-Flag) attribute available in the object returned by the Get-CertificateTemplate cmdlet in the PSPKI module?

question