Guest Luiz Posted May 21, 2008 Posted May 21, 2008 Hi, One request, please: I have to create 40 images from Windows Server 2003 to 40 servers. In the servers, that are in workgroup, I must input 12 users with the same password. Anyone has a script to create the user and respective password, please? Or, what is the command to create the user and password, please? Thanks. Luiz
Guest Bjarne Duelund Posted May 21, 2008 Posted May 21, 2008 Re: Creating User in Windows Server 2003 Look at NET USER - Bjarne Duelund "Luiz" <Luiz@discussions.microsoft.com> skrev i meddelelsen news:B352E3CF-CC58-4072-9518-999FE196CFC4@microsoft.com... > Hi, > > One request, please: > I have to create 40 images from Windows Server 2003 to 40 servers. > In the servers, that are in workgroup, I must input 12 users with the same > password. > > Anyone has a script to create the user and respective password, please? > Or, what is the command to create the user and password, please? > > Thanks. > > Luiz
Guest Pegasus \(MVP\) Posted May 21, 2008 Posted May 21, 2008 Re: Creating User in Windows Server 2003 "Luiz" <Luiz@discussions.microsoft.com> wrote in message news:B352E3CF-CC58-4072-9518-999FE196CFC4@microsoft.com... > Hi, > > One request, please: > I have to create 40 images from Windows Server 2003 to 40 servers. > In the servers, that are in workgroup, I must input 12 users with the same > password. > > Anyone has a script to create the user and respective password, please? > Or, what is the command to create the user and password, please? > > Thanks. > > Luiz Try this: @echo off set Password=welcome for /F %%a in (c:\Users.txt) do net user %%a %Password% /add If you are a server administrator then you might want to spend an hour or two to familiarise yourself with the many uses of "net.exe". Type the following commands at the Command Prompt to see what I mean: net /? net help net user /? net help user net use /? net help use etc. etc.
Guest Meinolf Weber Posted May 21, 2008 Posted May 21, 2008 Re: Creating User in Windows Server 2003 Hello Luiz, Just to understnad you right, 40 servers with 12 user accounts in the same workgroup name? Why didn't you setup a domain? 12 domain user accounts and you are ready for all servers in the domain. Anyway, NET USER will do the job: http://support.microsoft.com/kb/251394 Best regards Meinolf Weber Disclaimer: This posting is provided "AS IS" with no warranties, and confers no rights. ** Please do NOT email, only reply to Newsgroups ** HELP us help YOU!!! http://www.blakjak.demon.co.uk/mul_crss.htm > Hi, > > One request, please: > I have to create 40 images from Windows Server 2003 to 40 servers. > In the servers, that are in workgroup, I must input 12 users with the > same > password. > Anyone has a script to create the user and respective password, > please? Or, what is the command to create the user and password, > please? > > Thanks. > > Luiz >
Guest Luiz Posted May 23, 2008 Posted May 23, 2008 Re: Creating User in Windows Server 2003 Thank you, Bjarne. Best Regards. Luiz "Bjarne Duelund" wrote: > Look at > > NET USER > > > - Bjarne Duelund > > > "Luiz" <Luiz@discussions.microsoft.com> skrev i meddelelsen > news:B352E3CF-CC58-4072-9518-999FE196CFC4@microsoft.com... > > Hi, > > > > One request, please: > > I have to create 40 images from Windows Server 2003 to 40 servers. > > In the servers, that are in workgroup, I must input 12 users with the same > > password. > > > > Anyone has a script to create the user and respective password, please? > > Or, what is the command to create the user and password, please? > > > > Thanks. > > > > Luiz > >
Guest Luiz Posted May 23, 2008 Posted May 23, 2008 Re: Creating User in Windows Server 2003 Thank you, Pegasus. Best Regards. Luiz "Pegasus (MVP)" wrote: > > "Luiz" <Luiz@discussions.microsoft.com> wrote in message > news:B352E3CF-CC58-4072-9518-999FE196CFC4@microsoft.com... > > Hi, > > > > One request, please: > > I have to create 40 images from Windows Server 2003 to 40 servers. > > In the servers, that are in workgroup, I must input 12 users with the same > > password. > > > > Anyone has a script to create the user and respective password, please? > > Or, what is the command to create the user and password, please? > > > > Thanks. > > > > Luiz > > Try this: > @echo off > set Password=welcome > for /F %%a in (c:\Users.txt) do net user %%a %Password% /add > > If you are a server administrator then you might want to spend an > hour or two to familiarise yourself with the many uses of "net.exe". > Type the following commands at the Command Prompt to see > what I mean: > net /? > net help > net user /? > net help user > net use /? > net help use > etc. etc. > > >
Guest Luiz Posted May 23, 2008 Posted May 23, 2008 Re: Creating User in Windows Server 2003 Hi Meinolf, thank you for your response. The server´s role will be TS and they will be ship to different locations and because of license cost (in here is very expensive for the client), for while, the environment will be workgroup. Thanks again. Best Regards. Luiz "Meinolf Weber" wrote: > Hello Luiz, > > Just to understnad you right, 40 servers with 12 user accounts in the same > workgroup name? Why didn't you setup a domain? 12 domain user accounts and > you are ready for all servers in the domain. > > Anyway, NET USER will do the job: > http://support.microsoft.com/kb/251394 > > > Best regards > > Meinolf Weber > Disclaimer: This posting is provided "AS IS" with no warranties, and confers > no rights. > ** Please do NOT email, only reply to Newsgroups > ** HELP us help YOU!!! http://www.blakjak.demon.co.uk/mul_crss.htm > > > Hi, > > > > One request, please: > > I have to create 40 images from Windows Server 2003 to 40 servers. > > In the servers, that are in workgroup, I must input 12 users with the > > same > > password. > > Anyone has a script to create the user and respective password, > > please? Or, what is the command to create the user and password, > > please? > > > > Thanks. > > > > Luiz > > > > >
Recommended Posts