Skip to content

PSModule/Fonts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fonts

This is a PowerShell module for managing fonts. It helps you to install, uninstall and list fonts on the system.

Prerequisites

This module currently only supports Windows operating systems.

Installation

To install the module simply run the following command in a PowerShell terminal.

Install-PSResource -Name Fonts
Import-Module -Name Fonts

Usage

You can use this module to install, uninstall and list fonts on your system.

List installed fonts

This command will list all fonts installed in the user context.

Get-Font

This command will list all fonts installed in the system context. For Windows this means that it will list all fonts installed on the C:\Windows\Fonts folder.

Get-Font -Scope AllUsers

Install a font

To install a font in the user context, you can use the following command. This will install the font in the users font folder $env:LOCALAPPDATA\Microsoft\Windows\Fonts and update the registry to make it available to the current user.

Install-Font -Path 'C:\path\to\font.ttf'

To install a font on the system you can use the following command. This will need to be run as an administrator. This will install the font in the C:\Windows\Fonts folder and update the registry to make it available to all users on the system.

Install-Font -Path 'C:\path\to\font.ttf' -Scope AllUsers

Uninstall a font

To uninstall a font from the user context, you can use the following command. This will remove the font from the users font folder $env:LOCALAPPDATA\Microsoft\Windows\Fonts and update the registry to remove it from the current user.

Uninstall-Font -Name 'FontName' # You can tab complete the font name

To uninstall a font from the system you can use the following command. This will need to be run as an administrator. This will remove the font from the C:\Windows\Fonts folder and update the registry to remove it from all users on the system.

Uninstall-Font -Name 'FontName' -Scope AllUsers # You can tab complete the font name

Contributing

Coder or not, you can contribute to the project! We welcome all contributions.

For Users

If you don't code, you still sit on valuable information that can make this project even better. If you experience that the product does unexpected things, throw errors or is missing functionality, you can help by submitting bugs and feature requests. Please see the issues tab on this project and submit a new issue that matches your needs.

For Developers

If you do code, we'd love to have your contributions. Please read the Contribution guidelines for more information. You can either help by picking up an existing issue or submit a new one if you have an idea for a new feature or improvement.