During a scheduled maintenance window, a system administrator updates the storage controller drivers on a Windows 10 workstation. Upon rebooting, the system fails to start and displays a Stop Error (BSOD) indicating CRITICAL_PROCESS_DIED, followed by an automatic reboot into the Windows Recovery Environment (WinRE). The administrator suspects that the newly installed third-party storage driver is corrupt and causing a kernel crash during early boot initialization. Which command should the administrator execute from the WinRE command prompt to list all third-party drivers installed on the offline Windows OS partition so the problematic driver package can be identified?
- dism /image:C:\ /get-driversAnswer
- Bpnputil /enum-drivers /offline:C:\
- Cbootrec /scanos
- Ddriverquery /v /fo list
Answer
The command dism /image:C:\ /get-drivers must be executed to enumerate third-party driver packages on an offline Windows installation within WinRE.
The correct option is the command dism /image:C:\ /get-drivers. DISM is the standard Windows command-line tool capable of targeting offline operating system installations using the /image switch. When combined with /get-drivers, it inspects the offline driver store and outputs details for all installed third-party drivers (listed as oem#.inf files), enabling the administrator to identify the corrupt driver for removal.
Step-by-Step Solution
Key Concept
Offline Driver Servicing in WinRE using DISM
Alternative Method
Alternatively, the administrator could boot into Safe Mode if reachable, or use DISM to remove the driver package directly once the published driver name (oem#.inf) is identified.
Estimated Time:2m 0s