Quantcast
Channel: Email – Mountain Prophet
Viewing all articles
Browse latest Browse all 21

RTF Format / Winmail.dat in Office365 per PowerShell verhindern

$
0
0

Ein Quicky für uns Office365 User, die von den verbeutelten Winmail.dat Anhängen genervt sind – gerade auch für Nutzer von Office 2011 aufm Apple Mac interessant: Anleitung für Powershell wie vom MS Support gepostet…

Eine Einführung zum Thema Powershell ist hier:  http://help.outlook.com/de-de/140/cc546278.aspx
bzw. in meinem Post zum Thema Passwort Ablauf in Office365 verhindern

Folgende Schritte in der PowerShell nacheinander ausführen:

 

$LiveCred = Get-Credential

$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


Viewing all articles
Browse latest Browse all 21