作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何更改 PowerShell 的字体?
PowerShell Preference 中只有几种字体。
有没有办法选择更多的字体?
最佳答案
当您启动 Powershell.exe 时,客户端服务器运行时子系统 (csrss.exe) 会生成一个名为 conhost.exe 的子进程。
您可以尝试以更难的方式处理字体:
Set-Location HKCU:\Console
New-Item '.\%SystemRoot%_System32_WindowsPowerShell_v1.0_powershell.exe'
Set-Location '.\%SystemRoot%_System32_WindowsPowerShell_v1.0_powershell.exe'
New-ItemProperty . FaceName -type STRING -value "Lucida Console"
New-ItemProperty . FontFamily -type DWORD -value 0x00000036
New-ItemProperty . FontSize -type DWORD -value 0x000c0000
New-ItemProperty . FontWeight -type DWORD -value 0x00000190
Set-ConsoleFont 10
关于powershell - 如何在 PowerShell 上更改字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42039488/
我是一名优秀的程序员,十分优秀!