Question
Hi All, I am looking for some help with this powershell script. My goal is to be able to enter a username and then export
Hi All,
I am looking for some help with this powershell script. My goal is to be able to enter a username and then export the "sAMaccountname, extensionAttribute4, and extensionAttribute5" Active Directory attributes into a .csv file onto my desktop. Here is what I have so far, but I am struggling to figure this out.
$global:userName = Read-Host "What user do you want to get the groups of?" $list = Get-ADPrincipalGroupMembership $userName | select samaccountname | sort samaccountname $myarray = New-Object 'System.Collections.Generic.List[String]'
ForEach ($line in $list) { Get-ADGroup $line.samaccountname -Properties extensionAttribute4, extensionAttribute5 | select name, extensionAttribute4, extensionAttribute5 | Export-CSV "C:\users\username\desktop\filename.csv" }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started