No, to bind to a local user the format would be:
Set objUser1 = GetObject("WinNT://MyComputer/JWilson,user")
where "MyComputer" is the NetBIOS name of the computer, and "JWilson" is the
name of the local user. The object class designation ",user" is optional,
but improves performance. If the user is a domain user, the format would be:
Set objUser1 = GetObject("WinNT://MyDomain/JWilson,user")
where "MyDomain" is the NetBIOS name of the domain and "JWilson" is the NT
name (sAMAccountName, also called the "pre-Windows 2000 logon name") of the
user. The WinNT provider reveals a flat namespace and is blind to the
hierarchy of AD. Bind to groups in the exact same way, but specify the
object class as ",group".
--
Richard Mueller
Microsoft MVP Scripting and ADSI
Hilltop Lab -
http://www.rlmueller.net
--