gasramoto.blogg.se

Add additional accounts to outlook 365
Add additional accounts to outlook 365













add additional accounts to outlook 365
  1. ADD ADDITIONAL ACCOUNTS TO OUTLOOK 365 PASSWORD
  2. ADD ADDITIONAL ACCOUNTS TO OUTLOOK 365 LICENSE
add additional accounts to outlook 365

For your convenienve, I’ve created a Powershell function that connects you with a single command. There’s currently no option in the web interface to add multiple SMTP proxy addresses to cloud only office 365 distribution groups.

ADD ADDITIONAL ACCOUNTS TO OUTLOOK 365 LICENSE

Assigning a license is out of scope of this blog post, but it’s worth to mention that you can do it right here.Īs mentioned before, you need to enter two commands to connect to the Office 365 portal. The user must still be assigned a license. You can also take a look at your Office 365 portal. Get-Mailbox Tomh | Format-Table -AutoSize New-Mailbox -Alias tomh -Name tomh -FirstName Tom -LastName Huber -DisplayName "Tom Huber" -MicrosoftOnlineServicesID -Password (ConvertTo-SecureString -String 'Pa$$w0rd' -AsPlainText -Force) -ResetPasswordOnNextLogon $true

ADD ADDITIONAL ACCOUNTS TO OUTLOOK 365 PASSWORD

Tom must change the password at next logon. The following example creates a user account and mailbox for the user Tom Huber. When a mailbox is created, a new user is also created at the same time. Import-PSSession $Session -DisableNameCheckingįinally, check your connection by running Microsoft 365 commands like Get-Mailbox. $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri -Credential (Get-Credential) -Authentication Basic -AllowRedirection

add additional accounts to outlook 365

In order to do that we need two commands.

add additional accounts to outlook 365

Our starting point is to establish a connection to the Microsoft 365 | Exchange Online portal. In this article I will carry out adding user accounts along with adding user mailboxes with Powershell. As an administrator, you have to get familiar with the administration of cloud services, especially with the basics like creating user accounts and user mailboxes. Subscribing cloud services means less hardware maintenance, more comfort, and an “always-on” feeling. More and more companies are moving to the cloud.















Add additional accounts to outlook 365