为 Windows PowerShell 设置 alias (命令行命令别名)

参考博客:https://blog.csdn.net/lei_qi/article/details/106592404

1 创建文件

执行echo $PROFILE命令,确定新建文件的名称和位置

echo $PROFILE

就是下面的位置

C:\Users\xxxxx\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1

2 按格式输入命令

function 别名 { 需要替代的命令 }
function e {exit}

3 执行设定

管理员 身份打开Powershell 执行命令

Set-ExecutionPolicy RemoteSigned
文章目录