Electron-builder.ps1 无法加载,因为正在运行

问题描述 投票:0回答:2

我尝试使用 js electro 将网站转换为桌面应用程序,我在构建 exe 应用程序时发现了这个问题:

electron-builder : File C:\Users\firas lweti\AppData\Roaming\npm\electron-builder.ps1 cannot be loaded because running
scripts is disabled on this system. For more information, see about_Execution_Policies at
https:/go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:1
+ electron-builder --win
+ ~~~~~~~~~~~~~~~~
    + CategoryInfo          : SecurityError: (:) [], PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess

enter image description here

我需要将我的网站转换为桌面应用程序

javascript electron desktop-application
2个回答
2
投票

这是一个拒绝脚本执行的 powershell 配置。 你需要将其设置为允许 打开终端并输入:

设置执行策略远程签名

会要求确认,选择选项[A]确认

enter image description here


0
投票

第1步:

在管理员模式下打开 Windows Powershell(不是 cmd)。

第2步:

执行以下命令:

Set-ExecutionPolicy RemoteSigned

要求确认时,输入Y

第三步:

现在运行

electron-builder -w zip

© www.soinside.com 2019 - 2024. All rights reserved.