Comparison: Microsoft Azure B2C vs Okta Identity Cloud
Just something one of my colleagues had written up and thought was interesting to share. I don’t take credit for it nor full responsibility of accuracy of it. Feel free to rebuttal.
Just something one of my colleagues had written up and thought was interesting to share. I don’t take credit for it nor full responsibility of accuracy of it. Feel free to rebuttal.
You might have to do reporting and want a list of all users in Azure AD which have a particular license.. Following is an easy way to do so
1 2 3 4 5 |
Connect-MsolService Get-MsolAccountSku Get-MSOLUser -All | where {$_.isLicensed -eq "TRUE" -and $_.Licenses.AccountSKUID -eq "TENANTNAME:AAD_PREMIUM"} | select displayname,userprincipalname | export-CSV C:\licensedusers.csv -NoTypeInformation |
Get-MsolAccountSku will give you a table of all the License Types you have and count AccountSkuId ActiveUnits WarningUnits ConsumedUnits TENANTNAME:AAD_BASIC 300000 0 1 TENANTNAME:AAD_PREMIUM 300000 …
AzureAD: Get List of all users with a particular license Read More »
When you run the command
1 |
Get-ADSyncScheduler |
You get an output similar to AllowedSyncCycleInterval : 00:30:00 CurrentlyEffectiveSyncCycleInterval : 01:00:00 CustomizedSyncCycleInterval : 01:00:00 NextSyncCyclePolicyType : Delta NextSyncCycleStartTimeInUTC : 18/05/2017 10:55:42 PM PurgeRunHistoryInterval : 7.00:00:00 SyncCycleEnabled : True MaintenanceEnabled : True StagingModeEnabled : False SchedulerSuspended : False SyncCycleInProgress : False You will notice that the time is in …
I’ve been playing recently on try to figure out how I can extend the Azure AD Schema for my tenant. In my endeavor, I have come across (till now) two way to do it: Using AADConnect and selecting directory extension to create the attribute in AzureAD in the form of “extension_{AppClientId}_{attributeName}“. This method works only …
Extending Azure AD Schema via Graph API – The n00b Guide Read More »