无法为CurrentUser设置Powershell ExecutionPolicy

以下是我正在运行的命令的示例:
PS C:\> Get-ExecutionPolicy -List 

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


PS C:\> Set-ExecutionPolicy Unrestricted -Scope CurrentUser
PS C:\> Get-ExecutionPolicy -List

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

我想将CurrentUser设置为Unrestricted,但我似乎无法这样做.我检查了this MSDN document中概述的组策略,但未找到任何已配置的内容.

关于如何设置这个的任何线索?

像所有其他人一样,这似乎是Windows 10预览版本中的一个错误.我通过简单地提供-Force参数让它工作.

本地机器的设置:

Set-ExecutionPolicy RemoteSigned -Force

当前用户的设置:

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force

相关文章

(1)when you ping a computer from itsafe,the ping command should return the local IP address. (...
1、点击win菜单,点击设置图标 2、选择系统选项 3、选择应用与程序选项 4、拉到最下方,选择程序与功能...
目前一直直接往Windows 2008 R2 Server中复制文件(暂时还没有搭建ftp服务),突然不能复制了,于是百度...
windows下使用vscode配合xebug调试php脚本 要下载有php_xebug.dll扩展的版本,最新版可能没有这个扩展,p...
在控制面板的程序与功能里启用和关闭windows功能打开,适用于linux的windows子系统
效果演示 推荐一个非常牛的文档网站生成器:docsify 我通过这个工具,成功将码云上的个人学习笔记发布到...