gpt4 book ai didi

azure - 无法通过 Powershell 创建资源组

转载 作者:行者123 更新时间:2023-12-03 07:01:17 26 4
gpt4 key购买 nike

我正在尝试通过 PowerShell 创建一个资源组。

我使用以下命令来实现这一点:

 New-AzResourceGroup -Name "RG01" -Location "Central US"

我正在关注此 Microsoft 文档:https://learn.microsoft.com/en-us/powershell/module/az.resources/new-azresourcegroup?view=azps-7.5.0

我在 PowerShell 中安装了 Az 模块。我仍然遇到以下错误:

enter image description here

我做错了什么?我对 Azure 和 PowerShell 非常陌生。

最佳答案

更改当前用户范围的 RemoteSigned 执行策略(管理员权限)。

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

导入 Az 资源模块

Import-Module Az.Resources

执行 Az 模块命令以创建资源组。

New-AzResourceGroup -Name "RG01" -Location "Central US"

执行策略类型

受限(默认) - 系统上无法执行本地、远程或下载的脚本。
AllSigned - 所有运行的脚本都需要进行数字签名。
RemoteSigned - 所有远程脚本 (UNC) 或下载的都需要签名。
无限制 - 任何类型的脚本都不需要签名。

新变更的范围

LocalMachine(默认) - 执行策略影响计算机的所有用户。
CurrentUser - 执行策略仅影响当前用户。
进程 - 执行策略仅影响当前的 Windows PowerShell 进程。

关于azure - 无法通过 Powershell 创建资源组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72321605/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com