質問

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