View Single Post
Old 12-12-2012, 02:35 PM  
Phoenix
BACON BACON BACON
 
Industry Role:
Join Date: Nov 2002
Location: Poems everybody, the laddie fancies himself a poet
Posts: 35,469
Quote:
Originally Posted by fris View Post
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
}

got one where we can see what is on a surfers system?
__________________
Skype Phoenixskype1
Telegram PhoenixBrad
https://quantads.io
Phoenix is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote