Oct 29 2018 09:03 AM
Oct 29 2018 09:03 AM
Setup a test of the Windows Admin Center, the only thing I cant seem to get to work is the Remote Desktop tab. I just get the spinning dots and errors in the console, which I have attached. Any Ideas on how to resolve?
Oct 30 2018 07:11 AM
Oct 30 2018 07:30 AM
Updated to the latest Chrome Version 70.0.3538.77 and still having the same issue. The problem also happens in other browsers like Edge.
Oct 30 2018 08:39 AM
I just stood up admin center as well and am having the same exact issue with remote desktop. I've tried to connect to multiple different server using edge, chrome, firefox... remote desktop just 'spins'. Never connects. Everything else seems to be working.
Admin center installed on 2019 server....attempting to remote desktop to 2019, 2016, 2012 servers. None work.
Oct 30 2018 09:09 AM
Are you getting the same errors in your developer console?
Oct 30 2018 10:50 AM
Developer console? Is that a separate install?
Oct 31 2018 01:31 AM
Its built into most browsers, I have attached how to find it in chrome
Oct 31 2018 08:05 AM
Oh sorry, I thought you were referencing some 'developer console' for admin center specifically. Wasn't thinking at all about browser functionality.
Oct 31 2018 08:10 AM
Yes same exact errors when attempting to RDP.
Nov 13 2018 08:14 AM
This is the consistent error on Win10 1709 and 1803 for remote desktop module only. Event viewer and Powershell work fine.
HTTP400: BAD REQUEST - The request could not be processed by the server due to invalid syntax. (XHR)PUT - https://localhost:6516/api/nodes/[servername]/features/powershellApi/pssessions/instantSession
Nov 15 2018 07:23 AM
It's a bug . Jeff Woolslayer find root cause : https://techcommunity.microsoft.com/t5/Windows-Admin-Center/Windows-Admin-Center-1809-Generally-Avai...
Nov 21 2018 02:43 AM
Upgraded to Windows 10 1809, still same issue.
Nov 29 2018 05:49 PM - edited Nov 29 2018 07:29 PM
I also had problems with remote desktop connection not working on-premises. And Settings > Remote Desktop page show "Get-Member" errors.
But when setting up in the Azure VM environment, Remote Desktop Connection worked without any problems. Therefore, when comparing Remote Desktop settings in the registry, I confirmed that the following two values exist on the Azure VM side and do not exist in the on-premise side clean installation environment.
HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services
KeepAliveEnable REG_DWORD 1
KeepAliveInterval REG_DWORD 1
I created the same registry by running these command line on a remote server on-premises, the problem was solved. Settings > remote desktop page's error was also gone. (You do not need to restart the server.)
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "KeepAliveEnable" /t REG_DWORD /d 1 /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "KeepAliveInterval" /t REG_DWORD /d 1 /f
Nov 29 2018 07:18 PM - edited Nov 29 2018 07:54 PM
Perhaps it is only necessary for something to exist in the "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" key. If there is no value in this reg path, $regisgtryKey vaiable (you can see it by using [>_] show power shell script button) set to null, and followed script will cause error.
$registryKey = Get-ItemProperty -Path $RdpGroupPolicyRegistryKey -ErrorAction SilentlyContinue
if ((Get-Member -ImputObject $registryKey ... <- Error
Nov 30 2018 12:46 AM - edited Nov 30 2018 12:48 AM
SolutionI could fix this problem by enabling "Allow users to connect remotely by using Remote Desktop Services" policy settings (gpedit.msc or gpo). This policy add fDenyConnection=0 value to "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services", so $resgistryKey never set to null.
Nov 30 2018 04:19 AM - edited Nov 30 2018 05:49 AM
Can confirm かずお 山内 Solution worked for me! Thanks
Nov 30 2018 07:39 AM
Confirmed as well! Thank you.
GPO = Windows Components/Remote Desktop Services/Remote Desktop Session Host/Connections/Allow users to connect remotely by using Remote Desktop Services = Enabled
Dec 06 2018 05:02 PM
I can confirm that setting either of these works. It is not necessary to add both:
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "KeepAliveEnable" /t REG_DWORD /d 1 /f
REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "KeepAliveInterval" /t REG_DWORD /d 1 /f
Dec 06 2018 09:07 PM - edited Dec 11 2018 05:51 PM
Exactly. It is important that there is at least one value in this place. The name, type, and data of that value can be anything.
This bug was probably fixed in Windows Admin Center 1809.5 Insider Preview.
https://blogs.windows.com/windowsexperience/2018/12/11/announcing-windows-admin-center-1809-5-inside...
Dec 18 2018 10:23 AM
Nov 30 2018 12:46 AM - edited Nov 30 2018 12:48 AM
SolutionI could fix this problem by enabling "Allow users to connect remotely by using Remote Desktop Services" policy settings (gpedit.msc or gpo). This policy add fDenyConnection=0 value to "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services", so $resgistryKey never set to null.