Skip to content

Instantly share code, notes, and snippets.

@jcherven
Created December 31, 2019 16:44
Show Gist options
  • Save jcherven/42b84294248674c29eb50cb711114315 to your computer and use it in GitHub Desktop.
Save jcherven/42b84294248674c29eb50cb711114315 to your computer and use it in GitHub Desktop.
Change the Windows 10 system UI font to something else via Registry
Windows Registry Editor Version 5.00
; Regedit script for changing many of the Windows 10 UI system fonts from Segoe UI to something else
; Does not change everything, but it does affect most UI elements
; Edit the last line, save the file, then double click the script to patch the registry with this change
; To roll back these changes, use the companion script "WindowsSystemFont-RestoreSegoeUI.reg"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
"Segoe UI (TrueType)"=""
"Segoe UI Bold (TrueType)"=""
"Segoe UI Bold Italic (TrueType)"=""
"Segoe UI Italic (TrueType)"=""
"Segoe UI Light (TrueType)"=""
"Segoe UI Semibold (TrueType)"=""
"Segoe UI Symbol (TrueType)"=""
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]
; Replace FONTFAMILYNAME with the font family to be used
"Segoe UI"="FONTFAMILYNAME"
@66Kiba66
Copy link

What if I just want to change the MDL2 Assets? How would I go about?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment