Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
$dc = Get-ADComputer –filter {(Enabled -eq $True)} -Properties OperatingSystem -resultsetsize $null -ResultPageSize 2048 | Select-Object Name,OperatingSystem | foreach {if (test-connection -ComputerName $_.name -count 2 -Quiet)}
foreach ($comp in $dc)
{
If ($comp.operatingsystem -like "*2019*")
{
if (!(get-hotfix -ComputerName $comp.name -Id kb4532695 -erroraction silentlycontinue))
{Write-Host -ForegroundColor Red -Object $comp.name}
else
{Write-Host -ForegroundColor Green -Object $comp.name}
}
}