-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use Custom CSR #191
Comments
If you generated a private key and CSR file outside of ACMESharp you would import them (each in PEM format) as follows: New-ACMECertificate -IdentifierRef my-dns-identifier -KeyPemFile your-private-key.pem -CsrPemFile your-csr.pem -Alias my-shiny-new-cert Where |
Question added to the FAQ. |
That looks great, Is there a way of adding Organization information to ACMESharp to avoid creating outside of ACMESharp. I think i would like that better. also really want to say this is an awesome application. Great Job. |
You can pass in a hashtable to the So for example, in PowerShell, you can define a hashtable and assign it to a variable and pass it in as a parameter, or you can even define it inline: New-ACMECertificate ... -CsrDetails @{ Organization = "My Company, Inc."; OrganizationUnit = "My Dept" } |
Awsome, Thank you so much for your help. |
Np, if everything is working for you, please update/close the ticket. |
another private questionWhere/which folder, should I put my-private-key.pem, and my-csr.pem in? |
You can use full paths when you specify the PEM files. You can place them wherever you like as long as ACMESharp can read the files under the current context. |
In most of the online CSR Generate tools and IIS7.0+ Certification generate tools generate the csr file or key file with I submit a After I press the `New-ACMECertificate : Missing specified RSA Key file path
Why? the file path is true and correct C:\cert\test.ug.co_key.pem The full paths surrounded by double quotation marks. |
I want to confirm if the key's name in the obj param is precise definited or not? |
I´m currently using the parameter -CsrDetails in order to put more information on the certificate.
Awesome work ebekker!! Keep going with it! |
How would one use a custom CSR to supply Organization information for the certificate. Is this an option with ACMESharp on a windows server? Or maybe can we sent the Organization information while creating the cert in Powershell
The text was updated successfully, but these errors were encountered: