Unsolved

1 Rookie

 • 

29 Posts

18

November 3rd, 2025 15:07

R750 - Schedule Consistency Check

Hi All,

Previously, I could use the command "C:\Program Files\Dell\SysMgt\oma\bin\omconfig.exe" storage vdisk action=checkconsistency controller=0 vdisk=0 to schedule a consistency check on a Poweredge server VD.

Now that OMSA will become eventually obsolete, I'd like to see if there is a way to schedule a task to do this using the iDRAC. I see where I can do the consistency check manually on the Storage>Virtual Disks. And then I see where I can schedule it, but don't see a place where I can repeat the schedule. Even if I schedule it, will it automatically run with "No Reboot (Manually Reboot System)", as none of the options are ideal. Ideally, it would run in the background while the system was still up. 

Is this possible? 

Thanks!

3 Apprentice

 • 

1.1K Posts

November 3rd, 2025 17:33

I plugged your question into an AI tool, then modified the question to use an alternative to omconfig.exe, this is what it came back with, but I didnt get to try it yet:

🔁 1. Redfish API via iDRAC

Dell provides Redfish-based scripts to perform consistency checks. One such script is:

This Python script uses Redfish API calls to:

  • Identify the virtual disk
  • Trigger a consistency check
  • Monitor the job status

You’ll need:

  • Python 3.x
  • Redfish credentials (iDRAC IP, username, password)
  • Dell’s Redfish scripting repo cloned locally

Let me know if you'd like help customizing or running this script.


🧩 2. iDRAC Service Module (iSM)

If you're running Windows and have iSM installed, you can use the DCISMCFG.exe tool:

BAT
DCISMCFG.exe -wa -ctrlid=0 -cs -vd=<vdisk_id>

This command initiates a consistency check on the specified virtual disk. You can also:

  • Cancel the check
  • Query virtual disk status
  • Run checks on multiple disks [dell.com]

This method works on 14th-gen and newer PowerEdge servers.

Rey
#Iwork4Dell

(edited)

1 Rookie

 • 

29 Posts

November 5th, 2025 16:05

@DELL-Rey G​ 

I installed the ISM on the server in question.

When I try to run anything, I get the following:
dcismcfg.exe -swraid -getctrl
The Software RAID feature is supported only when SATA setting is in RAID mode.


When I try your command with using 0 or 1 for the vdisk_id, I just get the help output for dcismcfg.exe

No Events found!

Top