My Snippet Cheatsheet

Quick reference for commands, configs, and notes I keep looking up.

Type to filter snippets. Matching is case-insensitive.
No snippets match your search.
PowerShell

Get last reboot time on a remote server

$cn = @('computerName1','computerName2')
                $cn | Get-CimInstance Win32_OperatingSystem | Select-Object CSName, LastBootUpTime, LocalDateTime
#powershell #cim #windows