Skip to content

Instantly share code, notes, and snippets.

@omidkrad
Last active August 24, 2021 21:24
Show Gist options
  • Save omidkrad/3b2fc56ee367892b75ac to your computer and use it in GitHub Desktop.
Save omidkrad/3b2fc56ee367892b75ac to your computer and use it in GitHub Desktop.
Delete IISExpress sites using PowerShell
Set-Alias appcmd "$env:ProgramFiles\IIS Express\appcmd.exe"
appcmd list site /text:SITE.NAME | % { appcmd delete site $_ }
# or remove IISExpress directory
Remove-Item -Recurse $env:USERPROFILE\Documents\IISExpress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment