我需要使用 powershell 脚本在 azure function app 中连接到 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 模块复制到函数应用程序的 fs 中,但仍然看起来导入它并没有给出任何结果。
你知道解决它的方法吗?