Description
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
`