Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Attribute Values for a Local User AccountContent of List Attribute Values for a Local User Account.vbsMD5 Hash: 134BE3379E18AADA51DD7E2F33DB6A10 |
||
' Description: Displays mandatory and optional attributes (and their values) for a local user account named kenmyer on a computer named atl-win2k-01.
On Error Resume Next strComputer = "atl-win2k-01" Set objUser = GetObject("WinNT://" & strComputer & "/kenmyer ") Set objClass = GetObject(objUser.Schema) WScript.Echo "Mandatory properties for " & objUser.Name & ":" For Each property in objClass.MandatoryProperties WScript.Echo property, objUser.Get(property) Next WScript.Echo "Optional properties for " & objUser.Name & ":" For Each property in objClass.OptionalProperties WScript.Echo property, objUser.Get(property) Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |