Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

5
  • 1
    Produces a more complete list than the accepted answer
    – Mick
    Commented May 20, 2021 at 5:27
  • I use this to find the fonts that are installed but since I have some fonts that are renamed "BF_standard" is our company font which is really Segoe UI but since it may be changed in the future we use a font name to update the font without having to change the font in each file. Anyways... the suggested solution only list the base font name "Segoe UI" and not the "BF_standard" name (which shows up in all text applications, Word etc.). Anyway to get that name using PowerShell? Commented May 13 at 12:59
  • @JimmyWestberg there's another property FamilyNames. See if [Windows.Media.Fonts]::SystemFontFamilies | %{ $_.FamilyNames["en-us"] } brings that other name (substitute your language if needed).
    – arielCo
    Commented May 15 at 22:42
  • @arielCo sorry but that didn't make the custom name appear. Commented May 17 at 17:44
  • FYI. I found the "fc-list" command and it gave me the raw file list which included my custom font. thegeekdiary.com/… Commented May 17 at 18:09