IIS7 appcmd 列出站点:是否有通配符可以过滤(例如端口 443 上的所有绑定)?

IIS7 appcmd 列出站点:是否有通配符可以过滤(例如端口 443 上的所有绑定)?

在 IIS7 中,是否可以过滤 appcmd list sites 命令的结果,例如,所有在端口 443 上运行的站点?

例如:

/appcmd list sites /bindings:http://216.123.123.123:443:*wildcard

事实上,我只能过滤精确的绑定,例如:

/appcmd list sites /bindings:http://216.123.123.123:443:some.hostheader.com

答案1

不在 AppCmd 中,但为什么不将其放入 FINDSTR 中,例如:

appcmd 列出站点 | findstr /spin hostheader.com

或 appcmd 列出站点 | findstr /spin 216.123.123.123:443

答案2

是的,你可以使用 AppCmd 执行此操作:
%windir%\system32\inetsrv\AppCmd.exe list site /bindings:http/*:8315:

相关内容