User Profile
jebujohn
Copper Contributor
Joined 6 years ago
User Widgets
Recent Discussions
Re: Azure AD license, is it tenant level or user level?
Vasil, If I want to use a conditional access policy for a subset of my enterprise (finance team), would I need to have azure ad premium p1 for the entire tenant or only for my finance team? I need to ensure that the finance team is able to login in from certain locations and place more restrictions on them. Everybody is on the same tenant.11KViews0likes0Commentsquarantine emails send to multiple users from outside
We get spam emails with over 200 of our users copied on a single email from a variety of gmail addresses with subtly different subject lines. Is there a way to create rules to move emails from outside the organisation to quarantine if they are sent with more than a fixed number of users as internal recipients? I know this is an edge use case but thought I would check Best wishes Jacob855Views0likes2CommentsRe: Bulk update Azure AD with user attributes from CSV
vipfafen $CSVrecords = Import-Csv test.csv -Delimiter "," foreach ($CSVrecord in $CSVrecords) { $usr = $CSVrecord.UserPrincipalName $manager = $CSVrecord.Manager $user = Get-AzureADUser -Filter "userPrincipalName eq '$usr'" $Managerobj = Get-AzureADUser -Filter "userprincipalname eq '$manager'" if ($user) { try{ $user | Set-AzureADUserManager -RefObjectid $Managerobj.objectid } catch { $FailedUsers += $usr Write-Warning "$usr user found, but FAILED to update." } } else { Write-Warning "$usr not found, skipped" $SkippedUsers += $usr } }12KViews1like3CommentsRe: Merging on prem domain with cloud domain to manage in Azure AD
The covid situation here is quite bad and I got caught with my clinical responsibilities for the last week. Thijs Lecomte we are hoping to manage all users on AAD once the migration is done. No role for AD after the migration.1.5KViews0likes1CommentBulk update Azure AD with user attributes from CSV
I am looking for a way to update user attributes (OfficePhone and Department) for about 500 users from a CSV to AzureAD using a powershell. Does anyone know of a script that I could use? I am new here and if I have not given enough information, please let me know. I tried using Set-AzureADUser piping records using a foreach statement from a csv that I imported, but it was throwing up errors. Thanks! JacobSolved196KViews4likes71Comments
Groups
Recent Blog Articles
No content to show