I think you could even do a NET USER /domain command to spit out users with
their properties.

Or you can use VBScript.

Try something like this:

   Set ObjDomain = GetObject("WinNT://putYourDomainNameHere")
   Wscript.Echo "Connecting to putYourDomainNameHere domain..."
   ObjDomain.Filter = Array("User")
   For each ObjUser in ObjDomain
      Wscript.Echo ObjUser.Name & "   " & ObjUser.LoginScript
   Next

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Orin
Rehorst
Sent: Monday, May 02, 2005 12:09 PM
To: Exchange Discussions
Subject: User list showing logon script name

How can you create user list showing logon script names?

TIA

Orin Rehorst

_________________________________________________________________
List posting FAQ:       http://www.swinc.com/resource/exch_faq.htm
Web Interface: http://intm-dl.sparklist.com/read/?forum=exchange
To subscribe: http://e-newsletters.internet.com/discussionlists.html/
To unsubscribe send a blank email to
[EMAIL PROTECTED]
Exchange List admin:    [EMAIL PROTECTED]
To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.

_________________________________________________________________
List posting FAQ:       http://www.swinc.com/resource/exch_faq.htm
Web Interface: http://intm-dl.sparklist.com/read/?forum=exchange
To subscribe: http://e-newsletters.internet.com/discussionlists.html/
To unsubscribe send a blank email to [EMAIL PROTECTED]
Exchange List admin:    [EMAIL PROTECTED]
To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.

Reply via email to