1. 安装PSReadLine 2.1.0
Install-Module PSReadLine -RequiredVersion 2.1.0
2. 检查是否存在配置文件
Test-path $profile
创建配置文件(不存在的话)
New-item –type file –force $profile
3. 编辑配置文件
notepad $profile
4. 运行该指令后退出终端
Set-ExecutionPolicy RemoteSigned
5. 配置文件加上上面配置
Import-Module PSReadLine
Set-PSReadLineOption -PredictionSource History
效果如下:
键盘右键可以补全代码