答案1
您可以使用 PowerShell 中的 cmdlet 将用户分配给本机应用程序。
以下 cmdlet 将用户分配给没有角色的应用程序。
$appId = (Get-AzureADApplication -SearchString “<Your App's display name>”).AppId
$user = Get-AzureADUser -searchstring "<Your user's UPN>"
$servicePrincipal = Get-AzureADServicePrincipal -Filter “appId eq ‘$appId'”
New-AzureADUserAppRoleAssignment -ObjectId $user.ObjectId -PrincipalId $user.ObjectId -ResourceId $servicePrincipal.ObjectId -Id ([Guid]::Empty)
有关将用户分配给应用程序角色的命令的更多信息,请参阅以下文章。