Como adicionar fontes adicionais às janelas do console do Windows [closed]

1

Recentemente, fiz uma pesquisa no Bing e li que é possível ter mais fontes do que aparecem na tela. Isso realmente me interessou e eu tentei e não pude fazê-lo.

  • estou no windows 8.1
  • Eu uso o seguinte local:

    Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\TrueTypeFont
    
  • Eu excluí uma fonte com sucesso, mas não consigo uma fonte.

  • Estou usando fontes que o Windows pré-instalou
  • Estou usando valores de string (REG_SZ)
  • Estou usando os números: 00,000,0000,00000,000000 e fowar

O que posso fazer para obter as fontes?

O artigo I leia

    
por RookieTEC9 28.05.2015 / 00:38

1 resposta

2

Você tem que incrementar a string adicionando um 0 a cada um.

Portanto, o Console Lucida padrão é 0 . A primeira fonte personalizada é 00 , a segunda fonte personalizada é 000 .

Note que poucas fontes são utilizáveis.

Consolas é uma fonte que você pode adicionar. Além disso, no trabalho em PuTTY existem 4 TTFs que são de largura fixa, por isso, há mais dois além dos Consolas que você pode usar.

Em KB247815 :

Necessary Criteria for Fonts to Be Available in a Command Window

Q247815


The information in this article applies to:

Microsoft Windows 2000 Server
Microsoft Windows 2000 Advanced Server
Microsoft Windows 2000 Professional Edition
Microsoft Windows 2000 Datacenter Server
Microsoft Windows NT Server 4.0 Standard Edition
Microsoft Windows NT Workstation 4.0 Developer Edition


SUMMARY

For fonts to be available for use in a command session (Cmd.exe) window (on the Fonts tab in the CMD Properties dialog box), the fonts must meet certain criteria.

The fonts must meet the following criteria to be available in a command session window:

  • The font must be a fixed-pitch font.
  • The font cannot be an italic font.
  • The font cannot have a negative A or C space.
  • If it is a TrueType font, it must be FF_MODERN.
  • If it is not a TrueType font, it must be OEM_CHARSET.

Additional criteria for Asian installations:

  • If it is not a TrueType font, the face name must be "Terminal."
  • If it is an Asian TrueType font, it must also be an Asian character set.

In Windows 2000, the installation of Console Fonts is no longer automated. This was done to give the console window greater stability in multilanguage environments. An unsupported work around is available by adding the following font specific entry:

Add a String Value
Name=00
Data= "Font Name" (without "")

Into the following registry:

HKLM\Software\Microsoft\WindowsNT\CurrentVersion\Console\TrueTypeFont

The name needs to be incremented with "0" for each additional font. The Data entry needs to match the font's entry in the following registry location:

HKLM\Software\Microsoft\WindowsNT\CurrentVersion\Fonts
    
por 28.05.2015 / 05:06