Powershell

Listing Available Fonts in PowerShell

This article introduces how to list available fonts from the command line console in PowerShell, Windows' command line language. rundll32.exe Shell32.dll,SHHelpShortcuts_RunDLL...

Shou Arisaka
1 min read
Nov 15, 2025

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

Share this article

Shou Arisaka Nov 15, 2025

🔗 Copy Links