S.Ergül

9 Kas 20201 dk.

Finding KB, is it on my Computer ?

Merhabalar,

cmdlien üzerinden herhangi bi KB nin bilgisayarınızda olup olmadığını kontrol mu etmek istiyorsunuz, o zaman ilgili script tam size göre

$findKb="Write KB number such as KB2710995"
 
$hotfix = New-Object System.Collections.ArrayList
 
$hotfix=Get-HotFix | select-object HotfixID
 
If($hotfix.HotfixID -contains $findKb)
 
{
 
return "True"
 
}
 
else
 
{
 
return "False"
 

 
}

    130
    7