iDRAC Hard Reset

Dell.ManagedServer.iDRAC.HardReset (Task)

This task when invoked will initiate hard reset of iDRAC. This task will help Administrator to revive iDRAC in case it hangs for any reason.

Element properties:

TargetDell.ManagedServer
AccessibilityInternal
CategoryCustom
EnabledTrue
RemotableFalse
Timeout300

Member Modules:

ID Module Type TypeId RunAs 
iDRACHardResetPSProbe ProbeAction Microsoft.Windows.PowerShellProbe Default

Source Code:

<Task ID="Dell.ManagedServer.iDRAC.HardReset" Accessibility="Internal" Enabled="true" Target="DellManagedServer!Dell.ManagedServer" Timeout="300" Remotable="true">
<Category>Custom</Category>
<ProbeAction ID="iDRACHardResetPSProbe" TypeID="Windows!Microsoft.Windows.PowerShellProbe">
<ScriptName>ScriptName</ScriptName>
<ScriptBody><Script>
Write-Host "Invoking iDRAC Hard reset Task"
Add-PSSnapin -Name InvokeiDRACHardResetPSSnapIn -ErrorAction SilentlyContinue
Invoke-iDRACHardReset -Force -Verbose
Write-Host "Done Invoking iDRAC Hard Reset Task"
</Script></ScriptBody>
<TimeoutSeconds>120</TimeoutSeconds>
</ProbeAction>
</Task>