mrJoeBlack
Member
- Joined
- Nov 14, 2017
- Messages
- 11
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()...
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.
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
}