LEEEJEFFRIES.COM

Recent Posts

My Experiences Sizing FSLogix Profile and O365 Containers

-————-UPDATE————– Since this post was written I performed some work with FSLogix and drafted the below update. Please read that one. https://www.leeejeffries.com/fslogix-o365-container-sizing-the-final-word/ -————-UPDATE————– I’ve been doing some work with FSLogix, it’s a good product and it’s pretty simple to configure. The logs are quite easy to find but there are a few things missing fro...

-————-UPDATE————– Since this post was written I performed some work with FSLogix and drafted the below update. Please read that one. https://www.leeejeffries.com/fslogix-o365-container-sizing-the-final-word/ -————-UPDATE————– I’ve been doing some work with FSLogix, it’s a good product and it’...

Change UserPrincipalName for a user on Office 365 when synchronising with AD Connect

If you are having problems with some of your accounts in Office 365 where you have had to modify the name of an on-premise user but it’s not updating the login name of the user once an AD-Sync has completed, you can run this script below to give the user new UPN in Office 365 [cc lang=“powershell”] $currentUPN = $newUPN = Import-Module Online Connect-MSolService Get-MSolUser -UserPrincipalNa...

If you are having problems with some of your accounts in Office 365 where you have had to modify the name of an on-premise user but it’s not updating the login name of the user once an AD-Sync has completed, you can run this script below to give the user new UPN in Office 365 [cc lang=“powershel...

Enabling Exchange Online Archiving for Multiple Users with Powershell

With Office 365 being “the” new way of email, it’s important to remember to keep your inbox quite clean so it still stays quick and speedy. One of the tools that Microsoft gives us to do this is Exchange Online Archiving. A new email mailbox is added to Outlook and all email is archived based on retention policies. These retention policies are controlled centrally and it help administrator...

With Office 365 being “the” new way of email, it’s important to remember to keep your inbox quite clean so it still stays quick and speedy. One of the tools that Microsoft gives us to do this is Exchange Online Archiving. A new email mailbox is added to Outlook and all email is archived based o...

Copying Group Membership in Active Directory with Powershell

I had a requirement to configure a bunch of user accounts identically with regards to group membership. I wrote a small powershell script so that a single account could be configured and then all group memberships copied from that group account. Below is the script I used: [cc lang=“powershell”] Import-Module ActiveDirectory $sourceUser = “” $destUser = “” Get-ADUser -Identity ...

I had a requirement to configure a bunch of user accounts identically with regards to group membership. I wrote a small powershell script so that a single account could be configured and then all group memberships copied from that group account. Below is the script I used: [cc la...