Grab our RSS feeds Follow us on Twitter Join our Facebook Group Connect with us on LinkedIn
myITforum.com, Powered by You.
you are not logged in

Articles

Newslinks

Links

Downloads

Site Services

Community Forums

Discussion Lists

Article Search

Newsletter

Web Blogs

FAQs

Live Support

myITforum TV

Take a Poll

Monthly Drawing

myITforum Network

User Group Directory

Our Partners

About Us

Register

Login

BRONZE PARTNER:

BRONZE PARTNER:



Industry News:




  Home : Articles : Windows PowerShell print | email | | Forums |   print | email | | Blogs |   print | email | | Wiki |   print | email | | FAQs |   print | email | Article Search  
PowerShell script to list Local Groups on a remote computer


Bookmark and Share

By: Ying Li
Posted On: 8/31/2007

Here is a PowerShell script to list Local Groups on a remote computer

This article was Previously posted on Ying Li's Blog

$strComputer = "XYZ"

$computer = [ADSI]("WinNT://" + $strComputer + ",computer")
$computer.name

$group = $computer.psbase.children |where{$_.psbase.schemaclassname -eq "group"}

foreach ($member in $group.psbase.syncroot)
{$member.name}

  myITforum.com ©2010 | Legal | Privacy