Search code examples
iispowershellbindingsites

Display all bindings of site from IIS


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


Solution

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

    Import-Module WebAdministration
    Get-WebBinding