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"
}
Comments