Вопрос

Is there any powershell script or any vbscript which can display all bindings of sites from IIS?

Это было полезно?

Решение

Try the Get-WebBinding cmdlet (IIS 7 and up):

Import-Module WebAdministration
Get-WebBinding

Другие советы

Try this:

Import-Module WebAdministration
$Websites = Get-ChildItem IIS:\Sites
$site = $websites
$site.bindings.Collection
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top