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. 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 …

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: 1234Import-Module ActiveDirectory $sourceUser = "" $destUser = "" …

Cleaning up unlinked Group Policy objects in Active Directory with Powershell

Just a quick script below to run through all unlinked GPO’s in a domain, back them up, export a report and then remove them. Sweet and short but useful. (# Comment the remove line if you don’t want to remove any) 123456789101112131415Import-Module GroupPolicy
 $backupPath="C:\Users\jeffrl-p\Desktop\Backup_GPO" 
if (-Not(Test-Path -Path $backupPath)) {
 mkdir $backupPath
 }
 
 Get-GPO -All …

Migrating Virtual Machine Storage from Standard to Premium in Azure Classic

In Azure you can choose between 3 different types of storage for your virtual machines. These 3 different types are: Standard Blob Storage Capped to 500 IOPs per disk for a standard VM 60MBps throughput rate per disk https://docs.microsoft.com/en-us/azure/virtual-machines/windows/standard-storage Premium Blob Storage Capped at a specific IOPs rate based on size Capped at a specific …