not b@tk1z 头像

消息来源频道

not b@tk1z

@batkizc

频道165 位成员公开可见0 人在线

说一些没用的话,写一些没用的代码。

成员规模165 位成员
在线情况0 人在线
消息总数4,104 条消息
浏览量总数11,491 次浏览

在这个频道里搜索消息……

t.me/batkizc

#TIL
list the family names of installed fonts on Windows
[System.Reflection.Assembly]::LoadWithPartialName("System.Drawing")
(New-Object System.Drawing.Text.InstalledFontCollection).Families
or
Add-Type -AssemblyName PresentationCore
[Windows.Media.Fonts]::SystemFontFamilies | Select-Object -Property Source
src: https://superuser.com/questions/760627/how-to-list-installed-font-families