Registered member login:
Register Now
Altirigos » Deployment Solution » Imaging - Bootworks/Rdeploy » Use a custom Sysprep.inf in HII Image Creation

» Current Poll
Do you leave the Aclient enabled?
YES - 82.31%
107 Votes
NO - 17.69%
23 Votes
Total Votes: 130
You may not vote on this poll.
» Stats
Members: 9,496
Threads: 11,750
Posts: 55,295
Top Poster: Nick (4,981)
Welcome our newest member, JessicaD
» Online Users: 46
1 members and 45 guests
sleeterk
Most users online at once 294, 06-30-2007 at 12:24 PM.
» March 2010
S M T W T F S
28 1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31 123
Reply
Old 02-06-2007, 10:18 PM   #1 (permalink)
 
Kogenta's Avatar
 
Status: Junior Altiris Admin
Join Date: 01-31-2007
Location: Des-Moines
Age: 26
Posts: 14


Use a custom Sysprep.inf in HII Image Creation

Does anyone know how to use a custom sysprep.inf when creating an image in DS 6.8? In 6.5, it looked like you had the option to specify the sysprep.inf to use with image creation, but the screen got changed in 6.8 to this one:




So far to fix the issue, I have just manually syspreped my image box, and when it shutdown, I ran a create image job on it. This allowed me to set the OemPnpDriversPath manually (to something else than just "drivers"), and to include the additional sata drivers under the [SysprepMassStorage] section.

Thanks in advanced.

Last edited by Kogenta; 02-07-2007 at 06:35 AM..
Kogenta is offline   Reply With Quote
Old 02-13-2007, 01:27 AM   #2 (permalink)
 
Kogenta's Avatar
 
Status: Junior Altiris Admin
Join Date: 01-31-2007
Location: Des-Moines
Age: 26
Posts: 14


Well, after a bunch of reading and tinkering.. it seems that I can only append mass storage drivers via the screen in the first post, but I cannot change anything else about the syspep.inf that altiris uses when doing a create image job that has "Prepaired using Sysprep" set.

I'm rather surprised and disappointed that Altiris doesn't offer a way to change settings in the sysprep.inf, especially the OemPnpDriversPath, since DS 6.8 is supposed to be more integrated with sysprep than DS 6.5.

Well until I can, looks like I get to stick with:
-get machine ready to be uploaded
-get machine ready to be sysprep'ed
-take a snapshot with VMware
-sysprep & upload image before mini setup
-revert to snapshot after image is uploaded

Though if I'm wrong, please don't hesitate to say how I can do it.
Thanks again.
Kogenta is offline   Reply With Quote
Old 03-19-2007, 01:39 AM   #3 (permalink)
 
Status: Junior Altiris Admin
Join Date: 09-24-2006
Location: Australia
Posts: 17


I'm having the same issue with not being able to use a customised sysprep file when creating images. I need to be able to push the OemPnPDriversPath during the create stage.

I thought the default sysprep file the system is using might be located in \\servername\express\sysprep . I have tried modifying each of the files in this folder with want I to use but it has not been succeessful.

I wondering why the option to select a different sysprep file would have been removed in DS6.8.
Cathossie is offline   Reply With Quote
Old 03-19-2007, 09:45 AM   #4 (permalink)
 
Status: Junior Altiris Admin
Join Date: 03-19-2007
Location: Wichita, KS
Posts: 13


The way we do it is to place the custom syspreptoken.txt in:

\\servername\eXpress\scripts\syspreptoken.txt

Then in our HII job we specify the syspreptoken location as so:

REM Push "HIXP_ICT" Image to system.
ECHO Preparing to Deploy Image
f:\rdeploy.exe -noprompt -nocancel -md -f.\images\HIXP_ICT.img
ECHO Starting deployment of T60 HI Base XP Image
firm -recurse copy F:\Scripts\DRV\T60\ prod:\DRV\
firm -recurse copy F:\Scripts\HAL\T60\ prod:\WINDOWS\SYSTEM32\
ReplaceTokens .\scripts\Syspreptoken.txt .\temp\%ID%.inf
firm copy f:\temp\%ID%.inf prod:\Sysprep\Sysprep.inf
firm delete .\temp\%ID%.inf
Echo Copying AClient.exe and AClient.inp to root…
F:\firm copy f:\aclient.exe prod:\
F:\firm copy f:\aclient.inp prod:\


Then we just have a job for each model that references the driver and HAL paths, basically. All jobs use the same sysprep'd image file HIXP_ICT.img.

This even works for multi-regions as I can point the the script to a custom syspreptoken.txt for London, Singapore, etc to get their region settings set correctly in the image.

Hope this helps,
Gabriel
mainsg is offline   Reply With Quote
Old 03-20-2007, 09:29 PM   #5 (permalink)
 
Status: Junior Altiris Admin
Join Date: 09-24-2006
Location: Australia
Posts: 17


thanks for the above info, I'll give it a go, although I'm still wondering why the option to use a custom sysprep during image creation has been removed, it is mostly important to us for inserting the correct OemPnPDriversPath
Cathossie is offline   Reply With Quote
Old 03-21-2007, 09:27 AM   #6 (permalink)
 
Status: Junior Altiris Admin
Join Date: 03-19-2007
Location: Wichita, KS
Posts: 13


Not a problem. If you would like our full documentation I wrote up with step-by-step process, let me know what your email addy is and I will send it to you. It is definitely helpful and you might get a clearer picture of how the drivers work.

Gabriel
mainsg is offline   Reply With Quote
Old 03-29-2007, 12:03 PM   #7 (permalink)
 
Status: Junior Altiris Admin
Join Date: 03-29-2006
Location: Belgium
Posts: 18


Cool

Can you please send me the full doc, details too to my email address, ravimehta75@hotmail.com

Thanks
rm2000 is offline   Reply With Quote
Old 04-05-2007, 04:45 PM   #8 (permalink)
 
Status: Junior Altiris Admin
Join Date: 11-27-2006
Location: Minnesota, USA
Posts: 6


Hardware detect

Do a hardware detect based on model. This would be used for things like having a different sysprep for unicore systems vs dual core systems.

script sample goodness here

echo Hardware Model number is %#!computer@model_num%

if "%#!computer@model_num%" =="0864h" goto d530
if "%#!computer@model_num%" =="0A5Ch" goto dc7700

:d530
Firm copy .\sysprep\sysprep.inf prod:sysprep\sysprep.inf
goto Exit

:dc7700
Firm copy .\sysprep\sysprepm.inf prod:sysprep\sysprep.inf
goto Exit

In this sample the d530 is a single CPU system that would use the uni hal. The DC7700 is a dual core system that would use a dual core hal. I simply used a different source sysprep file (sysprepm) to do the hal conversion post image deployment based on single or dual core hals.

Last edited by onyxruby; 04-05-2007 at 04:48 PM..
onyxruby is offline   Reply With Quote
Old 04-06-2007, 09:23 AM   #9 (permalink)
 
Status: Altiris Admin
Join Date: 03-21-2007
Location: Oklahoma
Posts: 43


Hey Gabriel,

Could you send the documentation to me also? I am just starting to explore HII and can use all the help I can get.
scott.tews@okdhs.org

Thanks much...
scot2s is offline   Reply With Quote
Old 04-25-2007, 04:12 PM   #10 (permalink)
 
Status: Junior Altiris Admin
Join Date: 04-25-2007
Location: Thunder Bay
Posts: 1


Documentation.

Gabriel,

Please forward a copy of the documentation to llevesque@csdcab.on.ca
It would be greatly appreciated.

Thank you.
llevesque is offline   Reply With Quote
Old 04-27-2007, 01:40 PM   #11 (permalink)
 
Status: Junior Altiris Admin
Join Date: 04-27-2007
Location: Seattle
Posts: 2


Documentation

Hi Gabriel,

I would like to see your documentation as well. danielle_hunter@agsea.com

Thanks!



Quote:
Originally Posted by mainsg
Not a problem. If you would like our full documentation I wrote up with step-by-step process, let me know what your email addy is and I will send it to you. It is definitely helpful and you might get a clearer picture of how the drivers work.

Gabriel
adahein is offline   Reply With Quote
Old 04-28-2007, 03:00 PM   #12 (permalink)
 
Status: Junior Altiris Admin
Join Date: 05-07-2005
Location: Norway
Posts: 12


Documentation

Gabriel,

Please forward a copy of the documentation to go_zilla@hotmail.com
It would be greatly appreciated.

Thank you very much

Best Regards

Go_zilla
go_zilla is offline   Reply With Quote
Old 05-24-2007, 02:27 PM   #13 (permalink)
 
Status: Altiris Admin
Join Date: 01-18-2006
Location: Tennessee
Age: 30
Posts: 50


Documentation

Gabriel,

Please forward a copy of the documentation to damon_m@comcast.net
It would be greatly appreciated.
chattgroup is offline   Reply With Quote
Old 05-25-2007, 03:21 AM   #14 (permalink)
 
Status: Super Altiris Admin
Join Date: 01-08-2007
Location: Scotland
Posts: 100


Hi

I too would be gratful if you could email me a copy as well
stewart.forbes@nhs.net

Cheers

Stewfo
stewfo is offline   Reply With Quote
Old 05-25-2007, 12:18 PM   #15 (permalink)
 
Status: Junior Altiris Admin
Join Date: 01-16-2006
Location: San Diego
Age: 44
Posts: 2


Gabriel,

I would be grateful if you could forward a copy of the documentation that you wrote for HII to rheadley@fadv.com.

Thanks!
HDTech is offline   Reply With Quote
Old 08-27-2007, 10:55 AM   #16 (permalink)
 
inthemoodforaltiris's Avatar
 
Status: Junior Altiris Admin
Join Date: 08-23-2007
Location: Atlanta
Posts: 9


Gab,

Just looking into this process for our Co.

Please forward a copy to me tooo....

Thankx in advance.


km@jrbtc.com
inthemoodforaltiris is offline   Reply With Quote
Old 08-27-2007, 01:42 PM   #17 (permalink)
 
Status: Altiris Admin
Join Date: 09-08-2006
Location: New Jersey
Posts: 90


Can you please shoot me a copy also...

Vincent.SaporitoATgmail.com

Last edited by s0n-; 08-27-2007 at 01:59 PM..
s0n- is offline   Reply With Quote
Old 08-27-2007, 01:53 PM   #18 (permalink)
 
Nick's Avatar
 
Status: Altiris Architect (Site Founder)
Join Date: 01-01-2005
Location: RDU, North Carolina, USA
Posts: 4,981


Just a suggestion for those that put their email address in the body of the message.

I've seen a couple of times where 'bots have scrubs forums for things like this. I haven't seen any activity like that on the forums here but I would suggest changing the email format to something like jdoeATdomain.com with a note to replace AT with @ or send a Private Message to the person you are requesting the information from.

Cheers,
__________________
Scire potentia est (knowledge is power)
Nick is offline   Reply With Quote
Old 08-27-2007, 03:21 PM   #19 (permalink)
 
Status: Junior Altiris Admin
Join Date: 04-27-2007
Location: Seattle
Posts: 2


HII documentation

Quote:
Originally Posted by mainsg
Not a problem. If you would like our full documentation I wrote up with step-by-step process, let me know what your email addy is and I will send it to you. It is definitely helpful and you might get a clearer picture of how the drivers work.

Gabriel
Hi Gabriel,

Not sure if you are still sending out this documentation, but I would like to have it

danielle_hunter@agsea.com or danielle_hunterATagsea.com. I had asked once before and then got sidetracked so never followed up on it.

Thanks,

Danielle
adahein is offline   Reply With Quote
Old 11-09-2007, 03:31 AM   #20 (permalink)
 
Status: Altiris Admin
Join Date: 10-04-2006
Location: Britain
Posts: 66


Gabriel

Can you please send me the document as well please, my e-mail is Paul.Healey AT Pilkington.com

Thanks

Paul
tallas77 is offline   Reply With Quote
Old 11-14-2007, 04:19 PM   #21 (permalink)
 
Status: Junior Altiris Admin
Join Date: 11-14-2007
Location: France
Posts: 6


Documentation Request

Is it possible to send it to : xponard (AT) yahoo.fr
Thanks


Last edited by xponard; 01-04-2008 at 02:53 AM..
xponard is offline   Reply With Quote
Old 12-03-2007, 05:55 PM   #22 (permalink)
 
Status: Super Altiris Admin
Join Date: 03-06-2006
Location: Calgary Alberta Canada
Posts: 487


may I have this as well please
billasullivanATgmail.com
Bill Sullivan is offline   Reply With Quote
Old 12-03-2007, 10:46 PM   #23 (permalink)
 
Kogenta's Avatar
 
Status: Junior Altiris Admin
Join Date: 01-31-2007
Location: Des-Moines
Age: 26
Posts: 14


Please send me a copy of the documentation

Hi Gabriel,

I'm not sure if your still offering the documentation you mentioned. But if you are, please send me a copy @ mkromarekATgmail.com
Kogenta is offline   Reply With Quote
Old 11-02-2008, 09:54 PM   #24 (permalink)
 
Status: Junior Altiris Admin
Join Date: 10-28-2008
Location: australia
Posts: 21


Document request

Hi Gabriel,

Can you please send me the document, periiclesAThotmail.com

Thanks
periicles is offline   Reply With Quote
Old 01-14-2009, 12:52 AM   #25 (permalink)
 
Status: Junior Altiris Admin
Join Date: 01-13-2009
Location: Australia
Posts: 3


Hi Gabriel,
can you please send me the doco at
dmkalam@yahoo.com.au

Thanks
Kalam
dmdaza is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Powered by vBadvanced CMPS v3.0 RC2

All times are GMT -4. The time now is 10:21 PM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
vB.Sponsors
Altirigos