Jan 9, 2003 #1 thorntonb Technical User Nov 8, 2002 55 IE Is there anyway of getting information about users HomeDirectory,Fullname and Description using VBScript?? Brian B-)
Is there anyway of getting information about users HomeDirectory,Fullname and Description using VBScript?? Brian B-)
Jan 9, 2003 1 #2 Sunny4Ever IS-IT--Management Nov 6, 2002 77 GB strUser = Inputbox ("Enter User Name" strDomain = Inputbox ("Enter Domain" Dim User Set User = GetObject("WinNT://" & strDomain & "/" & strUser & ",user" msgbox (User.HomeDirectory) msgbox (User.Fullname) msgbox (User.Description) Should get you started. -Sunny Upvote 0 Downvote
strUser = Inputbox ("Enter User Name" strDomain = Inputbox ("Enter Domain" Dim User Set User = GetObject("WinNT://" & strDomain & "/" & strUser & ",user" msgbox (User.HomeDirectory) msgbox (User.Fullname) msgbox (User.Description) Should get you started. -Sunny