RE: Powershell to get all users details from AD

2010-09-23 Thread Joe Tinney
...@gmail.com] Sent: Thursday, September 23, 2010 10:03 AM To: NT System Admin Issues Subject: Re: Powershell to get all users details from AD Typo in first MS should be get-aduser. and if you want all users. Test first syntax may not be correct did not test. get-qaduser | %{get-qaduser

Re: Powershell to get all users details from AD

2010-09-23 Thread KenM
Typo in first MS should be get-aduser. and if you want all users. Test first syntax may not be correct did not test. get-qaduser | %{get-qaduser $_ -properties * | fl} get-aduser -filter * | %{get-aduser USERNAME -properties * | fl} On Thu, Sep 23, 2010 at 10:00 AM, KenM wrote: > Quest cmdle

Re: Powershell to get all users details from AD

2010-09-23 Thread KenM
Quest cmdlets get-qaduser USERNAME -includedproperties * | fl MS AD cmdlets get-qaduser USERNAME -properties * | fl On Thu, Sep 23, 2010 at 5:56 AM, Oliver Marshall < oliver.marsh...@g2support.com> wrote: > Hi > > > > Does anyone know of a powershell script/syntax that I can use to get a

RE: Powershell to get all users details from AD

2010-09-23 Thread Oliver Marshall
Michael B. Smith [mailto:mich...@smithcons.com] Sent: 23 September 2010 11:47 To: NT System Admin Issues Subject: RE: Powershell to get all users details from AD No PowerShell required. Dsquery * forestroot -limit 0 -filter objectClass=user -attr * Regards, Michael B. Smith Consultant and

RE: Powershell to get all users details from AD

2010-09-23 Thread Michael B. Smith
No PowerShell required. Dsquery * forestroot -limit 0 -filter objectClass=user -attr * Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Oliver Marshall [mailto:oliver.marsh...@g2support.com] Sent: Thursday, September 23, 2010 5:57 AM To: NT System Admi