https://github.com/powerline/fonts
fonts-master
folder inside that. Rather than opening each folder and trying to install each font file ending with .ttf or .otf with the Windows Font Viewer, we will use a PowerShell batch script ( .ps1) called install.ps1. But a few things need to be done to make it work.C:\WINDOWS\system32
instead of C:\Users\${env:UserName}
, you will need to navigate to the fonts-master folder in the Downloads folder. You can do this by typing cd ${HOME}\Downloads\fonts-master\fonts-master.Execution Policy to Bypass
, so that we may run this script. If you entered something else, you can reset the execution policy to Restricted
later. So type Set-ExecutionPolicy Bypass
. You will likely be warned you are changing the Execution Policy, type y for Yes then enter.install.ps1
file! Type .\install.ps1
. If you are Installing a newer version, you will likely be prompted for every font that is replaced. (I should look into that.) Otherwise new fonts will be installed.Execution Policy
back to the Default
setting. Set-ExecutionPolicy Default
then type y for Yes like before.