Skip to content

Instantly share code, notes, and snippets.

@lisysolution
Created August 26, 2015 13:23
Show Gist options
  • Save lisysolution/adc2b74c8de2458214dc to your computer and use it in GitHub Desktop.
Save lisysolution/adc2b74c8de2458214dc to your computer and use it in GitHub Desktop.
파워쉘 - IIS 관리
# ==========================
# IIS 사이트 일괄 삭제
# ==========================
Import-Module webadministration
foreach ($i in get-childitem IIS:\Sites\ -Name) {remove-item ("IIS:Sites\"+$i) -R}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment