Office 365: Microsoft activates Clutter

Microsoft has started to activate Clutter for Office 365 customers. Clutter is designed to help clean up the inbox automatically and distinguish important from unimportant emails. Clutter works in a similar way to some spam filters; emails have to be moved to a folder so that Clutter can "learn". There is an article about this on the Office blog: http://blogs.office.com/2014/11/11/de-clutter-inbox-office-365/ Clutter is ... Read more

Outlook 2010/2013: Change the display name of the mailbox

When users change their name and their user name and email address have been changed, users sometimes complain that Outlook still displays their old name or email address: The reason for this is as follows: When Outlook 2010/2013 is set up, the user's e-mail address is stored in the Outlook profile. You can therefore change the user name and e-mail address ... Read more

Office 365: Connect to Exchange via Powershell

The following lines can be used to establish a connection to the Office 365 Exchange Management Shell: $Creds = Get-Credential $PSsession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri -Credential $creds -Authentication Basic -AllowRedirection Import-PSSession $PSsession Nothing else needs to be installed on the local PC. A list of all commands can be obtained with "get-command". Attention: Not all commands are ... Read more

Office 365: Connect account with PowerShell

You can also manage Office 365 via PowerShell, which is of course particularly interesting for your own scripts: First download and install the "Microsoft Online Services Login Wizard": http://www.microsoft.com/de-DE/download/details.aspx?id=39267 For an operating system in German, the following registry entry must also be set (in my case it was necessary): Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSOIdentityCRL] "MSOIDCRLVersion"="7.250.4551.0" Without the registry ... Read more