Also if you want to list all fonts on your system, here is a quick powershell hack.
Code:
# get list of installed fonts on windows vista,7,8
$items = Get-ItemProperty "HKLM:\software\Microsoft\Windows NT\CurrentVersion\Fonts" | Get-Member -MemberType NoteProperty
foreach ($item in $items) {
$item.Name -match '([^\(]+)(\(.*\))' | Out-Null
$name = $matches[1]
Write-Host $name
}