Exchange Online PowerShell

21V Operated Office365 Integration with Global Office365-Part 1

Welcome Back!! In this multi-series Article, we are going to how we can integrate Global Office365 Tenant with 21V Operated Office365 Tenant. What is 21V Operated Office365? Microsoft Operates Global Office 365 which is used by the public for companies and Countries those doesn’t have any limitations for the country-wise and continental level. But also […]

Exchange Online PowerShell

How to Connect 21V Hosted Office 365 Exchange Online using PowerShell

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 […]

Azure Application

Insufficient privileges to complete the operation using Azure Application

Error: When you use APPID and Secret for and azure AD, it is giving an error as follows, { “error”: { “code”: “Authorization_RequestDenied”, “message”: “Insufficient privileges to complete the operation.”, “innerError”: { “request-id”: “bcd913f3-8f4b-4e50-b83c-41b5f7149a24”, “date”: “2019-05-03T09:15:36” } } } Noticed this error in one of the Microsoft flow to assign Azure AD Roles to the […]

External Users Management

How to Create Guest Access Portal for External Users Management – Part 1

In this Article Series, We are going to see how to create Custom application Portal for the Guest Users Management. This Portal helps to Guest Users to request from External Domains or External World.. Post request received, Guest Inviter Administrators can login and approve the requests. Also it helps in auto approving the Domains and […]

Unable to install AzureADPreview Module

Unable to install AzureADPreview Module

Issue: When trying the update or install AzureADPreview it failed with the below error and not able to install. Solution: it is because AzureAD module got installed. AzureADPreview Module is the new one and many new cmdlets are introduced with AzureADPreview. To install AzureADPreview, You need to uninstall AzureAD Module and then install AzureADPreview. Open […]