@figueroa2david @michael-pietroforte Here in this command, for /f “tokens=1,2 delims=,” %f in (computerlist.txt) do psexec -h \\%f -u <username> -p <password> net user <username> %g /add /description “local user or whatever text”
<username> and <password> are still given as plain text in the above command even though the computer and passwords are given in computerlist.txt, how can we give without plain-text ?
I would like to eliminate all the plain-text passwords in my psexec commands.
Please elaborate.