powershell
This is an old revision of the document!
Table of Contents
Useful Powershell Commands
Get Systemboot/Reboot/Shutdown Events
Get-EventLog System -Newest 10000 | ` Where EventId -in 41,1074,1076,6005,6006,6008,6009,6013 | ` Format-Table TimeGenerated,EventId,UserName,Message -AutoSize -wrap
Ping with Timestamps
$target = "www.google.com" ping -t $target | ForEach {"{0} - {1}" -f (Get-Date),$_}
Useful Commandlets
Format-Hex $filename
powershell.1665594900.txt.gz · Last modified: 2022/10/12 19:15 by baumi