PowerShell 技能连载 - 临时禁用 PSReadLine 模块

从 PowerShell 5 开始,PowerShell 控制台支持彩色文本特性,以及一系列由 PSReadLine 模块提供的新特性。

如果您从更早的 PowerShell 版本升级到 PowerShell 5,而丢失了彩色文本功能,那么您可以从 PSGallery 下载和安装 PSReadLine 模块:

1
PS C:\> Install-Module -Name PSReadLine -Scope CurrentUser

类似地,如果您的 PS5+ 控制台和以前的行为不一致,例如不会执行粘贴入的代码块,那么您可以临时禁止该模块:

1
2
3
4
5
# disable PS5+ console handler temporarily
Remove-Module psreadline

# re-enable PS5+ console handler again
Import-Module psreadline

PowerShell 技能连载 - 临时禁用 PSReadLine 模块

http://blog.vichamp.com/2017/11/20/temporarily-disabling-psreadline-module/

作者

吴波

发布于

2017-11-20

更新于

2022-07-06

许可协议

评论