目录
Set-ExecutionPolicy RemoteSigned
notepad.exe $PROFILE
Set-ExecutionPolicy RemoteSigned
Set-ExecutionPolicy RemoteSigned
如果报错,执行:
Set-ExecutionPolicy -Scope CurrentUser
然后就会提示我们输入,我们把刚刚的 RemoteSigned 输入进去
4. 验证一下是否成功了:输入get-ExecutionPolicy,系统回复Restricted,表示状态是禁止的。
若是提示了 RemoteSigned 就代表成功了。
执行 set-ExecutionPolicy RemoteSigned 失败解决方法_小刘先生很努力的博客-CSDN博客
notepad.exe $PROFILE
如果报错,找不到系统路径,执行:
if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force }
然后就可以了,
自己编写一些脚本添加进去,
function aq {
adb disconnect
}
保存,再开powdershell,就可以执行快捷操作了。