“The parameter is incorrect.” error using netsh http add sslcert

后端 未结 18 1519
后悔当初
后悔当初 2020-12-14 05:47

Following the instructions on \"How to: Configure a Port with an SSL Certificate\" in this link: http://msdn.microsoft.com/en-us/library/ms733791.aspx, I entered this comman

18条回答
  •  囚心锁ツ
    2020-12-14 06:13

    Looking at the syntax for the netsh command, I saw this example:

    add sslcert ipport=1.1.1.1:443 certhash=0102030405060708090A0B0C0D0E0F1011121314 appid={00112233-4455-6677-8899-AABBCCDDEEFF}
    

    By the looks of it, your problem is that you're doing

    ipport:10.141.146.227:7001
          ^
    

    as opposed to

    ipport=10.141.146.227:7001
          ^
    

提交回复
热议问题