hello,
I'm running this script:
$domain = GetObject("WinNT://blahblah.blahblah.blah.blah)
$domain.filter = "user"
For Each $user in $domain
? $user.name
RedirectOutput("domainusers.log")
Next

this works great, output's to a log file BUT
it adds a '0' at the end of every username, signifying process success i think.
How can i get it to output but missing out the '0' code at the end of username?

cheers,
otf