Showing posts with label Server 2019. Show all posts
Showing posts with label Server 2019. Show all posts

12 January 2022

Start Menu failing to open on RDS Server

I have recently noticed an issue with some clients using RDS whereby they're not able to open up the Start Menu when signing into a Session Host.

The following Event Log was reviewed:


We noticed that this was caused by Windows Firewall rules which were left over from when users sign in and out of the Session Host.

We were able to resolved his by navigating to the following location in Regedit:

Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules

Once you're in this location, you'll see a massive amount of firewall rules in between { }.  Go through and delete all those rules, leaving only the standard Windows Firewall rules there.  

Once this is done, that issue should then resolve itself.  You may need to log off and back on, however there shouldn't be a need to restart the server.

If you still have issues with this you can create a new DWORD with the following:

DeleteUserAppContainersOnLogoff=1

Save it here: Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy

05 June 2020

Bypass WSUS to Install Server Features | 0x800F0954

I recently needed to install some Windows Server Features on a 2019 server, but received the following error when doing so: 0x800F0954

The server was trying to pull its updates from WSUS, which was obviously failing.  In order to get around this, you need to change the Registry:

Open Regedit and go to the following location:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU
I found that I needed to create the WindowsUpdate then the AU key as they didn't exist.

Create a new DWORD called UseWUServer



Reboot the server and then you should be able to install the relevant features.