PowerShell - Get Last Boot Time
- Jon Boyette
- Sep 28, 2022
- 1 min read
Save as a self named .ps1, when ran, it prompts for the servers name, then will give a timestamp on screen when the server was last rebooted
$M = Read-Host "Enter Computer Name to See Last Boot Time"
Get-CimInstance -ComputerName $M -ClassName win32_OperatingSystem | select csname,lastbootuptime
Comments