无法加载文件C:UsersxxxDocumentsWindowsPowerShellprofile.ps1,因为在此系统上禁止运行脚本

Posted Xavier Jiezou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无法加载文件C:UsersxxxDocumentsWindowsPowerShellprofile.ps1,因为在此系统上禁止运行脚本相关的知识,希望对你有一定的参考价值。

问题描述

打开 PowerShell 提示如下报错信息。

Windows PowerShell
版权所有(C) Microsoft Corporation。保留所有权利。

安装最新的 PowerShell,了解新功能和改进!https://aka.ms/PSWindows

. : 无法加载文件 C:\\Users\\87897\\Documents\\WindowsPowerShell\\profile.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参
阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
所在位置 行:1 字符: 3
+ . 'C:\\Users\\87897\\Documents\\WindowsPowerShell\\profile.ps1'
+   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : SecurityError: (:) [],PSSecurityException

原因分析

输入 get-ExecutionPolicy 输出 Restricted,即脚本执行策略受限

PS C:\\Windows\\system32> get-ExecutionPolicy
Restricted

解决方案

更换脚本执行策略:set-ExecutionPolicy RemoteSigned,然后输入 Y

PS C:\\Windows\\system32> set-ExecutionPolicy RemoteSigned

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

更换完成后,再次使用命令 get-ExecutionPolicy 查看脚本执行策略。

PS C:\\Windows\\system32> get-ExecutionPolicy
RemoteSigned

可以发现已经更改了。问题完美解决,over~~😊

参考来源

https://blog.csdn.net/weixin_43534549/article/details/122254832

以上是关于无法加载文件C:UsersxxxDocumentsWindowsPowerShellprofile.ps1,因为在此系统上禁止运行脚本的主要内容,如果未能解决你的问题,请参考以下文章

无法加载符号文件和 UDID 不匹配 - 如何修复?

系统无法加载配置文件怎么办

电脑开机无法加载配置文件是怎么回事怎么处理

笔记本电脑无法开机显示无法加载用户配置文件怎么解决呢

加载自动加载文件时出现“无法打开加载文件”错误

linux+nginx ,js无法加载 .是啥原因