Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Windows Server 2016 or higher

  • .NET Framework 4.8 or higher

  • Windows Features / Services

    • NET Framework 3.5 Features

      • Windows Communication Foundation HTTP Activation

      • Windows Communication Foundation Non-HTTP Activation

    • .NET Framework 4.76.x or higher Features

      • HTTP Activation

      • Message Queuing (MSMQ) Activation

      • Named Pipe Activation

      • TCP Activation

      • TCP Port Sharing

      • WCF Services

        • HTTP Activation

        • Message Queuing (MSMQ) Activation

        • Named Pipe Activation

        • TCP Activation

        • TCP Port Sharing 

    • Role Administration Tools

      • AD DS Tools

    • Web Server (IIS)

      • Basic Authentication

      • Windows Autentication

      • Common HTTP Features

      • Security

      • Application Development

      • ASP.NET 4.x

...

Info

The .NET 3.5 Framework must be installed separately using the following instructions Windows Server 2019 - Install .NET 3.5 Features

Code Block
$features = @("RSAT", "RSAT-AD-Powershell", "RSAT-AD-Tools", "RSAT-ADDS", "RSAT-AD-AdminCenter", "RSAT-ADDS-Tools", "Powershell", "powershell-v2", "powershell-ise", "NET-Framework-Features", "NET-Framework-Core", "net-http-activation", "net-non-http-activ", "net-framework-45-features", "net-http-activation", "net-non-http-activ", "net-framework-45-features", "net-wcf-msmq-activation45", "net-wcf-pipe-activation45", "net-wcf-tcp-activation45", "NET-WCF-TCP-PortSharing45")

foreach($feature in $features)
{
    Install-WindowsFeature -Name $feature
}

...

Info

The .NET 3.5 Framework must be installed separately using the following instructions Windows Server 2019 - Install .NET 3.5 Features

Code Block
$features = @("Web-Server", "Web-WebServer", "Web-Common-Http", "Web-Default-Doc", "Web-Static-Content", "Web-Http-Redirect", "Web-Performance", "Web-Stat-Compression", "Web-Security", "Web-Filtering", "Web-Basic-Auth", "Web-Windows-Auth", "Web-App-Dev", "Web-Net-Ext45", "Web-AppInit", "Web-Asp-Net45", "Web-ISAPI-Ext", "Web-ISAPI-Filter", "Web-Mgmt-Tools", "Web-Mgmt-Console", "NET-Framework-45-Features", "NET-Framework-45-Core", "NET-Framework-45-ASPNET", "NET-WCF-Services45", "NET-WCF-HTTP-Activation45", "NET-WCF-MSMQ-Activation45", "NET-WCF-Pipe-Activation45", "NET-WCF-TCP-Activation45", "NET-WCF-TCP-PortSharing45", "WAS", "WAS-Process-Model", "Web-Mgmt-Tools", "Web-Mgmt-Console")

foreach($feature in $features)
{
Install-WindowsFeature -Name $feature
}

...

Info

The .NET 3.5 Framework must be installed separately using the following instructions Windows Server 2019 - Install .NET 3.5 Features

Code Block
$features = @("Web-Server", "Web-WebServer", "Web-Common-Http", "Web-Default-Doc", "Web-Static-Content", "Web-Http-Redirect", "Web-Performance", "Web-Stat-Compression", "Web-Security", "Web-Filtering", "Web-Basic-Auth", "Web-Windows-Auth", "Web-App-Dev", "Web-Net-Ext45", "Web-AppInit", "Web-Asp-Net45", "Web-ISAPI-Ext", "Web-ISAPI-Filter", "Web-Mgmt-Tools", "Web-Mgmt-Console", "NET-Framework-45-Features", "NET-Framework-45-Core", "NET-Framework-45-ASPNET", "NET-WCF-Services45", "NET-WCF-HTTP-Activation45", "NET-WCF-MSMQ-Activation45", "NET-WCF-Pipe-Activation45", "NET-WCF-TCP-Activation45", "NET-WCF-TCP-PortSharing45", "WAS", "WAS-Process-Model", "Web-Mgmt-Tools", "Web-Mgmt-Console")

foreach($feature in $features)
{
Install-WindowsFeature -Name $feature
}

...