HP xw4600 - needs extremely long to copy sources in Windows Deploy

  • Thread starter Thread starter daniel_theracer
  • Start date Start date
D

daniel_theracer

Hi all !

I have a strange situation:

We deploy our XP clients through windows deployment.
all clients can be rolled out very fast and correct.

BUT: new hp xw4600 with BC5755 chipset needs over 1 hour to copy the sources
from network share to the local disc.

if i start a second command prompt and manually copy the sources, it works
fine, very fast. Only the copy procedure from LTIApply.wsf needs that long
time.

I'm really frustrated now and don't know, where to search.

Only this hardware, only the LTIApply script... everything else works fine.

regards
Manfred
 
Hi again !

This is part of the script LTIApply.wsf

Copy the source directory

oLogging.CreateEntry "Copying " & sSourcePath & "\" & sPlatformDir & "
directory to the local machine", LogTypeInfo
oUtility.VerifyPathExists oUtility.LocalRootPath & "\source\" & sPlatformDir
oLogging.ReportProgress "Copying Windows source files to " &
oUtility.LocalRootPath & "\source\" & sPlatformDir, 20
oFSO.CopyFolder sSourcePath & "\" & sPlatformDir, oUtility.LocalRootPath &
"\source\" & sPlatformDir, true

If sPlatformDir = "amd64" then ' Also need i386 source in this case

oLogging.CreateEntry "Copying " & sSourcePath & "\i386 directory to the
local machine", LogTypeInfo
oFSO.CopyFolder sSourcePath & "\i386", oUtility.LocalRootPath &
"\source\i386", true

the command "oFSO.CopyFolder" needs about 40 minutes for a normal XP i386.
if i copy the source to the local disc in a second command prompt, it needs
about 4 minutes.

what the hell is the problem of this script ????

please help, we need to roll out about 400 machines in the next weeks...

regards
Manfred
 
Back
Top