How to list installed font families?

7

2

How can I list the family names of installed fonts on windows system?

any command line utility or any registry paths?

user327911

Posted 2014-05-30T11:17:17.270

Reputation: 93

Answers

16

In PowerShell you can get the Font families in two lines, one to load the .NET reflection and the second actually gets the font families:

[System.Reflection.Assembly]::LoadWithPartialName("System.Drawing")
(New-Object System.Drawing.Text.InstalledFontCollection).Families

The outlook looks similar to:

enter image description here

Austin T French

Posted 2014-05-30T11:17:17.270

Reputation: 9 766

0

dir C:\windows\fonts\*.* > C:\users\<my_username>\desktop\fontlist.txt

Alternatively, something like this will do what you need it to do :)

Hope this helps

Fazer87

Posted 2014-05-30T11:17:17.270

Reputation: 11 177

0

These links will list all the font families installed on your computer with preview while online.
If you need you can "File->save page as" *.mht or *.html format from any browser for offline use

http://pomax.nihongoresources.com/downloads/fonttest/
-------(OR)-------
http://flippingtypical.com/
-------(OR)-------
http://wordmark.it/
-------(OR)-------
Download a portable freeware and preview all installed fonts, even without an internet connection:
http://www.softwareok.com/?Download=FontViewOK.

Ĭsααc tիε βöss

Posted 2014-05-30T11:17:17.270

Reputation: 1 772