How to mass change the primary group of users in active directory with PowerShell

How to mass change the primary group of users in active directory with PowerShell
Introduction This very simple PS code will allow you to change the primary group of a group of users and report back who the users are you've changed through the script. Code Start-Transcript "C:\Users\UserName\Downloads\PrimaryGroupChange.log" $newPrimaryGroup = get-adgroup "NewPrimaryGroupHere" -Properties "primaryGroupToken" $oldPrimaryGroup = get-adgroup "OldPrimaryGroupHere" -Properties "primaryGroupToken" $tempUsers = get-aduser -Filter…

Active Directory reset adminCount back to 0

Active Directory reset adminCount back to 0
Introduction The PS code below will find admin accounts in your Active Directory that have an adminCount higher than 0 and reset it back to 0, always verify why the count was increased! Code get-aduser -Filter {admincount -gt 0} -Properties adminCount | Set-Aduser -UserPrincipalName $_.UserPrincipalName -Replace @{adminCount=0}

Install certificates on an Unifi controller

Install certificates on an Unifi controller
What you need is the following Debian with SSH enabled and sudo permissions Unifi Controller installed Valid certificates (yourCertificate.cert, yourPrivateKey.key, yourCA.crt) Winscp Putty How to Open WinSCP and connect to your Unifi controller Upload your certs (yourCertificate.cert, yourPrivateKey.key, yourCA.crt) to your home folder Logon to your Unifi controller via SSH…