试试:https://www.baidu.com/s?wd=c%23%20%E5%AE%89%E8%A3%85%E5%AD%97%E4%BD%93
Dim fontPath As String = projectpath & "Attachments\HYT_OMR_Jx.ttf"
dim fontSysFolder as string = "C:\Windows\Fonts\"
Dim args as string
= "-install """ & fontPath & """"
Dim p As New Process()
p.StartInfo.FileName = "cmd.exe"
p.StartInfo.Arguments = "/C fontview " & args
p.StartInfo.UseShellExecute = True
p.Start()