POSH for clearing DELL OMSA Logs Remotely
Ever get tired of having to login remotely to DRACs and clearing the logs that way? Here's a quick POSH for doing the same, but saves a lot of time. Gotta love invoke-command :). I suppose you could use PSEXEC too, but that's so 80s. :)
For clearing Individual servers example
Invoke-Command -Computername MYSERVER01 -ScriptBlock {omconfig system esmlog action=clear}
Or by group or list of servers Example
Invoke-Command -Computername (Get-Content "C:\ServerList.txt") -ScriptBlock {omconfig system esmlog action=clear}
- Created on .