3

In IIS7, is it possible to filter the results of the appcmd list sites command to, for example, all sites running on port 443?

For example:

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

As it is, I can only filter on the exact binding such as:

/appcmd list sites /bindings:http://216.123.123.123:443:some.hostheader.com
Ted
  • 248
  • 2
  • 5
  • 16

2 Answers2

7

Not in AppCmd but why not pipe it into FINDSTR, for example:

appcmd list sites | findstr /spin hostheader.com

or appcmd list sites | findstr /spin 216.123.123.123:443

3

Yes you can do this with AppCmd:
%windir%\system32\inetsrv\AppCmd.exe list site /bindings:http/*:8315:

voretaq7
  • 79,345
  • 17
  • 128
  • 213
soulcrshr
  • 31
  • 1