Skip to content

Instantly share code, notes, and snippets.

@noslin005
Last active April 11, 2023 17:35
Show Gist options
  • Save noslin005/19eb8aac3054a4772f0f1ecab12c4c50 to your computer and use it in GitHub Desktop.
Save noslin005/19eb8aac3054a4772f0f1ecab12c4c50 to your computer and use it in GitHub Desktop.
Windows Server 2019 VROC NVMe RAID 1 INACCESSIBLE_BOOT_DEVICE blue screen BSOD Supermicro

If the INACCESSIBLE_BOOT_DEVICE blue screen error is displayed due to other operations, perform the following procedure:

A - Prepare USB with Drivers

  1. You'll need a USB drive formatted as FAT32

  2. Create a folder in the USB, named drivers or any other name easy to remember.

  3. Download Intel VROC driver from Supermicro https://www.supermicro.com/wftp/driver/VROC/

    Current Version: https://www.supermicro.com/wdl/driver/VROC/VROC_7.5.0.1991.zip

  4. Extract the driver.

  5. To make things easy, copy the content of ./iaStorE.free.win8.64bit.7.5.0.1990/ to the drivers folder created in 2.

B - Fix/Install the VROC driver.

  1. Boot from the Windows 2019 CD-ROM/USB.

  2. Select Repair your computer.

  3. Select Troubleshoot.

  4. Select Command Prompt.

  5. Insert the USB drivers prepared before .

  6. You need to know the volumes labels for the OS and the USB drives.

    diskpart
    list volumes
    #Register the volume names for the Windows OS and the USB with driver.
    exit
  7. Enter

DISM /image:C:\ /Add-driver /Driver:E:\drivers/iaStorB.inf

Replace:

C: with the Windows OS Volume

E: with the path to the USB file for the driver.

  1. Restart the server.
@noslin005
Copy link
Author

Exporting driver from Image

Exports all third-party driver packages from a Windows image to a destination path. The exported drivers can then be injected to an offline image by running the DISM Add-Driver command. This command is new for Windows 8.1 Update.

DISM /Online /Export-Driver /Destination:C:\destpath

DISM /Image:C\test\offline /Export-Driver /Destination:C:\destpath

https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/dism-driver-servicing-command-line-options-s14

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment