Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Group InformationContent of List Group Information.ps1MD5 Hash: FBDF14D823CA9E35D0599188152DBAA8 |
||
$strComputer = "."
$colItems = get-wmiobject -class "Win32_Group" -namespace "root\CIMV2" ` -computername $strComputer -filter "LocalAccount = True" foreach ($objItem in $colItems) { write-host "Caption: " $objItem.Caption write-host "Description: " $objItem.Description write-host "Domain: " $objItem.Domain write-host "Installation Date: " $objItem.InstallDate write-host "Local Account: " $objItem.LocalAccount write-host "Name: " $objItem.Name write-host "SID: " $objItem.SID write-host "SID Type: " $objItem.SIDType write-host "Status: " $objItem.Status write-host } | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |