This article introduces how to list available fonts from the command line console in PowerShell, Windows’ command line language.
The font names (e.g. “Ink Free Standard”) that can be confirmed with rundll32.exe Shell32.dll,SHHelpShortcuts_RunDLL FontsFolder are different, so it seems necessary to properly list and check them.
[System.Reflection.Assembly]::LoadWithPartialName("System.Drawing")
(New-Object System.Drawing.Text.InstalledFontCollection).Families
windows 7 - How to list installed font families? - Super User