i386 folder as post install task
Does anyone have any ideas on how to best to include the i386 folder to a Windows XP scripted installation?
0 Comments
[ + ] Show comments
Answers (9)
Please log in to answer
Posted by:
dchristian
13 years ago
Posted by:
cserrins
13 years ago
Posted by:
dyehardfan
13 years ago
Nice trick, didn't realize that could be done.
And to get rid of a little more of my k2000 ignorance, how does this save space on the appliance?
ORIGINAL: dchristian
sdillane,
You can copy it right from the kbox.
It'll be in \\ikbox\\peinst\source_cds\{xp cd number}\i386
ORIGINAL: cserrins
To followup on dchristian, you should do this as a mid-level tast (a post installation task with KBE as the selected environment). xcopy would work well. This would minimize the space on the K2.
And to get rid of a little more of my k2000 ignorance, how does this save space on the appliance?
Posted by:
cserrins
13 years ago
Posted by:
dyehardfan
13 years ago
I gotcha. Misunderstood what you were saying. I thought you were saying doing it as a mid-level task would free up space, but you were actually saying that copying the files from the kbox is what saves the space. Good to know. New trick for my server installs.
ORIGINAL: cserrins
the files are already on the K2, so by copying them from where dchristian stated works without uploading anything new to the K2000. Some may take the i386 folder, zip it up and upload it as a mid or post installation task, but that would take up more space.
Posted by:
sdillane
13 years ago
David thanks for the information, this helped out a lot. I was not aware that the source files were copied to the peinst folder. Once I took a closer look I also noticed that during the install I was already mapped to the location. This is what worked for me:
xcopy y:\source_cds\1\i386 c:\i386 /y /i /s /e /h
xcopy y:\source_cds\1\i386 c:\i386 /y /i /s /e /h
Posted by:
dchristian
13 years ago
Glad it helped!
Just kinda curious, what do you need the i386 folder for?
If your computers are going to be staying in a network that has communication with the KBOX you can map peinst as the default location for i386.
Take a look at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup.
There are a couple of registry keys (installation sources, servicepacksource patch, and sourcepath) in here that set the location of i386 when adding or removing windows components.
If this works for you maybe all you'll need is to set these to point to peinst.
Example bat script:
Just kinda curious, what do you need the i386 folder for?
If your computers are going to be staying in a network that has communication with the KBOX you can map peinst as the default location for i386.
Take a look at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup.
There are a couple of registry keys (installation sources, servicepacksource patch, and sourcepath) in here that set the location of i386 when adding or removing windows components.
If this works for you maybe all you'll need is to set these to point to peinst.
Example bat script:
reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup /v ServicePackSourcePath /t REG_SZ /d \\{your kbox here}\peinst\source_cds\{source cd number here} /f
Posted by:
sdillane
13 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.