Category: Microsoft 365

Setting up Outlook for Office 365 / Exchange Online Etcetera
article #733, updated 3717 days ago

Try this:

http://office.microsoft.com/en-us/support/set-up-your-office-365-or-other-exchange-based-email-in-outlook-2010-or-outlook-2013-HA102823161.aspx

For Outlook 2007:

http://office.microsoft.com/en-us/office-online-help/set-up-email-in-outlook-2007-HA102823160.aspx?CTT=5&origin=HA102823161

Categories:      

==============

Turn off WINMAIL.DAT in Office365
article #669, updated 3905 days ago

The widely recommended method, is to connect to the Office365 Exchange server via PowerShell. This may need to be done in PowerShell run as administrator; certainly the first line has to be run thusly, although that one line may have to be run only once per client machine.

Set-ExecutionPolicy Unrestricted

(type Y for Yes)

$LiveCred = Get-Credential

(enter your Office365 administrative credentials)

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection
Import-PSSession $Session
Set-RemoteDomain Default -TNEFEnabled $false
Remove-PSSession $Session

Categories: