Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

kb3139914 broke multiple RDP sessions #101

Closed
gits68 opened this issue Mar 14, 2016 · 4 comments
Closed

kb3139914 broke multiple RDP sessions #101

gits68 opened this issue Mar 14, 2016 · 4 comments

Comments

@gits68
Copy link

gits68 commented Mar 14, 2016

Hi,

kb3139914 prevent rdpwrap from working, uninstalling kb3139914 make it work rigth again.

use the following command to uninstall it :

wusa.exe /uninstall /kb:3139914 /quiet /norestart

you may also use the following vb script to automatically hide the KB :

`
Dim hideupdates(1)

hideupdates(0) = "KB3139914"

set updateSession = createObject("Microsoft.Update.Session")
set updateSearcher = updateSession.CreateupdateSearcher()

Set searchResult = updateSearcher.Search("IsInstalled=0 and Type='Software'")

For i = 0 To searchResult.Updates.Count-1
set update = searchResult.Updates.Item(i)
For j = LBound(hideupdates) To UBound(hideupdates)
'MsgBox hideupdates(j)
if instr(1, update.Title, hideupdates(j), vbTextCompare) = 0 then
'Wscript.echo "No match found for " & hideupdates(j)
else
Wscript.echo "Hiding updates..." & hideupdates(j)
update.IsHidden = True
end if
Next
Next
`

@fge1951
Copy link

fge1951 commented Mar 15, 2016

English
For three days does not let me connect: Always indicates access denied. I guess it will be for some updating Windows 10. Les accompanied files.

2016-03-15 23_43_50-
2016-03-15 23_44_31-local rdp checker

Spanish
Desde hace tres días no me deja conectar: Siempre indica acceso denegado. Supongo será por alguna actualización de Windows 10. Les acompaño archivos.

@rufuswilson
Copy link

Hi,

I also have this problem but I can't see the problematic update "KB3139914". I am on windows 10.

Thanks,
Cédric

@binarymaster
Copy link
Member

There is a problem with access rights somewhere, similar to #215 (comment).

The issue can be theoretically solved by using Sysinternals' FileMon program that will log file accesses. But since this thread is not active anymore, I'm closing it.

@lethallybad
Copy link

How do I find what needs access using Process Monitor? I filter for RDPCheck.exe and RDPConf.exe but nothing really comes up when I reopen RDPCheck and try logging in again.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants