Reset Password

M

MO0O0O0ODY

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????
 
P

Pegasus \(MVP\)

MO0O0O0ODY said:
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????

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top