Network and Classroom Management Thread, Mass Login in Technical; Hi all
A teacher has just asked me if it is possible to login 33 computers in the ICT Suite ...
-
25th March 2010, 12:25 PM #1
- Rep Power
- 9
Mass Login
Hi all
A teacher has just asked me if it is possible to login 33 computers in the ICT Suite in one go from one computer. The children are only 4 years old so the staff login in for them, but doing that 33 times is a pain, so is there any software etc that will allow you to use one login username/password to login in all 33 computers while you are sat at just one computer?
Thanks
-
-
IDG Tech News
-
25th March 2010, 12:29 PM #2 how are the computer names assigned? i will have a dig around our old scripts to see if there is anything that may fit the bill
-
-
25th March 2010, 12:31 PM #3 
Originally Posted by
Techie101
Hi all
A teacher has just asked me if it is possible to login 33 computers in the
ICT Suite in one go from one computer. The children are only 4 years old so the staff login in for them, but doing that 33 times is a pain, so is there any software etc that will allow you to use one login username/password to login in all 33 computers while you are sat at just one computer?
Thanks
We use Netsupport for classroom management, this has the functionality to do what you are wanting to achieve.
-
Thanks to Iain.Faulkner from:
Techie101 (25th March 2010)
-
25th March 2010, 12:32 PM #4
- Rep Power
- 9
The computer names are as follows -
ICTSUITE01
ICTSUITE02
ICTSUITE03
ICTSUITE04
ICTSUITE05
etc
etc
all the way up to ICTSUITE33
cheers
-
-
25th March 2010, 12:38 PM #5 
Originally Posted by
Techie101
The computer names are as follows -
ICTSUITE01
ICTSUITE02
ICTSUITE03
ICTSUITE04
ICTSUITE05
etc
etc
all the way up to ICTSUITE33
cheers
try this,
Code:
@echo off
if "%1" == "" goto end
for /l %%i in (1,1,33) do (
start "Addreg %%i" reg add "\\%1-%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v AutoAdminLogon /t REG_SZ /d 1
start "Addreg %%i" reg add "\\%1-%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v DefaultUserName /t REG_SZ /d [Usernamehere]
start "Addreg %%i" reg add "\\%1-%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v DefaultDomainName /t REG_SZ /d %1%%i
start "Addreg %%i" reg add "\\%1-%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v DefaultPassword /t REG_SZ /d [passwordhere]
start "Addreg %%i" reg add "\\%1-%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v AutoLogonCount /t REG_DWORD /d 1
)
:end
Copy this into a bat file and give it a go. Please note this isn't tested and i would test it first but is should work and only log them in once - I think not used it for a while but giver it a go and see what happens
call the batch file from cmd and give the room name i.e. ICTSUITE as an arguement
Let me know how you get on
Last edited by sister_annex; 25th March 2010 at 12:41 PM.
Reason: code incorrect
-
-
25th March 2010, 01:18 PM #6 Hello
We use abtutor in our ICT suite and id defintly reccommend it!
It was only about £200 and that covers all computers in the suite.
Its got loads of features,
you can lock students (good feature to get attention)
can remote control workstations
you can send commands directly to each computer
stop students accessing internet or any other program you desire
you can make them all turn on in the morning (if you set up wake on lan)
and most importantly in your case you can log them all at once or individually
Hope that helps,
Matt
-
Thanks to mstarkie from:
Techie101 (25th March 2010)
-
25th March 2010, 01:48 PM #7
- Rep Power
- 9
I couldn't get it to work, typed in the user name and password but where exactly to i add ICTSUITE as an arguement value? thanks

Originally Posted by
sister_annex
try this,
Code:
@echo off
if "%1" == "" goto end
for /l %%i in (1,1,33) do (
start "Addreg %%i" reg add "\\%1-%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v AutoAdminLogon /t REG_SZ /d 1
start "Addreg %%i" reg add "\\%1-%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v DefaultUserName /t REG_SZ /d [Usernamehere]
start "Addreg %%i" reg add "\\%1-%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v DefaultDomainName /t REG_SZ /d %1%%i
start "Addreg %%i" reg add "\\%1-%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v DefaultPassword /t REG_SZ /d [passwordhere]
start "Addreg %%i" reg add "\\%1-%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v AutoLogonCount /t REG_DWORD /d 1
)
:end
Copy this into a bat file and give it a go. Please note this isn't tested and i would test it first but is should work and only log them in once - I think not used it for a while but giver it a go and see what happens
call the batch file from cmd and give the room name i.e. ICTSUITE as an arguement
Let me know how you get on

-
-
25th March 2010, 02:02 PM #8 
Originally Posted by
Techie101
I couldn't get it to work, typed in the user name and password but where exactly to i add ICTSUITE as an arguement value? thanks
OK,
try this
Code:
@echo off
for /l %%i in (1,1,33) do (
start "Addreg ICTSUITE%%i" reg add "\\ICTSUITE%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v AutoAdminLogon /t REG_SZ /d 1
start "Addreg ICTSUITE%%i" reg add "\\ICTSUITE%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v DefaultUserName /t REG_SZ /d [Usernamehere]
start "Addreg ICTSUITE%%i" reg add "\\ICTSUITE%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v DefaultDomainName /t REG_SZ /d [domainnamehere]
start "Addreg ICTSUITE%%i" reg add "\\ICTSUITE%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v DefaultPassword /t REG_SZ /d [passwordhere]
start "Addreg ICTSUITE%%i" reg add "\\ICTSUITE%%i\HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /f /v AutoLogonCount /t REG_DWORD /d 1
)
the only thing it may not do is add the preceeding 0 from machine 1 to 9 we are naughty here and do not put the 0 in for this very reason.
basically the code steps from 1 to 33 adding/ altering the regentries specified then when the child attempts to login it should automatically log in for them - until they reboot... fingers crossed.
same as before add it to a batch file and run it 
teaches me to read my code through before I post next time 
good luck
-
-
25th March 2010, 02:06 PM #9 iTalc can do this and is free.
The only issue is that the way it does it .. so if someone interupts it doing it's thing then it might fail at logon with incorrect usernames etc.
Also means you can allow staff tutor access to do it.
Of course, it all then depends, are you logging them all in with the same username/password combo or (even at such a young age) do they have assigned individual usernames / passwords that you need to use?
-
-
25th March 2010, 02:27 PM #10
- Rep Power
- 9
The younger children all use one username and no password.

Originally Posted by
aptproductions
iTalc can do this and is free.
The only issue is that the way it does it .. so if someone interupts it doing it's thing then it might fail at logon with incorrect usernames etc.
Also means you can allow staff tutor access to do it.
Of course, it all then depends, are you logging them all in with the same username/password combo or (even at such a young age) do they have assigned individual usernames / passwords that you need to use?

-
-
25th March 2010, 02:37 PM #11
- Rep Power
- 9

Originally Posted by
sister_annex
how are the computer names assigned? i will have a dig around our old scripts to see if there is anything that may fit the bill
Sorry sister, the script didn't work, thanks anyway for trying
-
-
25th March 2010, 02:37 PM #12 
Originally Posted by
Techie101
The younger children all use one username and no password.
In that case iTalc should work well for you, or if you have the cash NetSupport is a great tool too that I use on one site.
-
-
25th March 2010, 02:47 PM #13 No Problems, I am not a scripting guru was just trying to butcher someone elses work 
we use LanSchool here but we are a secondary so iTalc may do what you need but i have no experience with it
Hope you find what you are looking for
-
-
26th March 2010, 10:18 AM #14
- Rep Power
- 9
thanks all, could you give me some idea of price for Lan School and Netsupport, we need 32 client versions and 1 teacher version.
Ab Tutor looks good for just £200, also had a look at Netops School, but thats gonna cost around £600-800, does everything but mass login
-
-
26th March 2010, 10:20 AM #15 Another vote for italc - it is free so I would have a look at that first
-
SHARE: 
Similar Threads
-
By A5Ben in forum How do you do....it?
Replies: 2
Last Post: 3rd November 2009, 05:58 PM
-
Replies: 3
Last Post: 27th April 2009, 02:44 PM
-
By boomam in forum Windows
Replies: 31
Last Post: 4th March 2008, 09:51 AM
-
By FN-GM in forum Network and Classroom Management
Replies: 28
Last Post: 18th August 2007, 07:45 PM
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules