gpt4 book ai didi

windows - 我可以查询什么来查看 Windows 是否已启动并完成更新?

转载 作者:可可西里 更新时间:2023-11-01 12:49:16 24 4
gpt4 key购买 nike

我的目标是远程检查一组计算机(广泛的列表),不仅要查看服务器是否重新启动(通常是上次重新启动时),而且要查看 Windows 是否在登录屏幕上完全启动并运行,并且它不会重新启动以进行进一步更新或仍在安装更新。

我确实找到了一个名为 AppReadiness 的服务,它在服务器重新启动之前停止了它。我担心如果设置为手动,它可能不会一直启动。有人可以确认这是否是一项可靠的服务吗?

编辑:在我写这篇文章时,我确实发现它已停止,直到它显示“正在进行更新,100% 完成,请勿关闭您的计算机”,但当服务器挂起该消息时, AppReadiness 服务已启动。有什么更好看的吗?我读过关于不同问题的其他答案,说要检查 C$ 是否可用,但它比 AppReadiness 可用更快可用。

用于检查服务的代码:

$creds = Get-Credential -Message "Enter server credentials:" -UserName "SERVERNAME\Administrator"
Get-WmiObject Win32_Service -ComputerName "SERVERIPADDRESS" -Credential $creds | Where-Object {$_.Name -eq "AppReadiness"}

编辑 2:此外,除了监控服务,我还尝试寻找 winlogon.exe 和 loginui.exe 等进程以获取有关服务器状况的指导,但我没有收到要记录的结果。这些进程显示服务器何时准备就绪,而我希望它们只在登录 GUI 可见时显示。

编辑 3:

此编辑是针对@Kelv.Gonzales 的回答,他声明要检查 Windows 事件日志“DHCPv4 客户端服务已启动”日志条目。这不起作用,并且与我监控的其他服务和事件不相上下。它在登录屏幕之前显示有效。

Image Showing Windows Is Working On Updates When Event Is Posted

我的代码是:

$creds = Get-Credential -Message "Enter server credentials:" -UserName "SERVERNAME\Administrator"
$server = "IPADDRESSOFSERVER"

while($true)
{
$event = Get-WmiObject Win32_NTLogEvent -ComputerName $server -Credential $creds -Filter "(logfile='System' AND eventcode = '50036')" | select -First 1
$event.ConvertToDateTime($event.TimeWritten)
Start-Sleep -Seconds 5
}

最佳答案

当然,那个类轮只会发射一次。您使用 WMI 而不是内置 PowerShell cmdlet 的任何原因 - Get-Service

我的建议是使用 WMI 事件观察器,使用您已有的东西,但以服务和任何依赖服务为目标,并让该事件在状态运行时通知您。

Use PowerShell to Monitor and Respond to Events on Your Server

本文使用 PowerShell 和 VBScript 来执行此操作,但您可以使用所有 PowerShell 来执行此操作。

您可以有临时或永久观察者。

PowerShell and Events: WMI Temporary Event Subscriptions

这些内容可能会有点深,因此,如果它们不适合您,您可以只在服务上线后停止的 Do 循环中使用一行代码。

基本示例:

$TargetHost = $env:COMPUTERNAME
do {
$TargetOperation = Get-WmiObject Win32_Service -ComputerName $TargetHost |
Where-Object {$_.Name -eq "AppReadiness"}
"Checking host $TargetHost for service/process $($TargetOperation.Name)"
Start-Sleep -Seconds 3
} until (($TargetOperation).State -eq 'Running')
"Validation of host $TargetHost for service/process $($TargetOperation.Name) complete"

# Results

Checking host WS70 for service/process AppReadiness
Checking host WS70 for service/process AppReadiness
Checking host WS70 for service/process AppReadiness
Validation of host WS70 for service/process AppReadiness complete

当然,您可以使用操作逻辑添加任意数量的服务或流程。

以上所有内容几乎适用于您想要观看的任何内容。服务、进程、文件夹。

或者只是在循环中使用这个脚本。

Get Remote Logon Status - Powershell

This script will return the logon status of the local or a remote machine. Return types include "Not logged on", "Locked", "Logged on", and "Offline.

The most useful part of this is to check whether a computer is in the locked state, although the other return types could also be useful.

This is a simple function, and can easily be included in a larger script. The return types could be changed to numbers for the calling script to more easily parse the return value.

Download: GetRemoteLogonStatus.ps1

关于windows - 我可以查询什么来查看 Windows 是否已启动并完成更新?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55155443/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com