Installing MSOnline is pretty Simple. Open PowerShell in Elevated Mode and run the command, Set-ExecutionPolicy -ExecutionPolicy unrestricted Install-Modue -Name MSOnline By default, When you run the command Connect-MsolService You will get connected to Global Tenant ( Public Cloud) What if you have 21Vianet operated Office 365 Azure Active Directory using PowerShell. You can use the […]
What is an Alternative Suffix? By default, When you create a user in Active Directory, Users will get the Root domain UPN as Login ID. Consider you have a root domain named ABC.com, users will get User@ABC.com as login and UPN Suffix. In this case, ABC.com acquires a company called XYZ and they are willing […]
You can use the below cmdlets to Connect to the 21V Hosted Office365 Environment. Open PowerShell in Elevated Mode and run the following commands, Set-ExecutionPolicy -ExecutionPolicy unrestricted $UserCredential = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://partner.outlook.cn/PowerShell -Credential $UserCredential -Authentication Basic -AllowRedirection Import-PSSession $Session -DisableNameChecking You can see how it is connected. You can run […]
Welcome Back!! In this Article, We will are going to see how the mail flow works when you have an Exchange Hybrid Setup. Let’s Consider, You have setup as mentioned in the above picture. Let us assume, Before we begin talking the Mail flow, we should be very clear in some basic the information to […]