mrJoeBlack
Member
- Joined
- Nov 14, 2017
- Messages
- 11
- Thread Author
-
- #1
RDP ofcorse ;-) Faster fingers than thoughts. I have a problem. On my computer from Windows 8.1 I am trying to connect to a remote desktop (Windows 10). I succeed, but I can not do anything. As if it was frozen. I see the desktop and that's it.
I turned off the antivirus. I shut down the firewall. Nothing helps.
From another computer with Windows 7 there is no problem. Everything works.
What could be the reason? Something blocking the connection? Any problems with certificates?
Can I re-install rdp 8.1? Possibly go down to 8.0?
Strange accidents. I have no idea.
I turned off the antivirus. I shut down the firewall. Nothing helps.
From another computer with Windows 7 there is no problem. Everything works.
What could be the reason? Something blocking the connection? Any problems with certificates?
Can I re-install rdp 8.1? Possibly go down to 8.0?
Strange accidents. I have no idea.
Solution
You can try running this code to repair WMI which needs to be in a working state for RDP
You will need to run it from an elevated powershell window.
This command needs to return that the repositories are consistent, if they are type y at the prompt.
winmgmt /verifyrepository
$result = Read-Host -Prompt "Repos in consistent state? (Y/N)"
Reboot after running this.
You will need to run it from an elevated powershell window.
This command needs to return that the repositories are consistent, if they are type y at the prompt.
winmgmt /verifyrepository
$result = Read-Host -Prompt "Repos in consistent state? (Y/N)"
Reboot after running this.
Code:
Stop-Service -Name "TermService" -Force
Set-Location -Path "C:\Windows\System32\Wbem"
$DLLs = Get-ChildItem *.dll
foreach ($dll in $DLLs)
{
regsvr32.exe /s "$($dll.FullName)"
}
regsvr32.exe /s "C:\Windows\System32\tscfgwmi.dll"
wmiprvse /regserver
winmgmt /verifyrepository
$result = Read-Host -Prompt "Repos in consistent state? (Y/N)"
if($result.ToLower()...
kemical
Essential Member
- Joined
- Aug 28, 2007
- Messages
- 36,176
Hi,
does this help at all?
https://support.microsoft.com/en-us/help/4028379windows-10-how-to-use-remote-desktop
does this help at all?
https://support.microsoft.com/en-us/help/4028379windows-10-how-to-use-remote-desktop
mrJoeBlack
Member
- Joined
- Nov 14, 2017
- Messages
- 11
- Thread Author
-
- #3
Thanks.
Remote computer (Windows 10) is fine. Works with other computers without problems. With my Windows 7 also. The problem is only one computer with Windows 8.1.
I thought about this app, but it's a half-measure. I prefer the built-in tool RDP.
Remote computer (Windows 10) is fine. Works with other computers without problems. With my Windows 7 also. The problem is only one computer with Windows 8.1.
I thought about this app, but it's a half-measure. I prefer the built-in tool RDP.
kemical
Essential Member
- Joined
- Aug 28, 2007
- Messages
- 36,176
How about this (it's for 8.1 too) :
Enable, Disable Remote Desktop Connection in Windows 10
Enable, Disable Remote Desktop Connection in Windows 10
mrJoeBlack
Member
- Joined
- Nov 14, 2017
- Messages
- 11
- Thread Author
-
- #5
The problem is that I have everything configured the same on two computers. With Windows 7 (everything works) with Windows 8 (not working).
I turned on the desktop as you showed it.
I think it could be:
- any application that blocks access,
- probelm with certificate,
- problem with RDP version,
- maybe port,
The remote desktop is loading. I see him, but I can not do anything.
Do you know what patches RDP has? Maybe I could re-install it.
I turned on the desktop as you showed it.
I think it could be:
- any application that blocks access,
- probelm with certificate,
- problem with RDP version,
- maybe port,
The remote desktop is loading. I see him, but I can not do anything.
Do you know what patches RDP has? Maybe I could re-install it.
kemical
Essential Member
- Joined
- Aug 28, 2007
- Messages
- 36,176
I did a little hunting around and found this page which looks like it contains updates specific to win 8.1 RDP:The problem is that I have everything configured the same on two computers. With Windows 7 (everything works) with Windows 8 (not working).
I turned on the desktop as you showed it.
I think it could be:
- any application that blocks access,
- probelm with certificate,
- problem with RDP version,
- maybe port,
The remote desktop is loading. I see him, but I can not do anything.
Do you know what patches RDP has? Maybe I could re-install it.
https://support.microsoft.com/en-us...updates-for-remote-desktop-services-in-window
mrJoeBlack
Member
- Joined
- Nov 14, 2017
- Messages
- 11
- Thread Author
-
- #7
Thanks. I'll check and let you know.
I have found one more fix, https://support.microsoft.com/en-us/help/2975719 and I will try again.
Strange thing because my system is updated on a regular basis.
I have found one more fix, https://support.microsoft.com/en-us/help/2975719 and I will try again.
Strange thing because my system is updated on a regular basis.
mrJoeBlack
Member
- Joined
- Nov 14, 2017
- Messages
- 11
- Thread Author
-
- #10
The patches did not do anything :/ Sometimes I see a black screen. Sometimes a blurry startup screen. Sometimes blurry icons on your desktop. At best I see the desktop, but I can not do anything.
- Joined
- Jul 4, 2015
- Messages
- 8,998
You can try running this code to repair WMI which needs to be in a working state for RDP
You will need to run it from an elevated powershell window.
This command needs to return that the repositories are consistent, if they are type y at the prompt.
winmgmt /verifyrepository
$result = Read-Host -Prompt "Repos in consistent state? (Y/N)"
Reboot after running this.
You will need to run it from an elevated powershell window.
This command needs to return that the repositories are consistent, if they are type y at the prompt.
winmgmt /verifyrepository
$result = Read-Host -Prompt "Repos in consistent state? (Y/N)"
Reboot after running this.
Code:
Stop-Service -Name "TermService" -Force
Set-Location -Path "C:\Windows\System32\Wbem"
$DLLs = Get-ChildItem *.dll
foreach ($dll in $DLLs)
{
regsvr32.exe /s "$($dll.FullName)"
}
regsvr32.exe /s "C:\Windows\System32\tscfgwmi.dll"
wmiprvse /regserver
winmgmt /verifyrepository
$result = Read-Host -Prompt "Repos in consistent state? (Y/N)"
if($result.ToLower() -eq "y")
{
Write-Host "Continuing repair..."
$MOFs = Get-ChildItem *.mof
foreach ($mof in $MOFs)
{
mofcomp.exe $mof
}
Restart-Service -Name "Winmgmt" -Force
Start-Service -Name "TermService"
}
else
{
Start-Service -Name "TermService"
Write-Host "Exiting..."
exit
}
mrJoeBlack
Member
- Joined
- Nov 14, 2017
- Messages
- 11
- Thread Author
-
- #12
Did not help :/
mrJoeBlack
Member
- Joined
- Nov 14, 2017
- Messages
- 11
- Thread Author
-
- #17
Is not that a problem that I have Windows 8.1 A and not 8.1 Pro?
mrJoeBlack
Member
- Joined
- Nov 14, 2017
- Messages
- 11
- Thread Author
-
- #20
No solution has helped. In addition, I reinstalled the drivers and patches. That did not work. I do not know if it will reinstall Windows. Eventually. Do you have any ideas yet? :/
Similar threads
- Replies
- 0
- Views
- 8
- Article
- Replies
- 0
- Views
- 29
- Article
- Replies
- 0
- Views
- 21
- Replies
- 0
- Views
- 20
- Replies
- 12
- Views
- 242