J
jayloveroni
I saw a post to add domain users to a domain group:
for /f %q in (addthesenames.txt) do (net group groupname %
q /add /domain)
But I want to write a script that will pull computernames
from a text file, and add a local user from said computers
to the said computers' Administrators group. All the
computers have the same local user.
Thanks in advance.
jjs
for /f %q in (addthesenames.txt) do (net group groupname %
q /add /domain)
But I want to write a script that will pull computernames
from a text file, and add a local user from said computers
to the said computers' Administrators group. All the
computers have the same local user.
Thanks in advance.
jjs