AD Azure
2 TopicsGet-AzureADUserManager : Cannot bind argument to parameter 'ObjectId' because it is null.
Hi All, I am trying to fetch the Manager's Manager using the "Get-AzureADUserManager" function by passing ObjectId of manager. However while passing the manager's object to get his/her manager , getting an error below : Please help at the earliest. Code : foreach($user in $users) { $row = $Datatable.NewRow() $manager=Get-AzureADUserManager -ObjectId $user.ObjectId $seniorM=Get-AzureADUserManager -ObjectId $manager.ObjectId $row.Name=$user.GivenName $row.Surname=$user.Surname $row.manager=$manager.DisplayName $row.seniorM=$seniorM.DisplayName $Datatable.Rows.Add($row) } Error Message : Get-AzureADUserManager : Cannot bind argument to parameter 'ObjectId' because it is null. At line:29 char:43 + $seniorM=Get-AzureADUserManager -ObjectId $manager.ObjectId + ~~~~~~~~~~~~~ + CategoryInfo : InvalidData: (:) [Get-AzureADUserManager], ParameterBindingValidationException + FullyQualifiedErrorId : ParameterArgumentValidationErrorNullNotAllowed,Microsoft.Open.AzureAD16.PowerShell.GetUserManagerSolved8.7KViews0likes2CommentsConfigure AD FS 2016 and Azure MFA - How do I get the guid for Azure Multi-Factor Auth Client?
Hi All, I am trying to Configure AD FS 2016 and Azure MFA as shown on the Microsoft site: https://docs.microsoft.com/en-us/windows-server/identity/ad-fs/operations/configure-ad-fs-and-azure-mfa#step-1-generate-a-certificate-for-azure-mfa-on-each-ad-fs-server-using-the-new-adfsazuremfatenantcertificate-cmdlet It says "981f26a1-7f43-403b-a875-f8b09b8cd720 is the guid for Azure Multi-Factor Auth Client" but doesn't show how we get this GUID. When I try the command I get an error message I think is related to the GUID. How do I get the guid for Azure Multi-Factor Auth Client? I hope you can help ColinSolved9.4KViews0likes2Comments