Update: After contacting Veeam support they attended me that there is a private fix voor version 912. stop all jobs stop “Veeam Backup for Microsoft Office 365 Service” replace Veeam.Ews with the DLL from the archive https://storage.veeam.com/Fix_113114_fbcf2c440c.zip in C:\Program Files\Veeam\Backup365 (don’t forget to back up the original DLL) Start “Veeam BackupRead More →

More and more companies are using Office 365 (O365) nowadays. Because it’s a SaaS service many people think that they don’t have to think about security. This is a common made mistake. Log on to https://securescore.office.com with you (admin) Office 365 credentials and you see your current score. (Pictures taken fromRead More →

For a MDM project I had to make an dump which users are using which devices to (active)sync with their Office 365 mailboxes. This is how I did that : Get-Mailbox -ResultSize Unlimited | ForEach {Get-MobileDeviceStatistics -Mailbox:$_.Identity} | Select-Object @{label=”User” ; expression={$_.Identity}},DeviceModel,DeviceOS, lastsuccesssync | Export-csv F:\powershell\activesync.csv Running the above commandRead More →

Use the following Powershell script to connect to Azure Active Directory and Microsoft O365. This enables you to use all the O365 Powershell commands. #Connecting to Exchange Online and Azure Active Directory #This first command will import the Azure Active Directory module into your PowerShell session. Import-Module MSOnline #Capture administrativeRead More →

Use the following steps to delegate (Calender) rights to a specific user. The first step is to specify your (administrator) credentials: $LiveCred = Get-Credential Then create the session: $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic –AllowRedirection Now import the Office 365 session using the following command:Read More →