在“ Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force”之后还原PowerShell

时间:2018-10-20 15:03:35

标签: powershell

由于我需要使用npm手动更新npm-windows-upgrade

我放

Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force

设置到我的PowerShell。

现在我已经完成了对npm的更新,因此我需要将PowerShell设置恢复为以前的状态,即回滚Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force,该怎么做?

1 个答案:

答案 0 :(得分:3)

您通过get-executionpolicy获得了当前的执行策略 因此,您可以将该状态保存在变量中,以后再用于重置状态。

$ep = get-executionpolicy set-executionpolicy $ep