No announcements
Found 1237186 threads
-
0 Votes
How do I apply filter to Get-AzureADUser cmdlet using PowerShell to only retrieve the users created in the last 24 hours in Azure AD?
Since filters in the Azure AD module and Graph in general are crap, and the "createdDateTime" attribute is not directly exposed, I'd recommend using the good old MSOnline ...Answered | 2 Replies | 461 Views | Created by Jack63_01 - Thursday, April 16, 2020 9:34 AM | Last reply by Lisa Chen1226 - Friday, April 17, 2020 1:31 AM -
0 Votes
Get-AzureADUser
Get-AzureADUserUnanswered | 1 Replies | 1618 Views | Created by BatmanRnB - Friday, May 29, 2020 7:11 PM | Last reply by jrv - Friday, May 29, 2020 8:41 PM -
0 Votes
get-azureaduser extension
And when I run 2nd one I get no results: Get-azureadUser -all $true -Filter 'accountEnabled eq true' | ...Answered | 6 Replies | 1091 Views | Created by waer01 - Wednesday, November 6, 2019 1:22 PM | Last reply by jrv - Wednesday, November 6, 2019 6:36 PM -
0 Votes
Get-AzureADUser O365 license info
I figured it out :) Connect-AzureAD Get-AzureADUser -All $true -Filter "UserType eq 'Guest'" | Where-Object {$_.Mail ...Answered | 3 Replies | 2526 Views | Created by David4576 - Thursday, June 11, 2020 12:37 PM | Last reply by David4576 - Thursday, June 11, 2020 3:08 PM -
1 Votes
Get-DistributionGroup | select-object managedby returns odd names
Get-DistributionGroup | select managedBy | foreach { $mgrs=$_.ManagedBy foreach($mgr in $mgrs) ...Answered | 3 Replies | 654 Views | Created by Paul Judson - Friday, January 17, 2020 10:38 PM | Last reply by Beverly Gao - Thursday, January 23, 2020 1:05 AM -
0 Votes
Get-AzureADUser - Guest User - UserState field
This info is being retrieved via Get-AzureADUser command of AzureAD powershell module So, it is a scripting and a technical ...Unanswered | 4 Replies | 1020 Views | Created by junidev - Saturday, July 25, 2020 4:26 PM | Last reply by junidev - Tuesday, August 25, 2020 7:12 PM -
1 Votes
Set-AzureADUser for each object import csv error
i can understand the part where you need set-AzureADuser -objectid with the user specific object id base on their upn but if let say i have 500 users that i want to do in bulk via csv file ...Proposed | 5 Replies | 919 Views | Created by junqi89 - Saturday, August 15, 2020 6:37 AM | Last reply by Vector BCO - Saturday, August 15, 2020 11:24 AM -
0 Votes
Directory/File level security in Azure Storage V2
See:Answered | 3 Replies | 856 Views | Created by Poorva Sudame - Friday, May 3, 2019 4:22 AM | Last reply by SumanthMarigowda-MSFT - Monday, May 13, 2019 9:15 AM -
0 Votes
updating company data in office 365 via azure automation
It Looks like I can edit the user by using an Extension property: Trying to use the following: Set-AzureADUser -ObjectId john@contoso.com ...Answered | 16 Replies | 2395 Views | Created by Brydwatcher - Tuesday, November 22, 2016 1:08 PM | Last reply by Brydwatcher - Friday, December 9, 2016 9:37 AM -
0 Votes
How do I get the custom attribute value from Azure AD user using PowerShell Script?
Hi, Jack63, Per my test, you will not be able to get exchange custom attributes via Azure AD in PowerShell.Answered | 1 Replies | 412 Views | Created by Jack63_01 - Wednesday, April 29, 2020 5:41 PM | Last reply by Jerry Xu4869 - Thursday, April 30, 2020 8:04 AM -
0 Votes
Can we get the users list from the group "Everyone except external users"
Your question, ultimately, doesn't make sense as you would just instead query for all of the users in your tenant (but again, you don't _need_ to -- it contains all users); you can useAnswered | 6 Replies | 1332 Views | Created by Roopak Sahoo - Monday, November 25, 2019 7:04 AM | Last reply by Trevor Seward - Thursday, November 28, 2019 6:07 AM -
1 Votes
Add Users to Azure AD group
I have used the below syntax and it worked for me $users=Get-Content "C:\users" $group=Get-AzureADGroup -all $true -searchstring ...Answered | 4 Replies | 1867 Views | Created by Glenn Maxwell - Sunday, August 18, 2019 5:53 PM | Last reply by Niko.Cheng - Monday, August 26, 2019 2:33 AM -
0 Votes
Issue creating new users in Azure with New-AzureADUser cannot add Email address from company as Authentication contact info
I'm creating new users in Azure with New-AzureADUser and cannot add the Email address from company as Authentication contact info by powershell I know its a Collection of ... -
0 Votes
How to set contact information attributes on a Shared Mailbox with powrshell ?
Shared mailboxes DO have a corresponding user object, so you can still use Set-AzureADUser.Answered | 3 Replies | 478 Views | Created by D4t4center - Tuesday, May 8, 2018 2:23 PM | Last reply by D4t4center - Thursday, June 14, 2018 10:11 AM -
1 Votes
ShP AD powershell script to remove contact information
After connecting to AAD use this: $aad_users = Get-AzureADUser -All foreach ($aad_user in ...Answered | 12 Replies | 783 Views | Created by Martin Kotrc - Wednesday, December 20, 2017 11:17 AM | Last reply by Martin Kotrc - Tuesday, January 2, 2018 12:28 PM -
0 Votes
B2B guest user not in GAL despite Azure AD value being correct
Hi, After running commands below, this guest user will be prepared to show in GAL: Set-AzureADUser -ObjectId cfcbd1a0-ed18-4210-9b9d-cf0ba93cf6b2 ...Answered | 2 Replies | 854 Views | Created by Sebastian Stauber - Monday, January 20, 2020 10:28 AM | Last reply by Kyle.Xu - Thursday, January 23, 2020 7:52 AM -
0 Votes
Using PowerShell, how to set & get the Extension Attribute 5 value for Azure AD user?
Hi Jack, Set values for extension properties: Set-AzureADUserExtension -ObjectId $UserId ...Answered | 3 Replies | 999 Views | Created by Jack63_01 - Thursday, May 21, 2020 4:11 AM | Last reply by Julie Wang - Monday, May 25, 2020 2:07 AM -
1 Votes
Why is my variable blank after an import?
When I run the script, I get the error.Answered | 1 Replies | 598 Views | Created by David_G_A - Wednesday, August 28, 2019 8:06 PM | Last reply by jrv - Wednesday, August 28, 2019 8:37 PM -
0 Votes
in-cloud azure/o365 accounts without mail attribute value
I have similar issue , even I'm creating new users in Azure with New-AzureADUser and cannot add the Email address from company as Authentication contact info by powershell, should I Do it by ...Answered | 3 Replies | 1129 Views | Created by Dieter Tontsch, mobileX - Monday, March 18, 2019 2:18 PM | Last reply by pablo Villaronga - Wednesday, May 8, 2019 9:43 AM -
0 Votes
How to delete an Office365 mailbox if the user has an 'Office 365 Enterprise E1' or 'E3' subscription?
(Get-AzureADUser -SearchString three).provisionedplans CapabilityStatus ProvisioningStatus ServiceAnswered | 8 Replies | 5831 Views | Created by A. Galkin - Friday, December 21, 2018 2:09 PM | Last reply by A. Galkin - Wednesday, August 28, 2019 9:40 AM - Items 1 to 20 of 1237186 Next ›
No announcements