Hi all,
I need some help using command line arguments with win-acme. I want to automate certificate creation with my own scripts, so I tried to understand the command line arguments but I'm missing some specificities.
For instance, I'm trying to create a certificate for two domains "ztb.fr" and "ztb-train.fr".
Here is the command line I'm calling :
wacs.exe --commonname *.ztb.fr --host .ztb.fr,.ztb-train.fr,ztb.fr,ztb-train.fr --store pemfiles --pemfilespath . --store pfxfile --pfxfilepath . --pfxpassword mypassword --dnsscript Scripts\myownscript.exe --validationmode dns-01 --validation script
That doesn't launch the process, I still get the main menu. When I select "M" option, I can see some of the command line parameters used as default values, but not all. For instance, the dnsscript is not taken into accound, I have to set it again. Sometimes I get a message "missing dnsscript or dnscreatescript".
Regarding the certificate creation, it defaults on the PEM option, but then it doesn't default to PFX option.
My goal is to get the PEM files AND the PFX file with a password. I DO NOT want it to try to add the scheduled task, and I DO NOT want the interactive execution, but a fully automated execution.
Someone could help me to achieve this ?
(I'm using latest version of win-acme to date)
Thanks !