diff options
author | heqnx <root@heqnx.com> | 2025-07-16 20:44:42 +0300 |
---|---|---|
committer | heqnx <root@heqnx.com> | 2025-07-16 20:44:42 +0300 |
commit | 8dc5629bf672e882372fb9f83520c351debbfb37 (patch) | |
tree | 584c01c08a93bccc433cbeae2206587bdb360162 | |
parent | 6b73a149e440592e988d97e41353aedb64cc86cb (diff) | |
download | ansible-active-directory-range-8dc5629bf672e882372fb9f83520c351debbfb37.tar.gz ansible-active-directory-range-8dc5629bf672e882372fb9f83520c351debbfb37.zip |
removing default web site in iis
-rw-r--r-- | ansible/scripts/setup-websql.ps1 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ansible/scripts/setup-websql.ps1 b/ansible/scripts/setup-websql.ps1 index 77377c3..94367f5 100644 --- a/ansible/scripts/setup-websql.ps1 +++ b/ansible/scripts/setup-websql.ps1 @@ -85,6 +85,8 @@ try { Write-Host "[err] Failed to install IIS and ASP.NET" } +Remove-WebSite -Name "Default Web Site" + @" using System; using System.IO; |