11

I am trying to add the Wireless LAN Service to my server but I first had to restart it because it installed some updates a while ago. After the restart it came up with the following error:

The request to list features available on the specified server failed.

Server Manager:

enter image description here

Powershell:

enter image description here

What should I do now? I am not very experienced in Windows Server only in C# and some other programming languages.

James Yale
  • 5,182
  • 1
  • 17
  • 20
Menno van Leeuwen
  • 219
  • 2
  • 3
  • 9

4 Answers4

1

I'm pretty sure it's a stuck pending reboot request.

Go to "C:\Windows\WinSxS" and check if there's a pending.xml file. Delete that file and try rebooting again. If you're unable to delete that file, try deleting it offline. If it's a virtual server, simply map its virtual disk somewhere and delete the file that way.

Makorus
  • 61
  • 4
0

Is it trying to add prerequisite features and restart first? I had a similar problem adding the WSUS role which was clashing when it also added the Windows Internal Database.

This guy mentions the error, but my solution was different. Instead of changing group policy, I had to actually provide the WID account access to the WID directory:

$WIDService = "MSSQL$MICROSOFT##WID"
$Acl = Get-Acl "D:\WID\Data"
$Acl.SetAccessRule((New-Object System.Security.AccessControl.FileSystemAccessRule($WIDService,"FullControl","Allow")))
Set-Acl "D:\WID\Data" $Acl

This isn't exactly your problem, but the symptom seems the same so it may lead you in the right direction at least.

xXhRQ8sD2L7Z
  • 695
  • 5
  • 12
0

I believe that the feature in powershell is named "wireless-networking", so the command would be "add-windowsfeature wireless-networking -restart"

0

I have received similarly obtuse messages from Windows before, when trying to install a service that is not supported on Windows Server Core.

If you are running Core edition, then the Wireless LAN service is not supported on core.

Mark Henderson
  • 68,823
  • 31
  • 180
  • 259