gpt4 book ai didi

azure - azure 函数中的 Connect-azureAD powershell

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

我需要使用 powershell 脚本连接到 azure 函数应用程序中的 AD。 (因为它在功能中,我需要在没有提示的情况下执行此操作)我正在尝试这个:

# Import AzureAD 
Import-Module "D:\home\site\modules\AzureAD.psd1" -ErrorAction SilentlyContinue

$appId = "myAppId"
$thumb = "certThumb"
$tenantId = "myTenantId"
Connect-AzureAD -TenantId $tenantId -ApplicationId $appId -CertificateThumbprint $thumb

不幸的是我收到以下错误:

The term 'Connect-AzureAD' is not recognized as the name of a cmdlet, function, script file, or operable program.

我将 azureAd 模块复制到函数应用程序的文件系统中,但看起来仍然导入它没有给出任何结果。

你知道解决的方法吗?

最佳答案

在 Azure Functions 中使用 AzureAD 模块现在需要解决方法:https://github.com/Azure/azure-functions-powershell-worker/issues/232#issuecomment-536744760

这个问题可能很快就会得到解决。

顺便说一下,不要将模块复制到您的应用程序中,而是考虑使用 Managed Dependencies feature

关于azure - azure 函数中的 Connect-azureAD powershell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58189800/

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