Bulk Enable Dell OpenManage Alerts
If you have to manage the numerous hardware alerts in Dell's OpenManage System Administrator console, this can be very tedious to modify one at a time. If you have System Administrator software installed, a quick command string can do the work for you. Use the 'omconfig system alertaction /?' to view all of the command arguments. I dropped the below set of commands into a batch file and executed to enable an e-mail notification for all alert types:
:: USE THESE FOR SYSTEM HARDWARE ALERTS
omconfig system alertaction event=powersupply broadcast=true
omconfig system alertaction event=powersupplywarn broadcast=true
omconfig system alertaction event=tempwarn broadcast=true
omconfig system alertaction event=tempfail broadcast=true
omconfig system alertaction event=fanwarn broadcast=true
omconfig system alertaction event=fanfail broadcast=true
omconfig system alertaction event=voltwarn broadcast=true
omconfig system alertaction event=voltfail broadcast=true
omconfig system alertaction event=intrusion broadcast=true
omconfig system alertaction event=redundegrad broadcast=true
omconfig system alertaction event=redunlost broadcast=true
omconfig system alertaction event=memprefail broadcast=true
omconfig system alertaction event=memfail broadcast=true
omconfig system alertaction event=hardwarelogwarn broadcast=true
omconfig system alertaction event=hardwarelogfull broadcast=true
omconfig system alertaction event=processorwarn broadcast=true
omconfig system alertaction event=processorfail broadcast=true
omconfig system alertaction event=watchdogasr broadcast=true
omconfig system alertaction event=batterywarn broadcast=true
omconfig system alertaction event=batteryfail broadcast=true
omconfig system alertaction event=systempowerwarn broadcast=true
omconfig system alertaction event=systempowerfail broadcast=true
:: USE THESE IF YOU ALSO HAVE A STORAGE CONTROLLER INSTALLED
omconfig system alertaction event=storagesyswarn broadcast=true
omconfig system alertaction event=storagesysfail broadcast=true
omconfig system alertaction event=storagectrlwarn broadcast=true
omconfig system alertaction event=storagectrlfail broadcast=true
omconfig system alertaction event=pdiskwarn broadcast=true
omconfig system alertaction event=pdiskfail broadcast=true
omconfig system alertaction event=vdiskwarn broadcast=true
omconfig system alertaction event=vdiskfail broadcast=true
omconfig system alertaction event=enclosurewarn broadcast=true
omconfig system alertaction event=enclosurefail broadcast=true
omconfig system alertaction event=storagectrlbatterywarn broadcast=true
omconfig system alertaction event=storagectrlbatteryfail broadcast=true
Comments
Post a Comment