The only way that I could come up with is kinda long. First export a list of your usernames into an excel spreadsheet. The usernames should only be in one column.
Next add a column in front of the usernames and type in "net user ". Make sure that there is a space after "user" Fill in all of the cells that have a username after it in the column over. (net user is in Column A and usernames are in Column B)
In the column after the usernames type
" /domain >> c:\filename.txt" again remembering to mind the spaces. (Column C)
This also needs to be all the way down your username column, as the "net user" did.
Now just concatonate in column "D", which should be your next free column. =a1&b1&c1
Drag this all the way down, and copy that column into a txt file. Should look as follows:
net user username /domain >> c:\filename.txt
Save as a batchfile and execute. This will send a lot of info into that text file, but you can do a "Edit/find" on the username you need to find info on. Thats all I got.