Get AD Group Member Details from Trusted Domains The vast majority of active directory powershell cmdlets don’t need any enhancement but there is one in particular that I felt… Continue reading “Get AD Group Member Details from Trusted Domains”…
Add Parent OU in DN and CN Path Format Using Regex Match Yet another solution for grabbing Parent OU paths $userArr = Get-ADuser -f * -prop CanonicalName foreach($user in $userArr) { if($matches){$matches.Clear()}… Continue reading “Add Parent OU in DN and CN Path Format Using Regex Match”…
Powershell – Self-signed Certificate via Self-signed Root CA The inspiration for this post came from my OpenVPN AWS instance and recent experience testing Server 2016 ADFS. I wanted to… Continue reading “Powershell – Self-signed Certificate via Self-signed Root CA”…
O365 – Get Tenant Role Groups and Members I needed something quick to report on all O365 tenant role group members and ran into a minor annoyance when… Continue reading “O365 – Get Tenant Role Groups and Members”…
Connect to O365 Online Services In a follow up to the O365 powershell module install post I added a new script on Github to connect… Continue reading “Connect to O365 Online Services”…
O365 Powershell Module Install Script I hope MS will consolidate the O365 Powershell modules in the future. As it stands today your best bet is to… Continue reading “O365 Powershell Module Install Script”…
Discover Circular AD Group Memberships Might as well have a recursive function in the first post eh? I stumbled across this script to discover circular Active… Continue reading “Discover Circular AD Group Memberships”…