命令行:安装字体

发布于 2025-01-07 04:16:50 字数 256 浏览 1 评论 0原文

是否有在批处理文件中安装字体等。 无需重新启动?

fontinst.exe 不起作用,也不起作用 这个。 这些方法都需要重新启动...

有什么建议吗? 也许:NSIS、C、批处理、...

Is there to install a font in a batch file, etc.
WITHOUT A REBOOT?

fontinst.exe doesn't work nor this.
these methods, would all need a reboot...

any suggestions?
maybe: NSIS, C, Batch, ...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绝影如岚 2025-01-14 04:16:50

我发现这个 提供将安装字体的 VBScript 的文章。

在 Windows 7 中,您必须从提升的命令提示符运行它,否则您将收到用户访问控制提示。

Const FONTS = &H14&

Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.Namespace(FONTS)
objFolder.CopyHere "C:\Scripts\Myfont.ttf"

I found this article that provides a VBScript that will install a font.

In Windows 7, you will have to run it from an elevated command prompt or your will get a User Access Control prompt.

Const FONTS = &H14&

Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.Namespace(FONTS)
objFolder.CopyHere "C:\Scripts\Myfont.ttf"
做个ˇ局外人 2025-01-14 04:16:50

我花了很多时间才找到一种不用重启就能安装字体的方法。
最后,我找到了ClickFont。这是一个简单而准确的解决方案:)

ClickFont 旨在允许快速安装 TrueType 字体
只需点击两次鼠标。您可以同时安装多种字体
时间,只需右键单击字体或文件夹即可。

集成到 Windows shell 中,用户可以
从任何位置安装字体。 ClickFont 复制字体,但也
通过系统调用正确注册它们。

-Softpedia 的 ClickFont 页面(截至 2016/10/04)

请参阅:http://www.softpedia.com/get/Others/Font-Utils/Clickfont.shtml

I spent a lot of time to find a way for installing font without restart.
Finally, I found ClickFont. It's an easy and exact solution :)

ClickFont was designed to allow quick installation of TrueType fonts
with just two mouse clicks. You can install multiple fonts at the same
time, all it takes is a right-click on a font or folder.

Integrated into the Windows shell, the user has the possibility to
install fonts from any location. ClickFont copies the fonts, but also
registers them properly with a system call.

-Softpedia's ClickFont page (as of 2016/10/04)

See: http://www.softpedia.com/get/Others/Font-Utils/Clickfont.shtml

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文