Forum Discussion
O365 Migration
Biju Daniels wrote:Can anyone tell me where can I download AdministrationConfig-V1.1.166.0-GA.msi file.. It takes me to this link
https://docs.microsoft.com/en-us/office365/enterprise/powershell/connect-to-office-365-powershell
and from there it took me to Microsoft Collaborate Page, where I couldn't get this download to connect to O365 Powershell
I'm looking for the same file.
I'm trying to help a customer that needs to set a few accounts to never expire.
TekMan7d0 wrote:
Biju Daniels wrote:Can anyone tell me where can I download AdministrationConfig-V1.1.166.0-GA.msi file.. It takes me to this link
https://docs.microsoft.com/en-us/office365/enterprise/powershell/connect-to-office-365-powershell
and from there it took me to Microsoft Collaborate Page, where I couldn't get this download to connect to O365 Powershell
I'm looking for the same file.
I'm trying to help a customer that needs to set a few accounts to never expire.
You can do this in PowerShell with the soon to be deprecated MSOL module :
Install-Module -Name MSOnline
Connect-MsolService
Set-MsolUser -UserPrincipalName usertobemodified@domainblabla -PasswordNeverExpires $true
To revert changes use -PasswordNeverExpires $false