-
Windows Internals, Part 2, 7th Edition
-
This can be viewed for free from the Z-Library.
-
-
TheRealMJP’s blog posts on how GPU synchronization and preemption work
-
Microsoft blog post explaining how to use "Microsoft Endpoint Manager"; relevant for DoD STIG compliance.
-
An official Microsoft video explaning the history and the benefits of their Memory Compression, how the "Standby List" (page cache) turns hard page faults into soft page faults.
-
Whatever else is below here; it’ll come up when relevant.
-
Required software:
-
SetReg -Path 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\EXAMPLE' -Key 'Start' -Value '4' -Type 'Dword'
is preferred over usingsc.exe config EXAMPLE start=disabled
since Windows rejects this request depending on the service. -
bcdedit.exe
will fail if the user screwed up their Boot Entries and fixed it later on; the workaround is to explicitly specify the ID.-
Instead of:
bcdedit.exe /deletevalue x2apicpolicy
, the workaround is to usebcdedit.exe /deletevalue "{default}" x2apicpolicy
-
-
setx.exe
is much faster than[Environment]::SetEnvironmentVariable
;setx.exe
however cannot remove environment variables. -
Non-volatile registry keys usually do not self-regenerate themselves if their key does not exist.
-
If the purpose is to revert back to defaults, manually set the default value instead.
-
-
The registry changes Group Policy edits do can be traced with Sysinternals Process Monitor.
💡
|
Example gpedit.msc registry translation:HKCU\Software\Microsoft\Windows\CurrentVersion\Group Policy Objects{2F5A9005-4CB6-4314-B846-8C3EB66C9C24}Machine\Software\Policies\Microsoft\Windows → HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent
|
-
Drivers currently loaded by Windows can be seen with System Informer via:
-
The "System" process → Properties (right-click or press Enter with "System" selected) → Modules
-
-
List all from "Turn Windows features on or off" and their status:
-
(Get-WindowsOptionalFeature -Online -FeatureName '*') | Format-Table -Autosize
-
List all from Settings › Apps › Optional features/"Add an optional feature":
-
-
(Get-WindowsCapability -Online -Name '*') | Format-Table -Autosize
-
-
-s winget
prevents Error 0x8a150044 if the Windows Store is not currently reachable.
-
Drivers can enforce their own MitigationFlags; Exploit protection’s "System settings" and "Program settings" are ignored.
-
WSL (Windows Subsystem for Linux) requires CFG (Control Flow Guard) to run. W11Boost currently avoids enabling the other mitigations that might be required later, see the blog post on it.
-
Disabling DEP works for VAC-secured games (that are Source mods of other Source games), but denies playing CS:GO or TF2 for an hour or less straight; causes VAC errors.
-
VAC is loaded by
steam.exe
if Steam is ran as Administrator; otherwise it’ssteamservice.exe
.
-
Downsides to GPO compared to direct registry edits
-
Importing other GPO files can override the prior GPOs, which was the case for applying DoD STIGs after installing W11Boost.
-
Slows down boot-times drastically.
-
The user cannot easily change GPOs, they would have to use a third-party program to remove or change them individually.
-
Error reporting is poor, making it harder to debug W11Boost’s issues.
-
Microsoft’s tools to test out GPOs are purpose built for Active Directory, which cannot be used by W11Boost, as it wouldn’t make sense to have a separate PC running Windows Server to host an Active Directory.
-
-
Overriden user preferences, such as a few settings you could use in Winaero Tweaker.
-
Disabling Virtualization Based Security (VBS) on UEFI Lock enabled PCs can boot-loop desktop PCs, but work as intended on laptops. Therefore,
$reduce_mitigations = 1
will only work for the majority of PCs that have Credential Guard (CG) and VBS' UEFI lock disabled. -
Per user configuration.
-
W11Boost is for your PCs only, not for those owned by your company.
-
Multi-seat use cases are insecure unless it’s a separate virtual machine (VM) for each user. W11Boost is only in line with the VM variant of multi-seating, and will never support Windows' native multi-seat.
-
-
Disabling CPU idle states entirely, whether through a Windows power plan or other methods.
-
Causes a 12700k CPU to go from 190W total system draw on idle to 300W for no noticeable FPS stability benefit.
-
-
Custom power plans, as system behavior can be altered in ways that minimally benefit say video games, but increase power usage drastically or have other unforeseen consequences. An example is "Bitsum Highest Performance" disabling CPU P-states entirely.