[Request] Intel Wi-Fi 6 (AX200) driver for Win7

Any updates?

create a mklink “unknown” dictionary that deposits the drivers into the drivers dictionary when installed

Off topic, but what theme are you using that gives you dark UI elements like that? I’ve been trying to find a good dark theme for a while.

Its called dark clear glass 3.0, heres everything you need to get it working :slight_smile:

https://www.dropbox.com/scl/fi/ekpu0260azihtfnj670y5/Theme.zip?rlkey=x9qpqjdu8917dukkg2bzpl6ry&st=plh63bga&dl=0

had to edit the link, gdrive is being annoying

Also offtopic, I use this theme/icons pack since it was released: https://www.deviantart.com/khatmau/art/Luxury-Megapack-Installer-398216596

It’s the most beautiful ever made in my opinion.

Only boot logo change doesn’t work within EFI. I couldnt ever find a solution to change boot image of EFI. On Legacy it just modifies winload.exe and bootres.dll, and then disable signature check within bootmgr in C drive. Maybe it’s possible to easily edit bootres.dll and winload.efi, but there is no known method to disable signature check within bootmgfw.efi.

LE: I found a working way to change boot logo and text within EFI. The boot logo changer from Luxury Pack is using Windows 7 Boot Updater, but this one is also only working on non-EFI boot. But I looked through the source code to see how it works: windows-7-boot-updater/src/Resources at master · coderforlife/windows-7-boot-updater · GitHub . And it’s pretty easy:
1) To change “Starting Windows” and “Microsoft” text you need to edit “winload.efi” and “winload.efi.mui” with a hex editor and simply search for unicode text, then replace with desired text. To change font, font colors, background color etc. see link above. I didn’t bother too much with this, as I only wanted to have the same setup as the Luxury Pack did, so I just compared codes of original and modified “winload.exe” and “winload.exe.mui” from a non-EFI installation where I applied Luxury Pack and figured out what was changed and updated my “winload.efi” and “winload.efi.mui” files on the EFI installation
2) To disable signature check within “winload.efi” and “winresume.efi” just follow the link above to find and replace the hex sections mentioned.
3) Disabling signature check within the bootloader within EFI is done by running “bcdedit /set nointegritychecks on” in a cmd prompt, there is no “bootmgr” file anymore, because that was non-EFI bootloader. I couldn’t find a method to patch “bootmgfw.efi” from the EFI partition to do this, but the command above is nowhere to be seen, so it does it’s job perfectly.
4) Boot animation is located within “bootres.dll”, there are a few guides how you can switch that. But because I only wanted the Windows 7 Luxury animation, I just used the already modified “bootres.dll” from a non-EFI installation where Luxury Pack was applied.

LE2: “lss4” from github adapted his BIOS release of windows 7 boot changer to EFI and made possible to change all successfully just like on BIOS installations: Releases · lss4/windows-7-boot-updater · GitHub. Many, many thanks for this great tool!