View Single Post
Old 12-12-2012, 01:40 PM  
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,372
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
}
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote