I have used below command to initiates a connection to Azure Active Directory in Power Shell.
Connect-MsolService
I have completed required operations, But how do I disconnect? Do I wait till session expiry?!
I have used below command to initiates a connection to Azure Active Directory in Power Shell.
Connect-MsolService
I have completed required operations, But how do I disconnect? Do I wait till session expiry?!
Just close the window.
As for your connection to Office 365, although there’s a Connect-MsolService cmdlet, there’s no corresponding Disconnect-MsolService cmdlet. So for Office 365, just close the Windows PowerShell window. (Nevertheless, it’s still a good idea to do this last so you can properly disconnect from SharePoint Online, Skype for Business Online, Exchange Online, and the Security & Compliance Center.)
You can try to use the following .NET method: [Microsoft.Online.Administration.Automation.ConnectMsolService]::ClearUserSessionState()
I do have the same question. I found solution by reffering below article, We can use the .Net ClearUserSessionState method. It worked perfectly.
cmd : [Microsoft.Online.Administration.Automation.ConnectMsolService]::ClearUserSessionState()
Ref : https://www.easy365manager.com/how-to-disconnect-from-msolservice/