Is there a way I can check for the existence of a specific user account in the domain?
QUESTION POSED ON: 01 JUL 2004
QUESTION ANSWERED BY: Rod Trent
You can use the following VB Script to verify that an individual already has an account in the domain. Replace the text in bold with your specific information.
Dim oUser, oDomain
Set oDomain = GetObject("WinNT://"&sDomainName)
oDomain.Filter = Array("user")
For Each oUser In oDomain
If LCase(oUser.Name) = LCase(sUserName) Then
WScript.Echo oUser.Name & " already has an account."
WScript.Quit
End If
Next
|
 |
|