Change email address of Office 365 group

Steps to change Office 365 group Email address:-

Current SMTP address :- test.o365group@abcd.onmicrosoft.com
Required SMTP address :- test.o365group@abcd.com

Follow the below steps in power shell using Global Administrator Credentials,

1. Connect to Exchange Online via Power shell using Global Administrator Credentials and run the below commends. First two command run separately.

Set-ExecutionPolicy Unrestricted

Start-service winrm

Import-module MSOnline
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session
Connect-MsolService -Credential $UserCredential

2. Run the below command to add required SMTP address as an alias.
Set-UnifiedGroup -Identity “X” -EmailAddresses: @{Add =”Y”}
here X is the Display Name of Office 365 group and Y is the required Email ID.
Set-UnifiedGroup -Identity “Test o365Group” -EmailAddresses: @{Add =”test.o365group@abcd.com”}

3. Promote alias as a primary SMTP address,
Set-UnifiedGroup -Identity “Test O365Group” -PrimarySmtpAddress “test.o365group@abcd.com”

4. If not required, you can remove first ID using below command.
Set-UnifiedGroup -Identity “Test o365Group” -EmailAddresses: @{Remove=”test.o365group@abcd.onmicrosoft.com”}

Source: Microsoft Tech Community

Disable Clutter for all users on Office 365

Powershell (run as admin).

First time only:

Set-ExecutionPolicy RemoteSigned

To disable clutter for all users:

$UserCredential = Get-Credential

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session

Get-mailbox -ResultSize Unlimited | Set-Clutter -Enable $false

Remove-PSSession $Session

Source: Office365 Community

Office 365 SBS2011 Outlook won’t connect or keeps changing back to local exchange – Autodiscover

On SBS Server
Command Prompt run as admin:
%windir%\system32\inetsrv\appcmd.exe add backup BeforeRemovalAutodiscover

Exchange Management Shell run as admin:
Get-AutodiscoverVirtualDirectory | fl Name, Server, InternaUrl, Identity

Remove-AutodiscoverVirtualDirectory –Identity “identity value retrieved above”

If for some reason you need to restore autodiscover on the SBS server
Command Prompt run as admin:
%windir%\system32\inetsrv\appcmd.exe restore backup BeforeRemovalAutodiscover

Source: BlogsIISNet

Source: Toronto Help Desk

Office 365 Set Password Never Expires Policy

Install Microsoft Online Services Sign-in Assistant

Install Windows Azure Active Directory Module for Windows PowerShell (64-bit version)

Windows Azure Powershell:
Connect-MSOLservice
(Enter administrator credentials)

Set password never expire for one user
Set-MsolUser -UserPrincipalName user@example.com -PasswordNeverExpires $true

Set password never expire for all users
Get-MSOLUser | set-msoluser -PasswordNeverExpires $true

Check all users PasswordNeverExpires status:
Get-MSOLUser | Select UserPrincipalName, PasswordNeverExpires

Source: Telstra Crowd Support

Technet