To check the version, open up a PowerShell session to your Office 365 tenant and run the following command:
Get-OrganizationConfig
| ft AdminDisplayVersion,IsUpgradingOrganization
With the command for connecting to Office 365 via PowerShell, that would look something like this:
$session
=
New-PSSession
–ConnectionUri https://ps.outlook.com/powershell –AllowRedirection –Authentication Basic –Credential (
Get-Credential
) –ConfigurationName Microsoft.Exchange
Import-PSSession
$session
Get-OrganizationConfig
| ft AdminDisplayVersion,IsUpgradingOrganization
Get-OrganizationConfig | ft AdminDisplayVersion,IsUpgradingOrganization -Autosize
AdminDisplayVersion IsUpgradingOrganization
0.10 (14.16.190.8) False
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center