Created
July 22, 2022 15:36
-
-
Save rpavlik/66419a9d5854eff03112938f922e0ca1 to your computer and use it in GitHub Desktop.
sample powershell script to install fonts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Note that there is actually a "fonts" bucket in scoop that makes this obsolete in this specific case | |
$FontRelease = "2111.01" | |
$FontArchive = "CascadiaCode-${FontRelease}.zip" | |
wget.exe "https://github.com/microsoft/cascadia-code/releases/download/v$FontRelease/$FontArchive" | |
# -aoa = always overwrite | |
7z x -oCascadiaCode -aoa "${FontArchive}" | |
# https://blog.simontimms.com/2021/06/11/installing-fonts/ | |
$fonts = (New-Object -ComObject Shell.Application).Namespace(0x14) | |
foreach ($file in Get-ChildItem CascadiaCode\ttf\*.ttf) | |
{ | |
$fn = $file.Name | |
if (-not (Test-Path "C:\Windows\fonts\$fn")) { | |
Write-Host "$fn" | |
Get-Item $file | %{ $fonts.CopyHere($_.fullname) } | |
} | |
} | |
sudo Copy-Item CascadiaCode\ttf\*.ttf c:\Windows\fonts\ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment