M365 portal URL

User portal Login is requird to acess these portals. Office https://www.office.com/ This url takes you to the Microsoft 365 portal, where you can access various Microsoft 365 services, including Outlook for email, Microsoft Teams for collaboration, Word, Excel, PowerPoint, and more. Teams https://teams.microsoft.com/ This URL takes you directly to the Microsoft Teams web application, where you can access your Teams and join meetings, chat with colleagues, collaborate on documents, and more....

March 23, 2022 · 3 min · by Chisqi

M365 Powershell Connect

Here is to connect M365 through the powershell. Installing the module is required. Please always disconnect after you are done doing the task to clear the sesson. Azure AD Connect-azureAD # Connect Azure AD Disconnect-AzureAD # Disconnect Azure AD Az Connect-AzAccount # Connect AzAccount Get-AzSubscription # Check current AZ subscription Connect-AzAccount # Disconnect AzAccount Msol Connect-MsolService # Connect MsolService [Microsoft.Online.Administration.Automation.ConnectMsolService]::ClearUserSessionState() # Disonnect MsolService Exchange Online Connect-ExchangeOnline # Connect ExchangeOnline Disconnect-ExchangeOnline # Disconnect ExchangeOnline MS Teams Install-Module -Name PowerShellGet -Force -AllowClobber Install-Module -Name MicrosoftTeams -Force -AllowClobber Ref: https://learn....

January 12, 2022 · 1 min · by Chisqi