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.
IIS からのサイトのすべてのバインドを表示できる powershell スクリプトまたは vbscript はありますか?
Get-WebBindingコマンドレット(IIS 7以降)を試してください。
Get-WebBinding
Import-Module WebAdministration Get-WebBinding
これを試して:
Import-Module WebAdministration $Websites = Get-ChildItem IIS:\Sites $site = $websites $site.bindings.Collection