IIS7 appcmd list sites: is there a wildcard to filter on (for i.e. all bindings on port 443)

appcmdiis-7iis-7.5

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

Best Answer

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