top of page

Finding KB, is it on my Computer ?

  • Yazarın fotoğrafı: S.Ergül
    S.Ergül
  • 9 Kas 2020
  • 1 dakikada okunur

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


Post: Blog2_Post
bottom of page