IIS-SSL 设置证书 appcmd命令

关键字:appcmd.exe 创建站点|iis8.5 cmd 设置证书

AppCmd官方用法说明 Getting Started with AppCmd.exe

https://docs.microsoft.com/en-us/iis/get-started/getting-started-with-iis/getting-started-with-appcmdexe

使用方法

appcmd add site /name:"My New Site" /bindings:http/*:81:

使用绑定创建新站点“我的新站点”,并自动生成站点 ID。创建后,该新站点不包含任何应用程序。

appcmd add site /name:"My New Site" /id:2 /bindings:http/*:81: /physicalPath:"c:\inetpub\mynewsite"

使用指定的 ID 和绑定创建新站点“我的新站点”。系统将自动创建根虚拟目录指向指定物理路径的根应用程序。

appcmd add site /name:"My New Site" /id:2 /bindings:http/*:81:  
/cygdrive/c/Windows/System32/inetsrv/appcmd.exe add site /name:"2.test.miduonet.com" /bindings:http/*:20000:

使用指定的 ID 和绑定创建新站点“我的新站点”。创建后,新站点中不包含任何应用程序。

appcmd add site /name:"My New Site" /id:2 /bindings:http://*:81

使用指定的好记绑定创建一个新站点“我的新站点”,以便在端口 81 上侦听对任何域名的 http 请求。

appcmd add site /name:"My New Site" /id:2 /bindings:http://www.domain.com:80

使用指定的好记绑定创建一个新站点“我的新站点”,以便在端口 80 上侦听对 www.domain.com 的 http 请求。

https://blog.imdst.com/p/e919a08f-7f3b-41de-b5e5-ac65cc282478/


使用appcmd命令创建iis站点及应用程序池

https://www.cnblogs.com/zzgblog/p/10093720.html

http://IIS7 全新管理工具AppCmd.exe的命令使用实例分享

https://www.jb51.net/article/36024.htm

如何使用cmd命令脚本开始创建网站?

https://blog.csdn.net/asfuyao/article/details/17960081

【IIS】-How to delete old ssl certificate IIS

Issue:you need to delete an old or expired certificate from an IIS Web Server (IIS 7 through IIS 8).

Solution:

1) Open Internet Information Service (IIS) Manager
2) Select Web Server > Click Server Certificates
3) Right click the certificate and click Remove

delete old ssl certificate IIS

The above steps will remove the certificate from the server’s personal certificate store. It’s important to note that your IIS server may still be serving the old certificate despite it being deleted.