Jump to content

want to make automed app install after widows setup


osfar

Recommended Posts

Hi

i want to make a customized windows so its install these applicatio automaticlly

after windows setup

-Ashampo cd burner 8.03 and how to make it write the seriall autmaticlly

-klite mega codec pack 4.17

- yahoo massenger 9 and windows live messeger 8.5 (last build!)

-win rar 3.71

-adobe reader 8

-directx 9.0c

-real player 11

can u help me!!!!

i dont know where to start and i know nothing to how to these!!!!!!!

and i have iso file of win xp sp3 that intergrated with wmp11 and ie7 with ur help

thanks :whistle:

Link to comment
Share on other sites


Download Nlite : http://www.filehippo.com/download_nlite/do...85e14b1dbb68b4/

You can integrate your software in Hotfixes/Add-ons stage,there you'll find some http://www.winaddons.com/nlite-addons

You can also use Nlite RunOnce tab,your software will be intalled at fist log on ,but you'll need to know silent switches for each.

I can give you some examples

start /wait %SYSTEMROOT%\se_tp\klcodec.exe /VERYSILENT /SP-

start /wait %SYSTEMROOT%\se_tp\firefox.exe -ms

In my case I've put "se_tp" folder that contains software packages,in $OEM$/$$ and it will be automatically copied in windows folder so,at first log on this path will be valid (%SYSTEMROOT%\se_tp\)

Link to comment
Share on other sites

I Have Setup studio 1.0 Corporate edition

In programs section it asked me to choose the exe file

then after i choose the program (adobe reader 8 )

a message appears "This program is not natively supported In setup studio"

and under these message there are tow choice

1- Compatible mode ( if i choose this a list of programs names appears and i choose the correct program but i cant find adobe reader 8 only 7 listed

2- Foreign mode ( if i choose these it asked me to type Silent installation switch ????????????

how to know Silent installation switch for all programs that i typed in the topic so after windows setup finish its start autmaticlly to install these programs?

In my case I've put "se_tp" folder that contains software packages,in $OEM$/$$ and it will be automatically copied in windows folder so,at first log on this path will be valid (%SYSTEMROOT%\se_tp\)

Can U EXPLAIN??????????????????????????????? :ph34r:

Link to comment
Share on other sites

search the unattended installation forum for all switches..

u will have to help yourself.. i doubt anyone around here wants to spoon feed you switches.. just search the forum & u will come up with switches for anything you need, this is meant for advanced users, not novices.. if you are a novice (not meaning any disrespect) you maybe further off asking a friend to do the project for you, or start reading, as it takes alot of reading to understand something new (just like anything else your learning for the first time)

anyways good luck to you

Link to comment
Share on other sites

I Have Setup studio 1.0 Corporate edition

...........

In my case I've put "se_tp" folder that contains software packages,in $OEM$/$$ and it will be automatically copied in windows folder so,at first log on this path will be valid (%SYSTEMROOT%\se_tp\)

Can U EXPLAIN??????????????????????????????? :ph34r:

Nlite asked you to choose a local folder to save windows setup files,go there and you'll find $OEM$ and $$ folder.

Please read this http://unattended.msfn.org/unattended.xp/view/web/18/

Go also there : http://www.winaddons.com/nlite-addons and you''ll find Adobe Reader 9,download this add-on,unpack it and you'll find ENTRIES_AdobeReader.INI and AdobeReader90.exe,open .ini file,there are silent switches for silent mode AdobeReader90.exe /sAll /rs,now

you have to put AdobeReader90.exe in $OEM$/$$ and in RunOnce tab

start /wait %SYSTEMROOT%\AdobeReader90.exe /sAll /rs

or add the cab file in nlite Hotfixes/Add-ons stage.

Now rebuild .iso file with nlite.

Edited by ionut_y
Link to comment
Share on other sites

ok guys

thanks very much

i have learned the idea for silet switchis

and i have known all programs switches that i need for my attendent project

but im still asking

if want to make nero to install autmatclly

when i setup nero it extract it self then u start to press next ......................

how will i make nero silently type the serial number?????

and thank u very much ionut_y

for the useful website

Link to comment
Share on other sites

how will i make nero silently type the serial number?????

You're welcome

with Nero,you can do this way,but works only with Nero Micro

download demo kit from there

create a .reg file

REGEDIT4
[HKEY_LOCAL_MACHINE\SOFTWARE\Nero\Installation\Families\Nero 8\Info]
"User"="xxxxxxxx"
"Company"="xxxxxxxxxx"
"Serial8_1199672675"="xxxxxxxxx"

replace 'x' with your user,company and serial,save this file as nero.reg

now run installer this way

regedit /s Nero.reg
nero-8.3.6.0_english_lite.exe /VERYSILENT

you can add these lines into a .bat file, download add-on maker from there

put all your 3 file into a folder,run add-on maker,choose your folder and .bat file as installation file,make the .cab then extrat cab and you'll find a single .exe that works silet and combines all 3 files.

Edited by ionut_y
Link to comment
Share on other sites

Nlite asked you to choose a local folder to save windows setup files,go there and you'll find $OEM$ and $$ folder.

i went there but i didnt find the folder named $OEM$

Create it and rebuild iso,nlite will include this folder.

You can create \$OEM$\$1\Install

this will become %systemdrive%\install\ so you can run

start /wait %systemdrive%\install\mysetup.exe /SILENT"

there you'll fine some tips http://unattended.msfn.org/unattended.xp/view/web/18/

This folder could be removed this way

RMDIR %systemdrive%\install /s /q

Edited by ionut_y
Link to comment
Share on other sites

Nlite asked you to choose a local folder to save windows setup files,go there and you'll find $OEM$ and $$ folder.

i went there but i didnt find the folder named $OEM$

Create it and rebuild iso,nlite will include this folder.

You can create \$OEM$\$1\Install

this will become %systemdrive%\install\ so you can run

start /wait %systemdrive%\install\mysetup.exe /SILENT"

there you'll fine some tips http://unattended.msfn.org/unattended.xp/view/web/18/

This folder could be removed this way

RMDIR %systemdrive%\install /s /q

did u mean that i go to the local folder was created by nlite and make a new folder named $OEM$

then make iso file and extract it again and start to make my project?

Link to comment
Share on other sites

Go to setup folder,create $OEM$\$1\Install then copy all your packages there.Run Nlite,load last session,go to RunOnce tab and add your commands

................

start /wait %systemdrive%\install\mysetup.exe /SILENT"

.........

RMDIR %systemdrive%\install /s /q

Make .iso file and test it with Virutal PC http://www.microsoft.com/downloads/details...;displaylang=en

Edited by ionut_y
Link to comment
Share on other sites

Go to setup folder,create $OEM$\$1\Install then copy all your packages there.Run Nlite,load last session,go to RunOnce tab and add your commands

................

start /wait %systemdrive%\install\mysetup.exe /SILENT"

.........

RMDIR %systemdrive%\install /s /q

Make .iso file and test it with Virutal PC http://www.microsoft.com/downloads/details...;displaylang=en

BUT I DIDNT ADD

RMDIR %systemdrive%\install /s /q

WHY I SHOULD ADD THESE LINE

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...