我想以Reserve the port
编程port binding
方式使用以下代码:
private void PortReserve()
{
try
{
System.Diagnostics.Process process = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new
System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
startInfo.FileName = "cmd.exe";
startInfo.UseShellExecute = true;
startInfo.Arguments = @"/c netsh http add urlacl url=https://127.0.0.1:8083/ user=EVERYONE";
process.StartInfo = startInfo;
process.Start();
}
catch (Exception ex)
{
throw ex;
}}
对于端口绑定:将参数替换startInfo.Arguments
为@"/c netsh http add sslcert ipport=127.0.0.1:8083 certhash=df03c4b0b32f3302a3b70abe6b5dfd864d0986a5 appid={00112233-4455-6677-8899-CCBBCCDDEEFF} clientcertnegotiation=enable";
上面的命令在 win和machine 中运行良好7
,但是当它开始抛出错误时:
win servers
8
Win xp
CMD
The following command was not found http add urlacl url=https://127.0.0.1:8083 user=Everyone
我检查了mmc
所有成功导入的证书machine
。
在这种情况下我该怎么办?