Reputation: 29986
I tried to configure a Port with an SSL certificate, this could be achieved by Httpcfg.ext tool, but I failed to find in my windows 10, I try to download it from http://www.microsoft.com/en-us/download/details.aspx?id=18546, but it only supports Windows XP, could you share us how to use Httpcfg.exe in Windows 10?
Upvotes: 4
Views: 4147
Reputation: 1893
HttpCfg.exe is not available for Windows 10. You may want to check out Configuring HTTP and HTTPS on MSDN. It states that httpcfg
is used on Windows XP and Windows Server 2003, whereas you should use netsh
for pretty much any Windows operating system from Vista on.
If you are looking to do this programmatically then you could investigate using the HTTP Server API.
Upvotes: 3