任何人都知道如何通过Windows上的命令提示符安装字体文件(.ttf,.TTF,.otf,.OTF等)?
据我了解,它需要将文本文件移动到正确的文件夹,然后还创建一个注册表值,我想?但我找不到一个确认有效的。
注意:我正在使用Windows 8,这可能会有所作为。
另一个注意事项:我要做的是批量安装从MKV文件中删除的字体。 (所以这将是一个更大的.bat文件的一部分,如果需要我可以发布代码)
答案 0 :(得分:5)
您需要使用PowerShell或VB脚本。它们基本上重用了在Windows资源管理器中执行相同操作的shell组件,并且它们不需要重新启动。
请在此处查看安装目录中所有字体的PowerShell脚本: http://social.technet.microsoft.com/Forums/fr-FR/winserverpowershell/thread/fcc98ba5-6ce4-466b-a927-bb2cc3851b59
此外,您还需要以管理员模式运行脚本。因此,如果PowerShell脚本是InstallFonts.ps1,则批处理文件需要如下所示:
powershell -command "Set-ExecutionPolicy Unrestricted" 2>> err.out
powershell .\InstallFonts.ps1 2>> err.out
任何powershell错误都会出现在与脚本相同的文件夹中的“err.out”中。
答案 1 :(得分:2)
也许这也需要:
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts" /v "FontName (TrueType)" /t REG_SZ /d FontName.ttf /f
答案 2 :(得分:1)
您是否尝试过将它们复制到字体的文件夹中?
copy font.ttf %windir%\Fonts
答案 3 :(得分:1)
安装字体时,只需将.ttf文件复制到%systemroot%\fonts
并在HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts
中添加条目即可。这可以使用批处理文件自动执行,如下所示
Rem fontinst.bat
copy akbar.ttf %systemroot%\fonts
regedit /s font.reg
font.reg将包含以下内容:
REGEDIT4
\[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts\]
"Akbar Plain (TrueType)"="akbar.ttf"
资料来源:m.windowsitpro.com
答案 4 :(得分:0)
批处理文件示例,它在当前目录中工作。
IF "%*" NEQ "" SET FONT=%* (
FOR /F %%i in ('dir /b "%FONT%*.*tf"') DO CALL :DEST %%i
) else (
EXIT
)
:DEST
SET FONTFILE=%~n1%~x1
SET FONTNAME=%~n1
IF "%~x1"==".ttf" SET FONTTYPE=TrueType
IF "%~x1"==".otf" SET FONTTYPE=OpenType
ECHO FILE = %FONTFILE%
ECHO NAME = %FONTNAME:-= %
ECHO TYPE = %FONTTYPE%
fontview %~dp0%FONTFILE%
GOTO :EXIT
答案 5 :(得分:0)
如果你是一个python粉丝,下面的脚本可以完成这项工作。此脚本生成用于字体安装的vbscript。搜索所有子文件夹中的ttf字体并进行安装。您不需要移动任何字体文件。
import os
import subprocess
import time
# vb script template
_TEMPL = """
Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.Namespace("%s")
Set objFolderItem = objFolder.ParseName("%s")
objFolderItem.InvokeVerb("Install")
"""
vbspath = os.path.join(os.getcwd(), 'fontinst.vbs')
for directory, dirnames, filenames in os.walk(os.getcwd()):
for filename in filenames:
fpath = os.path.join(directory, filename)
if fpath[-4:] == ".ttf": # modify this line for including multiple extension
with open(vbspath, 'w') as _f:
_f.write(_TEMPL%(directory, filename))
subprocess.call(['cscript.exe', vbspath])
time.sleep(3) # can omit this
os.remove(vbspath) # clean
在根文件夹
上运行此python脚本答案 6 :(得分:0)
我以这种方式解决了任务:
假设您必须以下列结构递归在子文件夹中安装许多字体:
\root_folder
Install_fonts.cmd
\font_folder_1
font_1.ttf
font_2.otf
\font_folder_2
font_3.ttf
font_4.otf
\font_folder_3
font_5.ttf
font_6.otf
为此,我在台式机上下载了 FontReg.exe 工具(如果需要,请在path
文件中更改Install_fonts.cmd
它位于其他位置),我在Install_fonts.cmd
中的root_folder
批处理脚本中使用了它(如果不同,还请在Install_fonts.cmd
文件中更改其名称):>
@echo off
set back=%cd%
for /d %%i in (%USERPROFILE%\Desktop\root_folder\*) do (
cd "%%i"
echo current directory:
cd
start /wait %USERPROFILE%\Desktop\fontreg-2.1.3-redist\bin.x86-64\FontReg.exe /move
timeout /t 1 /nobreak >nul
)
cd %back%
echo Process completed!
pause
因此,您必须以管理员身份将Install_fonts.cmd
运行到root_folder
中,以自动执行字体安装过程。
欢呼
答案 7 :(得分:0)
于是我和一位同事找到了一个不需要管理员权限,并且不显示任何提示的 powershell 解决方案。您可以使用字体文件的名称来安装和卸载。这使得它对于编写脚本特别有用。
安装:
# Install-Font.ps1
param($file)
$signature = @'
[DllImport("gdi32.dll")]
public static extern int AddFontResource(string lpszFilename);
'@
$type = Add-Type -MemberDefinition $signature `
-Name FontUtils -Namespace AddFontResource `
-Using System.Text -PassThru
$type::AddFontResource($file)
卸载:
# Uninstall-Font.ps1
param($file)
$signature = @'
[DllImport("gdi32.dll")]
public static extern bool RemoveFontResource(string lpszFilename);
'@
$type = Add-Type -MemberDefinition $signature `
-Name FontUtils -Namespace RemoveFontResource `
-Using System.Text -PassThru
$type::RemoveFontResource($file)
您可以在 cmd 或 powershell 中像这样使用它们:
> powershell -executionpolicy bypass -File .\Install-Font.ps1 .\myfonts\playfair-display-v22-latin-regular.ttf
> powershell -executionpolicy bypass -File .\Uninstall-Font.ps1 .\myfonts\playfair-display-v22-latin-regular.ttf
该解决方案基于 https://www.leeholmes.com/powershell-pinvoke-walkthrough/,并使用本机 Win32 函数 (gdi32.dll
)。 https://docs.microsoft.com/en-us/windows/win32/api/wingdi/nf-wingdi-addfontresourcew