Jump to content

please see if det file is correct.


Recommended Posts

the RunOnceEx file looks this way:

Is it correct?

cmdow @ /HID
@Echo Off

SET PP=%SystemDrive%\Apps\

SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

REG ADD %KEY% /V TITLE /D "Unattended Program Installation" /f

REG ADD %KEY%\000 /VE /D "Abdobe Reader 6" /f
REG ADD %KEY%\000 /V 1 /D "%PP%AdbeRdr60_dan_full.exe" /f

REG ADD %KEY%\001 /VE /D "First Class" /f
REG ADD %KEY%\001 /V 1 /D "%PP%FC7008DK.EXE" /f

REG ADD %KEY%\002 /VE /D "ad aware" /f
REG ADD %KEY%\002 /V 1 /D "%PP%aaw6181.exe" /f

REG ADD %KEY%\003 /VE /D "active desktop calender" /f
REG ADD %KEY%\003 /V 1 /D "%PP%adc.exe" /f

REG ADD %KEY%\004 /VE /D "ezantivirus" /f
REG ADD %KEY%\004 /V 1 /D "%PP%ezantivirus.exe" /f

REG ADD %KEY%\005 /VE /D "google toolbar" /f
REG ADD %KEY%\005 /V 1 /D "%PP%googletoolbarinstaller.exe" /f

REG ADD %KEY%\006 /VE /D "microsoft anti spyware" /f
REG ADD %KEY%\006 /V 1 /D "%PP%microsoftantispywareinstaller.exe" /f

REG ADD %KEY%\007 /VE /D "protowall" /f
REG ADD %KEY%\007 /V 1 /D "%PP%protowall 2.0.exe" /f

REG ADD %KEY%\008 /VE /D "powerstrip" /f
REG ADD %KEY%\008 /V 1 /D "%PP%pstrip-i.exe" /f

REG ADD %KEY%\009 /VE /D "daemon tool" /f
REG ADD %KEY%\009 /V 1 /D "%PP%scd2_en.exe" /f

REG ADD %KEY%\010 /VE /D "winrar " /f
REG ADD %KEY%\010 /V 1 /D "%PP%wrar342.exe" /f

REG ADD %KEY%\011 /VE /D "zonealarm" /f
REG ADD %KEY%\011 /V 1 /D "%PP%zapsetup_55_062_011.exe" /f

REG ADD %KEY%\012 /VE /D "ad-aware" /f
REG ADD %KEY%\012 /V 1 /D "%PP%aaw6181.exe" /f

REG ADD %KEY%\013 /VE /D "office 2003" /f
REG ADD %KEY%\013 /V 1 /D "%PP%Office 2003\setup.exe" /f

REG ADD %KEY%\014 /VE /D "Nero 5 " /f
REG ADD %KEY%\014 /V 1 /D "%PP%Nero 5\Nero\NERO55" /f

REG ADD %KEY%\015 /VE /D "Nokia pc suite" /f
REG ADD %KEY%\015 /V 1 /D "%PP%Nokia_PC_Suite_641_en.exe" /f

REG ADD %KEY%\016 /VE /D "AVG antivirus" /f
REG ADD %KEY%\016 /V 1 /D "%PP%avg70free_308a468.exe" /f

REG ADD %KEY%\017 /VE /D "messenger 6.2" /f
REG ADD %KEY%\017 /V 1 /D "%PP%msn Messenger 6.2.exe" /f

REG ADD %KEY%\018 /VE /D "Gubasis notation" /f
REG ADD %KEY%\018 /V 1 /D "%PP%Gubasis notation\Setup.exe" /f

REG ADD %KEY%\019 /VE /D "Torrentstorm" /f
REG ADD %KEY%\019 /V 1 /D "%PP%TorrentStorm-1.3[Bittorrent-Source.com].exe" /f

REG ADD %KEY%\020 /VE /D "soundblaster driver" /f
REG ADD %KEY%\020 /V 1 /D "%PP%SoundblasterLive 5.1 DrvPack_Patch.exe" /f

REG ADD %KEY%\021 /VE /D "Ti 4600 gfx driver " /f
REG ADD %KEY%\021 /V 1 /D "%PP%Ti 4600 gfx driver 71.84_win2kxp_english.exe" /f

EXIT

I have added the same parameters to al of them (standard). Will it work this way?

Also.. are the maps where they should be? (see the attachment)

the install, OEM aso.

Thanks in advance

\Brian

pic_of_maps.doc

Link to comment
Share on other sites


Im a total NOOB so please tell me how.. I have read the beginners guide but still it's alot of new knowledge when you havent tried somthing like this before. Bear with me! :blushing:

1: virtual machine right?

2: what are those?

3: I'm a noob.. what can I say - But when we are at it tell how you put pic in topic..

4: B) I did somthing the right way!!! :D

Link to comment
Share on other sites

1. Use VMware or so to test out your installation. I tested mine out like thirty times. :P

2. good job :P

3. most basic way is to paste it into paint and save it as a JPG. I prefer PNG tho (and any other graphics-program).

4. I'm not certain it's correct. :P For one thing, I'm not sure you may use that final "\" in %PP%, but I'm guessing it should work.

Holy crap, I hadn't even noticed. You're not using any parameters at all. :D

Well, first you can use the Universal Switch Finder to find the correct parameter. And search the forum.

Link to comment
Share on other sites

1: there are alot of different VMware.. Is't VMware VirtualCenter 1.2?

the "Universal Switch Finder" you are talking about is that program or a list and where can I find it?

btw. THX for al the help ;)

Link to comment
Share on other sites

What your doing is not totally correct.

SET PP=%SystemDrive%\Apps\

So %PP%AdbeRdr60_dan_full.exe tells your runonceex it must execute C:\Apps\AdbeRdr60_dan_full.exe ( C:\ could of course be something else)

Now I looked at your file structure and I noticed you have a $OEM$\$1\Install folder

You should change:

SET PP=%SystemDrive%\Apps\

Into this:

SET PP=%SystemDrive%\install\

Good luck!!

EDIT:

By the way,

The rest of your filestructure looks great :thumbup

EDIT 2:

If you want to find some switches, check this part of the forum

EDIT 3:

Avoid using a "SPACE" in file or folder names. This will prevent a lot of troubles, and with quotation. intead of:

REG ADD %KEY%\013 /V 1 /D "%PP%Office 2003\setup.exe" /f

use:

REG ADD %KEY%\013 /V 1 /D "%PP%Office_2003\setup.exe" /f

and a switch for office can be found here ;)

EDIT 4:

(Reaction on the post below me) BAM, I totally agree with you. I wish that more new users started this way instead of asking things that are already explained clearly.

Edited by erik_demon
Link to comment
Share on other sites

I just wanted to say this looks very nice as a "starter" :thumbup long time not seen.

You will get there, perfect example of someone who starts the way it should be.

Also good luck from me :hello:

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...