Has anyone managed to get HTTP/3 working with Windows 11?
I am currently running a server on Windows 11 with IIS version 10.0 (this is the version that comes with it.). I am trying to enable HTTP/3 support on my server, but I am encountering an issue when trying to use the Enable-WindowsOptionalFeature command.
When I run the following command in PowerShell:
Enable-WindowsOptionalFeature -Online -FeatureName HTTP3 -All
I receive the following error message:
Enable-WindowsOptionalFeature : Feature name HTTP3 is unknown.
At line:1 char:1
+ Enable-WindowsOptionalFeature -Online -FeatureName HTTP3 -All
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Enable-WindowsOptionalFeature], COMException
+ FullyQualifiedErrorId : Microsoft.Dism.Commands.EnableWindowsOptionalFeatureCommand
Could you please provide guidance on how to resolve this issue? Is there a different method or command I should be using to enable HTTP/3 support on my Windows 11 IIS server?
Thank you for your assistance.