windows 用于安装字体系列的Powershell脚本

bn31dyow  于 2023-11-21  发布在  Windows
关注(0)|答案(4)|浏览(299)

下面是我的脚本istalling Monserrat字体从zip文件.我不知道如何检查字体是否已经安装.安装后,我可以打开文件夹C:\Windows\Fonts\Montserrat,我看到他们的人.当我运行脚本第二次,它是不承认这个文件夹的存在.我的错误在哪里?

  1. $Source = "Montserrat.zip"
  2. $FontsFolder = "FontMontserrat"
  3. Expand-Archive $Source -DestinationPath $FontsFolder
  4. $FONTS = 0x14
  5. $CopyOptions = 4 + 16;
  6. $objShell = New-Object -ComObject Shell.Application
  7. $objFolder = $objShell.Namespace($FONTS)
  8. $allFonts = dir $FontsFolder
  9. foreach($File in $allFonts)
  10. {
  11. If((Test-Path "C:\Windows\Fonts\Montserrat") -eq $True)
  12. {
  13. echo "Font $File already installed"
  14. }
  15. Else
  16. {
  17. echo "Installing $File"
  18. $CopyFlag = [String]::Format("{0:x}", $CopyOptions);
  19. $objFolder.CopyHere($File.fullname,$CopyFlag)
  20. }
  21. }

字符串

pnwntuvh

pnwntuvh1#

最后是我的剧本:

  1. $Source = "Montserrat.zip"
  2. $FontsFolder = "FontMontserrat"
  3. Expand-Archive $Source -DestinationPath $FontsFolder -Force
  4. $FONTS = 0x14
  5. $CopyOptions = 4 + 16;
  6. $objShell = New-Object -ComObject Shell.Application
  7. $objFolder = $objShell.Namespace($FONTS)
  8. $allFonts = dir $FontsFolder
  9. foreach($font in Get-ChildItem -Path $fontsFolder -File)
  10. {
  11. $dest = "C:\Windows\Fonts\$font"
  12. If(Test-Path -Path $dest)
  13. {
  14. echo "Font $font already installed"
  15. }
  16. Else
  17. {
  18. echo "Installing $font"
  19. $CopyFlag = [String]::Format("{0:x}", $CopyOptions);
  20. $objFolder.CopyHere($font.fullname,$CopyFlag)
  21. }
  22. }

字符串
我通过以下命令运行此脚本:

  1. set batchPath=%~dp0
  2. powershell.exe -noexit -file "%batchPath%InstMontserrat.ps1"


我不需要以管理员身份运行它,但用户有管理员权限。

展开查看全部
zpqajqem

zpqajqem2#

我将分享我使用的脚本。首先需要执行一些步骤。注意:此脚本已在Dev中测试,部署到Pilot,然后在我们的环境中部署到Prod。
1.我把所有的.ttf文件复制到同一个目录中(而不是大部分字体所在的子文件夹)。
1.将“Install-Font.ps1”保存到与字体相同的目录中。
1.要在本地测试,请执行以下操作:
1.打开PowerShell(作为管理员)并将CD放入字体文件夹。
1.运行脚本以加载Install-Font函数

  1. PS C:\Temp\SoftwareDeploy\Fonts> .\Install-Font.ps1
  2. PS C:\Temp\SoftwareDeploy\Fonts> Install-Font
  1. function Install-Font {
  2. param (
  3. [System.IO.FileInfo]$fontFile
  4. )
  5. try {
  6. $gt = [Windows.Media.GlyphTypeface]::new($fontFile.FullName)
  7. $family = $gt.Win32FamilyNames['en-us']
  8. if ($null -eq $family) {
  9. $family = $gt.Win32FamilyNames.Values.Item(0)
  10. }
  11. $face = $gt.Win32FaceNames['en-us']
  12. if ($null -eq $face) {
  13. $face = $gt.Win32FaceNames.Values.Item(0)
  14. }
  15. $fontName = ("$family $face").Trim()
  16. switch ($fontFile.Extension) {
  17. ".ttf" {$fontName = "$fontName (TrueType)"}
  18. }
  19. write-host "Installing font: $fontFile with font name '$fontName'"
  20. If (!(Test-Path ("$($env:windir)\\Fonts\\" + $fontFile.Name))) {
  21. write-host "Copying font: $fontFile"
  22. Copy-Item -Path $fontFile.FullName -Destination ("$($env:windir)\\Fonts\\" + $fontFile.Name) -Force
  23. write-host "Fonts have been copied into the Fonts directory"
  24. } else {
  25. write-host "Font already exists: $fontFile"
  26. }
  27. If (!(Get-ItemProperty -Name $fontName -Path "HKLM:\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Fonts" -ErrorAction SilentlyContinue)) {
  28. write-host "Registering font: $fontFile"
  29. New-ItemProperty -Name $fontName -Path "HKLM:\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Fonts" -PropertyType string -Value $fontFile.Name -Force -ErrorAction SilentlyContinue | Out-Null
  30. Write-Host "Fonts have been registered successfully"
  31. } else {
  32. write-host "Font already registered: $fontFile"
  33. }
  34. } catch {
  35. write-host "Error installing font: $fontFile. " $_.exception.message
  36. }
  37. }
  38. $FontItems = Get-ChildItem -Path $PSScriptRoot | Where-Object {($_.Name -like '*.ttf')}
  39. foreach ($FontItem in $FontItems) {
  40. Install-Font -fontFile $FontItem.FullName
  41. }

字符串

展开查看全部
4ioopgfo

4ioopgfo3#

基于我的评论 * 假设Windows 10* 更正您的脚本:

  1. # well-known SID for admin group
  2. if ('S-1-5-32-544' -notin [System.Security.Principal.WindowsIdentity]::GetCurrent().Groups) {
  3. throw 'Script must run as admin!'
  4. }
  5. $source = 'Montserrat.zip'
  6. $fontsFolder = 'FontMontserrat'
  7. Expand-Archive -Path $source -DestinationPath $fontsFolder
  8. foreach ($font in Get-ChildItem -Path $fontsFolder -File) {
  9. $dest = "C:\Windows\Fonts\$font"
  10. if (Test-Path -Path $dest) {
  11. "Font $font already installed."
  12. }
  13. else {
  14. $font | Copy-Item -Destination $dest
  15. }
  16. }

字符串

展开查看全部
5f0d552i

5f0d552i4#

如果您不想在操作系统级别上安装字体,而只是让程序在重新启动之前使用它,您可能需要使用以下脚本:

  • 如果无法注册/取消注册字体,将失败/抛出。
  • 广播WM_FONTCHANGE以通知所有窗口字体已更改
  • 不需要管理员权限
  • 在Windows中不安装字体,仅在重新启动之前使字体可用于当前会话中的所有程序
  • 具有用于调试的详细模式
  • 不适用于字体文件夹

使用方法:

  1. register-fonts.ps1 [-v] [-unregister <PATH>[,<PATH>...]] [-register <PATH>[,<PATH>...]] # Register and unregister at same time
  2. register-fonts.ps1 [-v] -unregister <PATH>
  3. register-fonts.ps1 [-v] -register <PATH>
  4. register-fonts.ps1 [-v] <PATH> # Will register font path

个字符
剧本的灵感来自于这个要点https://gist.github.com/Jaykul/d53a16ce5e7d50b13530acb4f98aaabd

展开查看全部

相关问题