Sign in
My Nuggets
Tags
CA
Certificate Authority
export certificate pfx powershell
makecert.exe
p7b
pfx store powershell
pkcs7
powershell
powershell ISignerCertificate PrivateKey KSP
signedcms
X509Certificate2
X509certificate2Collection
X509Enrollment
X509Store
Browse by Tags
TechNet Blogs
>
My Nuggets
>
All Tags
>
pkcs7
Tagged Content List
Blog Post:
Adding certificates for a serialized store (sst) file to an actual physical store
VishalAgarwal
In my previous post I used the CMS type to open a PKCS7. Apparently X509Certificate2Collection Import method can also be used to open up a PKCS7. This would be far more simpler then using CMS. Additionally, you might be asked to add the certificates you obtained from PKCS7 file or a serialized store...
on
13 Aug 2009
Blog Post:
PKCS7 (p7b) bag of certificates and powershell
VishalAgarwal
Recently I was asked how to extract the certificates within a PKCS7 (p7b) files using powershell. After a little research the following seems to work fine: [reflection.assembly]::LoadWithPartialName("System.Security") $data = [System.IO.File]::ReadAllBytes("certificates.p7b") $cms = new-object system...
on
30 Apr 2009
Page 1 of 1 (2 items)