-1

I've been finding Powershell commands to change Office 365 Tenant Display name or Organization Name but unable to find any. The reason why I need it through Powershell is because I have 500 advisors and each advisor has it's own Office 365 tenant account. Login to each tenant one by one and changing names will take much of my time, so I need help if Powershell can do this for me as quickly as possible. Any help is much appreciated.

Organization Name

Tenant Name under Properites

JoinRaza
  • 1
  • 2

1 Answers1

0

You should read the official Azure Active Directory V2 PowerShell documentation. There are

Because Get-AzureADTenantDetail can list the DisplayName but Set-AzureADTenantDetail can only change the contact information (-MarketingNotificationEmails, -SecurityComplianceNotificationMails, -SecurityComplianceNotificationPhones & -TechnicalNotificationMails) this strongly suggests there's no PowerShell command for changing the display name.

Esa Jokinen
  • 46,944
  • 3
  • 83
  • 129
  • Thank you Esa Jokinen, I in fact checked these two Commands and found them not useful in my case, so thought to ask a question here if any Office 365 Powershell expert can suggest another command if any. – JoinRaza Jul 15 '20 at 14:04
  • I'd like to be wrong this time. :) – Esa Jokinen Jul 15 '20 at 14:08