Como pesquisar no histórico do Windows Update?

2

Se eu tentar pesquisar um número de KB no Painel de controle > Atualização do Windows > Visualize o Histórico de Atualizações, digitando na caixa de pesquisa do canto superior direito, a pesquisa não é realizada no Histórico, mas no próprio Painel de Controle.

Como pesquisar em atualizações concluídas / com falha?

    
por Mkgl 25.11.2015 / 17:43

1 resposta

5

Use o Powershell para procurar atualizações do Windows instaladas

Get-Hotfix recupera todas as atualizações atuais instaladas na máquina, use a opção -id para especificar o número da KB.

Exemplo:

PS C:\Users\User> Get-HotFix -Id kb974322
Get-HotFix : Cannot find the requested hotfix on the 'localhost' computer. Verify the input and run the command again.
At line:1 char:1
+ Get-HotFix -Id kb974322
+ ~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (:) [Get-HotFix], ArgumentException
    + FullyQualifiedErrorId : GetHotFixNoEntriesFound,Microsoft.PowerShell.Commands.GetHotFixCommand

PS C:\Users\User> Get-HotFix -Id kb3105216

Source        Description      HotFixID      InstalledBy          InstalledOn
------        -----------      --------      -----------          -----------
DOENOE_LP     Security Update  KB3105216     NT AUTHORITY\SYSTEM  11-4-2015 00:00:00


PS C:\Users\User> Get-HotFix -Id kb3105216 | fl


Description         : Security Update
FixComments         :
HotFixID            : KB3105216
InstallDate         :
InstalledBy         : NT AUTHORITY\SYSTEM
InstalledOn         : 11-4-2015 00:00:00
Name                :
ServicePackInEffect :
Status              :
    
por 25.11.2015 / 21:36