Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Firewall-Powershell

...

Code Block
languagepowershell
themeRDark
Install-WindowsFeature Web-Server
Install-WindowsFeature Web-WebServer

Install-WindowsFeature Web-Common-Http
Install-WindowsFeature Web-Default-Doc
Install-WindowsFeature Web-Dir-Browsing
Install-WindowsFeature Web-Http-Errors
Install-WindowsFeature Web-Static-Content
Install-WindowsFeature Web-Http-Redirect
 
Install-WindowsFeature Web-Health
Install-WindowsFeature Web-Http-Logging 
  
Install-WindowsFeature Web-Performance
Install-WindowsFeature Web-Stat-Compression
  
Install-WindowsFeature Web-Security
Install-WindowsFeature Web-Filtering
  
Install-WindowsFeature Web-App-Dev
Install-WindowsFeature Web-WebSockets
  
Install-WindowsFeature Web-Mgmt-Tools
Install-WindowsFeature Web-Mgmt-Console

Get-Website | Remove-Website
Get-ChildItem -Path IIS:\AppPools\ | ForEach-Object { Remove-WebAppPool $_.Name } 

Firewall Clearing

Maybe the Windows defender Firewall needs an additional clearing for the port 8443 (our standard for TaxTransferDE) and TLS:

Code Block
languagepowershell
themeRDark
New-NetFirewallRule -DisplayName "GTC Suite-8443-443" -Direction Inbound -LocalPort 8443,443 -Protocol TCP -Action Allow

Install .NET Core Hosting Bundle

...