Skip to content

Instantly share code, notes, and snippets.

@dzzie
Created May 1, 2025 12:57
Show Gist options
  • Select an option

  • Save dzzie/b7cf18209f4e2e2f0c6e449f8c1cc6ed to your computer and use it in GitHub Desktop.

Select an option

Save dzzie/b7cf18209f4e2e2f0c6e449f8c1cc6ed to your computer and use it in GitHub Desktop.
.reg file
---------------
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
"Courier 10,12,15"="COURE.FON"
"Courier 10,12,15 (120)"="COURF.FON"
---------------
inno setup script
--------------------
[Registry]
Root: HKLM; Subkey: SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts; ValueType: string; ValueName: Courier 10,12,15; ValueData: COURE.FON; Flags: createvalueifdoesntexist
Root: HKLM; Subkey: SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts; ValueType: string; ValueName: Courier 10,12,15 (120); ValueData: COURF.FON; Flags: createvalueifdoesntexist
--------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment