Link to home
Start Free TrialLog in
Avatar of Nirvana
NirvanaFlag for India

asked on

download attachments from office 365

How do i download all the attachments from the mails form office 365?
Avatar of Vasil Michev (MVP)
Vasil Michev (MVP)
Flag of Bulgaria image

Avatar of adamdalg
adamdalg

Pulled this solution from the Office 365 support site. Hope it helps.


Change the Outlook Web App mailbox policy to include and exclude the file types that you want. For more information about how to do this, see the “Add or remove file types from file access lists” section of the following Microsoft website:
View and customize settings in Outlook Web App mailbox policies
The following is an example of the Windows PowerShell commands to remove the .xml file type from the BlockedFileTypes and BlockedMimeTypes lists and add it to the AllowedFileTypes and AllowedMimeTypes lists:
Get-OwaMailboxPolicy | Set-OwaMailboxPolicy -BlockedFileTypes @{Remove = ".xml"}
Get-OwaMailboxPolicy | Set-OwaMailboxPolicy -AllowedFileTypes @{Add = ".xml"}
Get-OwaMailboxPolicy | Set-OwaMailboxPolicy -BlockedMimeTypes @{Remove = "text/xml", "application/xml”}
Get-OwaMailboxPolicy | Set-OwaMailboxPolicy –AllowedMimeTypes @{Add = "text/xml", "application/xml”}

Things to consider:•It may take several minutes before changes to the Outlook Web App policy take effect.
•Be aware that by changing the Outlook Web App mailbox policy to include file types that are blocked by default, you may make your system more vulnerable to security threats.
ASKER CERTIFIED SOLUTION
Avatar of Nirvana
Nirvana
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Nirvana

ASKER

not a great one but had to close this