During requesting some file like “EZT75eDhDyx7SpDPgA01VNuOKVZLIF5WLWxRMjJ7rWQ” generated and it goes inside of my “.exe” file. I going to put “.exe” file inside of each domain, like:
“C:\wwwroot\domain1.com\.well-known\acme-challenge”
“C:\wwwroot\domain2.com\.well-known\acme-challenge”
Is there any command or code that help me having ssl for each domain without having “.exe” file inside of each domain.
Your command is creating a command line with arguments to be given to acme.exe. If you read the documentation for acme.exe, you can find out what these options mean and how they affect the program’s behavior.
I think the most likely thing is that you can supply multiple names with -d options (perhaps like -d domain1.com -d domain2.com instead of just -d domain1.com) in order to request a single certificate covering multiple domains—if that’s what you intended to do here.