powershell

This is an old revision of the document!


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.1665594889.txt.gz · Last modified: 2022/10/12 19:14 by baumi

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki