Networks Thread, Logon Times/Speed in Technical; Hi,
Just wondering how long it takes for your users to logon to your computers? What's the profile setup, Roaming? ...
-
8th February 2006, 08:15 PM #1
- Rep Power
- 15
Logon Times/Speed
Hi,
Just wondering how long it takes for your users to logon to your computers? What's the profile setup, Roaming? Mandatory? Re-Directed? etc etc
What is a normal logon time for Windows XP?, I know it's slower then Windows 98 beacuse of all the group policy processing. But would just like to get a rought idea to see what other collegues are getting.
Regards,
Matt
-
-
IDG Tech News
-
8th February 2006, 08:21 PM #2
- Rep Power
- 0
Re: Logon Times/Speed
I use mandatory profiles - logon speeds [to the desktop] are about 8-12 secs. yes, many people have MASSIVE logon problems with xp due to incorrect dns settings...in my view, at the schools I have worked at, people simply do not set up dns correctly - if it ain't set up properly, you are asking for problems...and xp will happily oblige.
-
-
8th February 2006, 08:25 PM #3 Re: Logon Times/Speed
From boot to login is quite quick, however one of the options I have in my policy for staff and students must not work properly as it stops in the middle to wait for something for about 20 seconds. If I use another policy it is fine. I haven't had time to track it down, even scanned the network traffic and I can't see much.
-
-
8th February 2006, 10:39 PM #4 Re: Logon Times/Speed
On our fastest PC's (P4 2.8's 512MB RAM) the logon speed from logon screen to desktop being seen is 3 seconds. About 5 seconds to being fully useable and everything loaded.
We do not use roaming profiles, we have mandatory profiles. I spent many hours when setting up the system just on performance.
-
-
9th February 2006, 12:00 AM #5 Re: Logon Times/Speed
We use roaming profiles, so as you will know, how long is a piece of string is the answer, but on average, a 30mb profile will take about no more than 60 seconds to logon and be ready to go
-
-
9th February 2006, 01:18 AM #6
- Rep Power
- 15
Re: Logon Times/Speed
@Quackers
Wow... I'm impressed!!! How the hell you managed to get it to logon in under 5 seconds??? Share your secrets please!!!! How have you got your Mandatory profile setup? Is it downloaded from the server each time, or have you got the Mandatory profile saved locally on each machine?? I'm guessing on the server, but 3-5 seconds does seem very fast!!!
Regards,
Matt
-
-
9th February 2006, 01:29 AM #7 Re: Logon Times/Speed
About 10 seconds max with roaming profiles here, usually it's about 5.
My scripts run syncronously except on Citrix where they refuse to... so it can take up to 15 seconds on that system. Still - no annoying questions about not being able to print - before the script has had time to execute.
-
-
9th February 2006, 09:28 AM #8 Re: Logon Times/Speed
30 Mb Roaming profiles with Ranger - approx 60 secs +
Working on removing Ranger soon - and so far have reduced the time to approx 20 secs - but still loads to do.
Still need to look at DNS and all our switches as I inherited a network that didn't have a single label or map for it. You know it's gonna take a long time
-
-
9th February 2006, 10:10 AM #9 Re: Logon Times/Speed
@Quacker
Damn that is impressive.. Yes share your secrets!!
-
-
9th February 2006, 10:50 AM #10 Re: Logon Times/Speed

Originally Posted by
mattpant @Quackers
Wow... I'm impressed!!! How the hell you managed to get it to logon in under 5 seconds??? Share your secrets please!!!! How have you got your Mandatory profile setup? Is it downloaded from the server each time, or have you got the Mandatory profile saved locally on each machine?? I'm guessing on the server, but 3-5 seconds does seem very fast!!!
Regards,
Matt
Profiles are stored locally.
There is a share on the server with a folder for each suite of PC's. In there is a profile. You get the desktop startmenu exactly has you want it in that suite. Copy it to the correct folder on the server. When the PC boots up there is a group policy with a startup script which deletes the local "Default User" folder, and copys accross the correct profile from the server. It then runs delprof to delete all local profiles. So the machine is clean. Then when a student logs on because there is no profile path set it simply uses the local default user. When ever i want to update the look of the desktop i simply copy it to the server and on next reboot the PC's pick it up.
In the 2 years the system has been in i have experenced no spyware, no adaware. Its fast and clean
-
-
9th February 2006, 01:07 PM #11 Re: Logon Times/Speed
@Quackers
Fancy sharing that startup script please chap? Been wanting to do something similar for awhile but it's just one of those jobs that keep getting put-off
-
-
9th February 2006, 01:42 PM #12 Re: Logon Times/Speed
So the profile is stored locally and is updated when the machines boot? Sounds good but the only problem is here that they shut the machines of every lesson so there would be alot of copying on startup. Mind you saying that they copy the default profile from the netlogon anyway at the moment.
I think I would extend your idea slightly and include some method to check a version number as well before copying.
-
-
9th February 2006, 02:09 PM #13 Re: Logon Times/Speed
Right here is the script.
First i copied delprof.exe into the netlogon folder.
Then i created another share called "desktops" with a folder structure for each room. Put a profile as you want it in each folder.
Then put a group policy on the OU for that set of PC's and under computer policy add a batchfile as a startup script. Use the following script in that batchfile. (my script also sets the res on startup using res.exe)
NET USE K: \\chesterton-high\netlogon /persistent:no
NET USE W: \\moon\desktops /persistent:no
k:\delprof.exe /q
k:\res.exe 1024 768 32 75
rd /s /q "c:\documents and settings\Default User"
xcopy /i /y /h /e w:\windowsxp\room5\*.* "c:\documents and settings\Default User"
net use /delete * /y
Now just make sure you have NO default user in the netlogon folder and that the users have no profile path set and when they logon they should pick up the local Default User. Which on moden SATA PC's is very fast.
You could use robocopy instead if you wanted it to only copy modified bits. I might look at that my self later, but since this works like a dream i am not breaking it.
EDIT: Also with printers i make the profiles have no printers on then use this vbs script to add printers (use an MSI to deploy right script to right room).
Set WshNetwork = CreateObject("WScript.Network")
WshNetwork.AddWindowsPrinterConnection "\\venus\r26amono"
WshNetwork.AddWindowsPrinterConnection "\\venus\r26acolour"
WshNetwork.SetDefaultPrinter "\\venus\r26amono"
-
-
9th February 2006, 02:19 PM #14 Re: Logon Times/Speed
Good point about robocopy that would be better than using some kind of version check. I will give this a go soon.
-
-
9th February 2006, 02:49 PM #15 Re: Logon Times/Speed
@Quackers
Thanks very much - should save some time...
-
SHARE:
Similar Threads
-
By BKGarry in forum Windows
Replies: 10
Last Post: 19th May 2010, 03:40 PM
-
Replies: 7
Last Post: 30th November 2006, 07:57 PM
-
By wesleyw in forum How do you do....it?
Replies: 4
Last Post: 25th September 2006, 06:45 AM
-
By danIT in forum Web Development
Replies: 4
Last Post: 3rd May 2006, 08:54 AM
-
By Snuffkins in forum Windows
Replies: 1
Last Post: 31st January 2006, 10:48 AM
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