Category: Office 365

Sharepoint Online recursive permissions.

Hi, When You migrate from a local fileshare, You will have a problem with recursive permissions from parent object. Here is script that can scan thru large library (5000+ items) and reset recursive permissions to them.

Orginal source for…

Continue Reading Sharepoint Online recursive permissions.

Outlook 2016 and ADAL

Hi, Yesterday there was the following scenario with a customer. – User mailboxes were migrated with third party tools to a new Office 365 tenant. – UserPrincipalName stayed the same. – Employees used the same laptop and profiles than before….

Continue Reading Outlook 2016 and ADAL

Office 365 Group and alias email-address.

If You want to archive this You have to use Powershell. Connect to Exchange Online Powershell and use the command below:

Happy Powershelling,

Continue Reading Office 365 Group and alias email-address.

Recipient deferred because there is no Mdb.

So You see this error in NDR when the message bounces back. In my case I had a normal AD User with mail-attribute populated. Exchange figured out that this user has a mailbox inside the organization. It wasn’t. The user…

Continue Reading Recipient deferred because there is no Mdb.

MRSProxy Endpoint error while doing remote move migration

With Exchange 2016 Hybrid setup, you might encounter an error while doing remote move migration. After selecting mailbox to move, the wizard gives you an error, that the “Endpoint MRSProxy” connection cannot be completed. After running command Test-MigrationServerAvailability -ExchangeRemoteMove -RemoteServer “ExternalUrl” You…

Continue Reading MRSProxy Endpoint error while doing remote move migration

Migrate files to Onedrive with Powershell script.

Jos Lieben wrote a really complex script for automating Onedrive For Business provisioning. http://www.lieben.nu/liebensraum/o365migrator/ We have tested it and it works great. It has the following features. We have tested this script and it really works. Here You can download the…

Continue Reading Migrate files to Onedrive with Powershell script.

Get a Msolusers with License details to seperate CSV-files.

Hi again, Today I found a script export users and licenses to csv-file. This one worked out nicely 🙂 http://sikkepitje.blogspot.fi/2016/10/get-msoluserlicense.html

Continue Reading Get a Msolusers with License details to seperate CSV-files.

Script that assigns Office 365 licenses based on Group membership.

Hi, Again Johan the author at 365lab.net wrote a nice script. It will change user license based on AD Group Membership.

Continue Reading Script that assigns Office 365 licenses based on Group membership.

O365 hybrid mailbox move, largeitem skipped warnings

When migrating mailboxes to O365 exchange online, maximum item size is limited to 150 MB. To move these items, you can export these to pst -file and you can import these back after mailbox is migrated. With this script to find users / mailboxes…

Continue Reading O365 hybrid mailbox move, largeitem skipped warnings

Get all user lisences from Office 365 to csv.

Hi, Today I had to get a list from Office 365 with UserPrincipalName and MsolAccountSku. So here is the trick-script. $ReportPath = “c:userlist.csv” Add-Content -value (“UserPrincipalName”+”,”+”IsLicensed”+”,”+ “Licenses”) -Path $ReportPath $AllUsers = Get-MsolUser -All foreach ($User in $AllUsers) {  $UserPrincipalName =…

Continue Reading Get all user lisences from Office 365 to csv.