Skip to content

Instantly share code, notes, and snippets.

@lantrix
Created May 14, 2015 06:50
Show Gist options
  • Select an option

  • Save lantrix/898f54507abdb60767e5 to your computer and use it in GitHub Desktop.

Select an option

Save lantrix/898f54507abdb60767e5 to your computer and use it in GitHub Desktop.
Powershell to show all IIS site details
import-module webadministration; get-website | select name,id,state,physicalpath,applicationPool,
@{n="Bindings"; e= { ($_.bindings | select -expa collection) -join ';' }} ,
@{n="LogFile";e={ $_.logfile | select -expa directory}},
@{n="attributes"; e={($_.attributes | % { $_.name + "=" + $_.value }) -join ';' }} | Sort-Object id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment