Login | |
|
 |
RE: Auto Logon on reboot - 1/16/2008 4:20:14 AM
|
|
 |
|
| |
Rischip
Posts: 468
Score: 2
Joined: 3/26/2007
Status: offline
|
Download TweakUI. It can do autologon settings and save the password encrypted in a protected area.
_____________________________
Rischip Author of - The Grim Linker
|
|
| |
|
|
|
 |
RE: Auto Logon on reboot - 1/17/2008 11:10:50 AM
|
|
 |
|
| |
Parabellum
Posts: 222
Score: 0
Joined: 11/12/2006
From: UK
Status: offline
|
ADM files are Administrative Template files. They are used in conjunction with Group/local policies to alter registry settings. It is certainly possible to do what your wanting using Policies and ADM files, but if you have no experience at all with ADM files, i would stick with the VBS. An ADM file is basicaly a list of settings. It consists of several bits of information, one being the part of the registry affected, but you also need to tell it how it will be read by the policy editor. Eg.. what category it exists under (eg user or machine setting) then where it the policy editor it can be found... eg.... User Configuration > Administrative Templates > Windows Explorer etc also it needs strings specified for what us to be displayed by the policy editor GUI, and then the actual values themselves, presented in the appropriate manner.. eg checkbox, dropdown list radio button etc. as for how to use them.... you would opejn up the policy editor ... right click on the administrattive templates folder under the approiate section... (either computer Configuration or User) and the Add a template file (adm file) There are lots of examples of how to make your own adm files on the net... butas i said before.... if your not familiar with them, i would stick with VBS.
< Message edited by Parabellum -- 1/17/2008 11:13:36 AM >
|
|
| |
|
|
|
 |
RE: Auto Logon on reboot - 1/17/2008 11:38:04 AM
|
|
 |
|
| |
Parabellum
Posts: 222
Score: 0
Joined: 11/12/2006
From: UK
Status: offline
|
here's another idea... you could use a combination of this software.. (logon.exe) http://www.softtreetech.com/24x7/archive/51.htm with something like psExec to remotely auto logon all the PC's via a script. eg a batch file with the folowing commands.. psexec \\server1 Logon.exe -u Username -p yourpassword psexec \\server2 Logon.exe -u Username -p yourpassword psexec \\server3 Logon.exe -u Username -p yourpassword better still use vbs and have it prompt you for the password.. and not have to code it anywhere!
|
|
| |
|
|
|
 |
RE: Auto Logon on reboot - 1/18/2008 5:26:35 AM
|
|
 |
|
| |
Rischip
Posts: 468
Score: 2
Joined: 3/26/2007
Status: offline
|
I like Parabellum's idea. If it works. That way you are as secure as you can be... No password in the registry whether encrypted or not. No password embedded in a script. The only problem I have with this solution is PSEXEC will send your password across the network in plain text.
_____________________________
Rischip Author of - The Grim Linker
|
|
| |
|
|
|
|
|