Windows – Changing ALL System Fonts in Windows 7

desktop-customizationfontswindowswindows 7windows-registry

I had a quick question about altering fonts in Windows 7 I was hoping someone could give me a hand with. I have a touch of OCD when it comes to consistency and am having trouble changing the system fonts globally on my machine. I have changed 80% or so of them through the registry entry (found here):

Windows Registry Editor Version 5.00
  ; Created by: Shawn Brink
  ; http://www.sevenforums.com
  ; Tutorial: Fonts - Change

  [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
  "Segoe UI (TrueType)"=""
  "Segoe UI Bold (TrueType)"=""
  "Segoe UI Italic (TrueType)"=""
  "Segoe UI Bold Italic (TrueType)"=""
  "Segoe UI Semibold (TrueType)"=""
  "Segoe UI Light (TrueType)"=""
  "Segoe UI Symbol (TrueType)"=""

  [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]
  "Segoe UI"="CUSTOM_FONT_NAME"

The only issue I’m having is that the font is not adjusted in a few other places. For example, if I right-click on a file and look at the properties window, the font is still the default system font. The following is an example:

I’ve changed both the registry entry and the window fonts under “Personalization” to what I want but can’t seem to figure out how to change this font. I’d be eternally (or close to it) grateful to anyone who knows how to alter this font.

Edit: Shortly after posting this I found the exact registry edit I was looking for:

Windows Registry Editor Version 5.00

; Created by: Shawn Brink
; http://www.sevenforums.com
; Tutorial: http://www.sevenforums.com/tutorials/1175-fonts-change.html


[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]
"MS Shell Dlg 2"="Tahoma"
"MS Shell Dlg"="Tahoma"

Best Answer

As you found your answer, repeated below, then adding your solution as an answer and marking it as the correct answer means this question will no longer appear on the "unanswered" section of this site.

Windows Registry Editor Version 5.00

; Created by: Shawn Brink
; http://www.sevenforums.com
; Tutorial: http://www.sevenforums.com/tutorials/1175-fonts-change.html


[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]
"MS Shell Dlg 2"="Tahoma"
"MS Shell Dlg"="Tahoma"
Related Question