powershell PowerShell:显示重新启动历史记录。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell PowerShell:显示重新启动历史记录。相关的知识,希望对你有一定的参考价值。
Get-EventLog -LogName System | Where-Object {$_.EventID -eq 6005}
Get-WinEvent -LogName System | Where-Object {$_.Id -eq 6005}
Get-WinEvent -LogName System -ComputerName (Read-Host "ComputerName") | Where-Object {$_.Id -eq 6005}
# Last Boot Up Time
Get-WmiObject -Class Win32_OperatingSystem -Property LastBootUpTime | Select @{Name="LastBootUpTime";Expression={[System.Management.ManagementDateTimeConverter]::ToDateTime($_.LastBootUpTime)}}
Get-WmiObject -Class Win32_OperatingSystem -Property LastBootUpTime -ComputerName (Read-Host "ComputerName") | Select @{Name="LastBootUpTime";Expression={[System.Management.ManagementDateTimeConverter]::ToDateTime($_.LastBootUpTime)}}
以上是关于powershell PowerShell:显示重新启动历史记录。的主要内容,如果未能解决你的问题,请参考以下文章
powershell PowerShell文件,用于根据图像尺寸递归重命名和编辑目录中的图像。
PowerShell - 将可执行文件的stderr重定向到文件或变量,但仍然有stdout转到控制台
win10的powershell打不开,怎么重装
常用PowerShell命令
Powershell 批量重命名文件
Powershell 文件重命名语法