GrandesBollas Posted 1 hour ago Posted 1 hour ago Posting this here because there does not appear to be a dedicated AA18250/2025+ Area-51 notebook subforum yet. I came up with the following help from good bud ChatGPT. $6k machine - you bet I am going to do what I can to keep this thing until the solder joints break. I ran into something tonight that may be useful to other AA18250 owners, especially anyone who prefers to control BIOS/firmware updates manually. My machine is an Alienware 18 Area-51, currently running BIOS 2.4.1. I noticed Windows Update had suddenly installed/staged the following and was asking for a reboot: Intel SoftwareComponent Driver Update 3.4.1007.0 — several instances Dell, Inc. Firmware Driver Update 2.5.0.0 Intel System Driver Update 2.3.20304.7 Intel Platform Monitoring Technology 3.2.0.22 several other Intel components The Dell firmware entry was the one that caught my attention because I intentionally do not want Windows Update deciding when my BIOS gets flashed. I had previously configured Windows not to include drivers with Windows Update, but checking the registry showed: HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate ExcludeWUDriversInQualityUpdate REG_DWORD 0x0 So somewhere along the way that protection had been reset to 0. I restored it with elevated PowerShell: reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v ExcludeWUDriversInQualityUpdate /t REG_DWORD /d 1 /f and verified: reg query "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v ExcludeWUDriversInQualityUpdate which then showed: ExcludeWUDriversInQualityUpdate REG_DWORD 0x1 The more interesting part was checking what Windows had actually staged. Running: pnputil /enum-devices /class Firmware /drivers showed: Device Description: System Firmware 2.5.0 Manufacturer Name: Dell, Inc. Status: Problem Problem Code: 14 (0x0E) [CM_PROB_NEED_RESTART] Driver Name: oem79.inf and: Driver Version: 06/09/2026 2.5.0.0 Driver Status: Best Ranked / Installed So this was not just some harmless Windows Update listing. The 2.5.0 firmware package had been bound to the System Firmware device and was waiting for a reboot. Since I did not want Windows flashing the BIOS automatically, I removed the staged package before rebooting: pnputil /delete-driver oem79.inf /uninstall After that, running: pnputil /enum-devices /class Firmware /drivers showed: Device Description: System Firmware 2.4.1 Status: Started Driver Name: oem43.inf and the 2.5.0 firmware package was no longer the active firmware driver. I then rebooted directly into BIOS and confirmed the actual installed BIOS was still: BIOS Version: 2.4.1 So the 2.5.0 flash had not occurred. While I was in BIOS I also checked for some kind of UEFI Capsule Firmware Updates toggle. On my BIOS I could not find one. Searching for “UEFI,” “firmware,” etc. only returned things like Secure Boot, BIOS downgrade, BIOS recovery, firmware tamper detection, and related settings. BIOSConnect was already OFF on my machine. After exiting BIOS and returning to Windows, Windows Update showed “You’re up to date” with no pending restart. The only offered update was the optional July preview cumulative update, which I left alone. A few takeaways: Windows Update can absolutely stage a Dell BIOS update as a firmware driver. If you rely on ExcludeWUDriversInQualityUpdate, periodically verify that it is still set to 1. The relevant check is: pnputil /enum-devices /class Firmware /drivers If you see a newer System Firmware version with: CM_PROB_NEED_RESTART then Windows has likely staged the firmware for the next reboot. If you want to remove a staged firmware package, identify the exact oemXX.inf first and only then remove that specific package. In my case it was: pnputil /delete-driver oem79.inf /uninstall Do not blindly copy that oem79.inf number from my machine; yours may be different. The Windows firmware-driver label is not necessarily the same thing as the BIOS physically installed in the machine. The BIOS setup screen is the authoritative check. I still do not know what caused ExcludeWUDriversInQualityUpdate to revert from 1 to 0. I am not claiming Dell changed that policy. It could have been Windows servicing, a configuration change, an updater, or something else. For anyone who likes to manually vet BIOS releases before installing them, this is probably worth keeping an eye on. In my case, the machine remained on BIOS 2.4.1, and the staged 2.5.0 package was removed before Windows got a chance to flash it. If anyone else with an AA18250 sees BIOS 2.5.0 being offered through Windows Update, I’d be interested to know whether Dell has also posted it publicly for manual download yet, and what the release notes say.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now