-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
Comments
English Spanish |
Hi, I also have this problem but I can't see the problematic update "KB3139914". I am on windows 10. Thanks, |
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. |
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. |
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
`
The text was updated successfully, but these errors were encountered: