Detect path of font on Windows

I know name of my font, how to detect path from command line ?

I read this post, but solution show only fonts on the system without path.

2

1 Answer

Windows 10 1803 has introducedfonts in the Microsoft Store. This required to allow a font to be installed for a specific user rather than system-wide. That’s why no admin action is needed when fonts acquired from the Store are installed.

This change meant that there now exist two repositories for fonts:

  1. Fonts for all users, residing in folderC:\Windows\Fonts and listed in the registry at keyHKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts.

  2. Fonts for the current user, residing in folderC:\Users\USER\AppData\Local\Microsoft\Windows\Fontsand listed in the registry at keyHKCU\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts.

To list all fonts, you will need to query both registry keys that I listed above. For each font under one of the two registry keys, you will then know its folder.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like