windows

powershell 自动补全

管理员身份运行powershell:

按键盘上的Win+X键,选择以管理员身份运行powershell

解除ps1脚本安全模式:
Set-ExecutionPolicy RemoteSigned
按Y
安装自动补全:
Install-Module PSReadLine -RequiredVersion 2.1.0
询问是否安装,输入Y确认安装,询问是否信任存储库,输入A,信任存储库。
检测是否有配置好文件:
Test-path $profile

如果返回是‘false’

执行下面:

New-item –type file –force $profile

如果返回是ture,直接下一步

编辑profile配置文件:
notepad $profile
#Shows navigable menu of all options when hitting Tab
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete
#Autocompletion for arrow keys
Set-PSReadlineKeyHandler -Key UpArrow -Function HistorySearchBackward
Set-PSReadlineKeyHandler -Key DownArrow -Function HistorySearchForward
#auto suggestions
Import-Module PSReadLine
Set-PSReadLineOption -PredictionSource History
重新启动powershell

留言

您的电子邮箱地址不会被公开。 必填项已用 * 标注