Hello Friends,
From a time to time , I \recieved an excel sheet from the call center
manager containing the user name of 200-250 agents needed to reset
thier password\ to a default password.
Is there is any way that can facilate this process or can i convert
the excel sheet to .csv file and then import it ..if this is right so
please tell me how????
Pegasus (MVP) - 12 Jul 2008 22:08 GMT
> Hello Friends,
>
[quoted text clipped - 5 lines]
> the excel sheet to .csv file and then import it ..if this is right so
> please tell me how????
You could run this two-line batch file:
@echo off
for /F "tokens=1-2 delims=," %%a in (d:\test.csv) do echo net user "%%a"
"%%b /domain
Remove the word "echo" in Line #2 in order to activate the batch file.