Difference between revisions of "Powershell get certificates"
Jump to navigation
Jump to search
(Created page with " ``` $store = New-Object System.Security.Cryptography.X509Certificates.X509Store([System.Security.Cryptography.X509Certificates.StoreName]::My,"localmachine") $store.Open("Max...") |
(No difference)
|
Revision as of 03:51, 20 September 2023
$store = New-Object System.Security.Cryptography.X509Certificates.X509Store([System.Security.Cryptography.X509Certificates.StoreName]::My,"localmachine") $store.Open("MaxAllowed") $cert = $store.Certificates | ?{$_.subject -match "^CN=asdasd"} $cert.PrivateKey.ToXmlString($false) $store.Close()