PowerShell: Adding More Fonts
Tired of using the boring default fonts in PowerShell? There are more monospaced fonts on your system. You just need to allow the console to use them. Here’s how: $key = ‘HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\TrueTypeFont’ Set-ItemProperty -Path $key -Name ‘0’ -Value ‘Lucida Console’ Set-ItemProperty -Path $key -Name ’00’ -Value ‘Courier New’ Set-ItemProperty -Path $key -Name ‘000’ -Value […]