trans autistic windows modder, created 30+ windhawk mods
socials @aubymori @aubymori @audymori @audymori.bsky.social aubymori buttonsThis is my personal site used to host small files, contain small tools written in JS, and to describe myself.
I'm a 16 year old Latina trans girl who's interested in computer software, mainly Windows NT and the XUL toolkit (Firefox). I write code mostly in C++, but I've had experience in JavaScript, PHP, C#, and HTML/CSS.
Projects I've worked on in the past:This page contains screenshots of some of my Windows desktops from over the years, as well as some additional context and comments on them.
february 2023: windows 8 consumer previewThis setup is a Windows 8.1 setup, themed to look like Windows 8 Consumer Preview (build 8250). It's mostly good, but the Firefox theme (Aerofox Continued) and the branding (modified Windows 7 branding) aren't something I'd ever use in 2024.
march 2023: windows 7 basic themeThis setup is Windows 10 LTSC 2019 (1809) themed to look like Windows 7. Back then, this setup was pretty amazing. These days, it makes me want to vomit. First off, I was using the same Aerofox Continued theme, but I put Firefox in compatibility mode to get it to look right, so it has thin borders. Second off, the tray clock is too short; the one in Windows 7 had more horizontal margin. And it's not visible here, but StartIsBack++ absolutely sucks for basic theme. The thumbnails and jump lists look terrible. As well, the Explorer has the following issues:
Granted, this was before I took the time to make Aerexplorer or even write a Windhawk mod at all, so these issues were expected and there was no known way to fix them, but it still irks me just how awful this setup looks. This is probably the worst one that I'm including here.
march 2023: windows vistaThis one is Windows 7 themed to look like Windows Vista, not much to say here. The taskbar looks kind of off, with the items touching the bottom of it. My system actually doesn't run Windows 7 normally; it has no CSM. I had to use UefiSeven to get Windows 7 running.
september 2023: lightly modded windows 10This is a setup I do very often: a lightly modded Windows 10. I'm kind of a perfectionist, so most of the time, I'm not satisfied enough with how accurately you could get Windows 10 looking like older versions, so I just use a Windows 10 IoT LTSC 2021 (21H2) install lightly modded to my liking.
october 2023: windows xp classic themeThis is probably my best setup of all time. I had to grind for it too. I did so much for this setup. The Firefox 2 theme you see was made completely by myself. I also made a Windhawk mod for the Windows 10 taskbar to have classic themed task items, a Windhawk mod for Explorer to have 32px icons, a Windhawk mod to fix the appearance of the list group headers, etc. etc. I'm proud of this setup and I want to go back to a Windows XP classic theme setup one day.
december 2023: windows 7 basic theme (again!)Nearly a year later than the first Windows 7 basic theme setup, this one is so much better. It's also based on Windows 10 IoT LTSC 2021 (21H2) instead of LTSC 2019 (1809). I have not much to say, except that Explorer's appearance is enhanced by my Windhawk mod, Aerexplorer, which was new at this time. I also made a Windhawk mod, Aero Tray, which is how I got the tray overflow looking like that.
april 2024: windows 8 developer previewThis is Windows 10 IoT LTSC 2021 (21H2) themed to look like Windows 8's Developer Preview, which looks pretty similar to the Consumer Preview, which I themed 8.1 to look like a year before this. The glass in this setup was done with OpenGlass, but I eventually switched out of this setup due to performance issues with it.
november 2024: school laptopDuring this time, which also happens to be right now as of writing this, I was unable to use my main laptop, so instead, I created a separate partition on my school laptop and installed Windows 10 IoT LTSC 2021 on it. It's served me well, but I missed my main laptop.
This utility converts a GUID string to its raw little endian representation.
This utility generates a DEFINE_GUID statement for a specific GUID.
This utility rasterizes SVGs completely within the browser.
svg:This guide will explain how to edit the registry of an offline Windows install, which means a Windows install that is either installed and not booted or that is in a WIM/ESD archive, ready to be deployed.
The registry isn't stored in any weird hard to access place, it's stored in files. You can view and edit these files in the Registry Editor by loading them with File > Load Hive.
As for the locations of the files, let me go over them. The individual subkeys of
HKEY_LOCAL_MACHINE
(SOFTWARE
, SYSTEM
, etc.)
are stored in the %SystemRoot%\System32\config
folder. Each user's registry
data (basically, HKEY_CURRENT_USER
) is stored in their profile directory as
NTUSER.DAT
. I should also note the following:
HKEY_CLASSES_ROOT
is an alias to HKEY_LOCAL_MACHINE\SOFTWARE\Classes
.HKEY_CURRENT_CONFIG
is an alias to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Hardware Profiles\Current
.When you're done editing the registry of the offline install, make sure to select the key the hive is loaded as, and do File > Unload Hive. The hive will remain loaded even after the Registry Editor is closed, so you need to do this manually every time.