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.
関数アプリの fs に azureAd モジュールをコピーしましたが、インポートしても結果が得られないようです。
あなたはそれを解決する方法を知っていますか?