Scripts\activate.ps1,因为在此系统上禁止运行脚本_Set-ExecutionPolicy : 无法绑定参数“ExecutionPolicy解决方法

Set-ExecutionPolicy : 无法绑定参数“ExecutionPolicy”。无法将值“RomoteSigned”转换为类型“Microsoft.PowerShell.Executi
onPolicy”。错误:“无法将标识符名称 RomoteSigned 与有效的枚举器名称相匹配。请指定以下枚举器名称之一,然后重试:
Unrestricted, RemoteSigned, AllSigned, Restricted, Default, Bypass, Undefined”
所在位置 行:1 字符: 21
+ set-ExecutionPolicy RomoteSigned
+ ~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Set-ExecutionPolicy],ParameterBindingException
+ FullyQualifiedErrorId : CannotConvertArgumentNoMessage,Microsoft.PowerShell.Commands.SetExecutionPolicyCommand

 

解决方法:

管理员权限运行powershell,进入system32目录:

PS C:\WINDOWS\system32> get-ExecutionPolicy -list

Scope ExecutionPolicy
----- ---------------
MachinePolicy Undefined
UserPolicy Undefined
Process Undefined
CurrentUser Undefined
LocalMachine Restricted


PS C:\WINDOWS\system32> set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

执行策略更改
执行策略可帮助你防止执行不信任的脚本。更改执行策略可能会产生安全风险,如 https:/go.microsoft.com/fwlink/?LinkID=135170
中的 about_Execution_Policies 帮助主题所述。是否要更改执行策略?
[Y] 是(Y) [A] 全是(A) [N] 否(N) [L] 全否(L) [S] 暂停(S) [?] 帮助 (默认值为“N”): a

再次查看:

PS C:\WINDOWS\system32> get-ExecutionPolicy -list

Scope ExecutionPolicy
----- ---------------
MachinePolicy Undefined
UserPolicy Undefined
Process Undefined
CurrentUser RemoteSigned
LocalMachine Restricted

 

已经获得权限:
PS C:\WINDOWS\system32> get-ExecutionPolicy
RemoteSigned
PS C:\WINDOWS\system32>

如果想恢复初始状态,则输入以下命令:

set-ExecutionPolicy Default

posted @ 2023-12-26 13:55  txwtech  阅读(550)  评论(0编辑  收藏  举报