Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Machine Performance Modeling Methodologies And Evaluation Strategies Lncs 257

Authors: Francesca Cesarini ,Silvio Salza

1st Edition

3540179429, 978-3540179429

More Books

Students also viewed these Databases questions

Question

What does the start( ) method defined by Thread do?

Answered: 1 week ago