Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何 powershell 脚本或任何 vbscript 可以显示来自 IIS 的所有站点绑定?
尝试Get-WebBindingcmdlet(IIS 7 及更高版本):
Get-WebBinding
Import-Module WebAdministration Get-WebBinding
试试这个:
Import-Module WebAdministration $Websites = Get-ChildItem IIS:\Sites $site = $websites $site.bindings.Collection