![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
|
Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
br> br> |
| |||||||
![]() |
| | Thread Tools | Display Modes |
| | #1 (permalink) |
| Guest | Certificate Provider I'm looking for documentation on the export method associated with an X509 Certificate object defined in the subject Powershell provider. Or for any of the objects methods/properties. I can see the available methods/properties by tabing after the object. string, I just can't find any of the documentation on their parms. |
My System Specs![]() |
| | #2 (permalink) |
| Guest | Re: Certificate Provider Use Get-Member (alias 'gm') $myCert = Get-PfxCertificate <cert's path> # All members $myCert | get-member | select Name, TypeName, Definition | format-list | more # Methods $myCert | get-member -type Method | select Name, TypeName, Definition | format-list | more # Properties $myCert | get-member -type Property | select Name, TypeName, Definition | format-list | more # Export method $myCert | get-member Export | select Name, TypeName, Definition | format-list -- Kiron |
My System Specs![]() |
| | #3 (permalink) | ||||||||||||
| Guest | Re: Certificate Provider On Sep 5, 9:22 am, Joe G <J...@xxxxxx> wrote:
| ||||||||||||
My System Specs![]() | |||||||||||||
| | #4 (permalink) | ||||||||||||
| Guest | Re: Certificate Provider Would you know if there is a way to get the Enumerations available? I've been trying to use the [System.Security.Cryptography.X509Certificates.X509ContentType.Pfx] to no avail. "Kiron" wrote:
| ||||||||||||
My System Specs![]() | |||||||||||||
| | #5 (permalink) |
| Guest | Re: Certificate Provider "Unknown, Cert, SerializedCert, Pfx, Pkcs12, SerializedStore, Pkcs7, Authenticode" By assigning an empty string to the property PowerShell is kind enough to list the enumeration values in the error message: Try this: [System.Security.Cryptography.X509Certificates.X509ContentType]: fx = ""-- Kiron |
My System Specs![]() |
| | #6 (permalink) | ||||||||||||
| Guest | Re: Certificate Provider Thanks Kiron. It's the double colon delimiter that I always seem to forget. "Kiron" wrote:
| ||||||||||||
My System Specs![]() | |||||||||||||
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Select Certificate message, but no certificate to select | MikeS | Vista security | 1 | 02-16-2008 01:22 PM |
| WMI Provider | Floridaguy | Vista mail | 13 | 12-14-2007 10:23 AM |
| IIS 6.0 Provider vs Cmdlet | vhk | PowerShell | 12 | 10-21-2007 09:28 PM |
| WMI Provider | Floridaguy | Vista mail | 0 | 10-12-2007 09:54 AM |
| which provider is best ? | acejase | Vista General | 3 | 06-18-2007 12:21 PM |