windows-server-2008 – 如何设置ExecutionPolicy:拒绝访问注册

我正在以管理员身份运行
Windows Server 2008,我尝试将ExecutionPolicy设置为PowerShell v2的Remotesigned,如下所示:

Set-ExecutionPolicy RemoteSigned

但是我收到了这个错误:

Set-ExecutionPolicy : Access to the registry key 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft
.PowerShell' is denied.
At line:1 char:20
+ Set-ExecutionPolicy <<<<  RemoteSigned
    + CategoryInfo          : NotSpecified: (:) [Set-ExecutionPolicy],UnauthorizedAccessException
    + FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.PowerShell.Commands.SetExecutionPolicyComma
   nd

如何解决这个问题?

右键单击Powershell快捷方式,然后选择“以管理员身份运行”

dawei