MSFN Forum: Order of install via RunOnceEx.cmd? - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Order of install via RunOnceEx.cmd? Does install order matter? Rate Topic: -----

#1 User is offline   Knows Nothing 

  • Group: Members
  • Posts: 2
  • Joined: 03-May 05

Posted 09 May 2005 - 01:02 PM

Hey guys

I'm very new to this unattended malarky. I slowly seem to be getting the hang of it, the guides and this forum posts have been a great help, thanks :thumbup

I've got about 10 programs set up that run silently, but I just thought I'd check that there's no recommended order for installing programs, what with reboots being suppressed etc.

I've not come accross anyone else asking yet, and I assume there's no bother, but I thought I'd just check ;)


#2 User is offline   Tokyudo 

  • Newbie
  • Group: Members
  • Posts: 26
  • Joined: 03-August 04

Posted 09 May 2005 - 02:46 PM

Here's an example of mine:

CLS
@echo off
TITLE Unattended Applications Installation   [EYEPATCH]  ARRRRRRRRGH!  [/EYEPATCH]


ECHO.
ECHO Removing useless shortcuts...
DEL "%systemdrive%\Documents and Settings\All Users\Start Menu\Set Program Access and Defaults.lnk"
DEL "%systemdrive%\Documents and Settings\All Users\Start Menu\Windows Catalog.lnk"



ECHO.
ECHO Applying Registry Tweaks...
REGEDIT /S %systemdrive%\install\RegTweaks.reg

ECHO.
ECHO Deleting ASP.NET User Account created by .NET Framework 1.1...
net user aspnet /delete

ECHO.
ECHO Starting installation of Applications



ECHO.
ECHO Installing JavaRuntime 1.5.0_03 
ECHO Please wait...
Start /wait %systemdrive%\install\Applications\Java\jre503.exe


ECHO.
ECHO Installing K-Lite Video Codec Pack 2.46b
ECHO Please Wait...
start /wait %systemdrive%\Install\Applications\K-Lite\klcodec246b.exe /silent
DEL "%systemdrive%\Documents and Settings\All Users\Start Menu\Programs\K-Lite Codec Pack\Uninstall K-Lite Codec Pack.lnk"
DEL "%systemdrive%\Documents and Settings\All Users\Start Menu\Programs\K-Lite Codec Pack\Tools\GSpot Codec Information.lnk"


ECHO.
ECHO Installing DirectX 9.0c
ECHO Please wait...
start /wait %systemdrive%\Install\Applications\DirectX\dxsetup.exe /Silent


ECHO.
ECHO Installing Flash (IE) and Shockwave Player (IE, Mozilla)
ECHO Please Wait...
start /wait %systemdrive%\Install\Applications\FlashShockwave\Flashshockwavefull.exe /s


ECHO.
ECHO Installing Microsoft .NET Framework 1.1 SP1 
ECHO Please wait...
start /wait %systemdrive%\Install\Applications\NET\netfxsp1.exe


ECHO.
ECHO Installing Adobe Reader 7.0.1 (Custom Version - Auto Update Turned Off)
ECHO Please wait...
start /wait %systemdrive%\install\Applications\AdobeReader7\acroread7s.exe


ECHO.
ECHO Installing WinRar 3.20 Corporate
ECHO Please wait...
Start /wait %systemdrive%\install\Applications\WinRar\WinRAR3.20.exe /s


ECHO.
ECHO Installing Lavasoft AdAware 1.05 SE Professional
ECHO Please Wait...
start /wait %systemdrive%\Install\Applications\AdAware\aawsepro.exe /s
taskkill /IM hh.exe /F
taskkill /IM Ad-Aware.exe /F


ECHO.
ECHO Installing Nero Ultra 6.6.0.12 
ECHO Please wait...
start /wait %systemdrive%\Install\Applications\Nero\Nero6.exe


ECHO.
ECHO Installing Office 2003 (Full Install without FrontPage)
ECHO Please wait...
start /wait %systemdrive%\install\Applications\Office2003\setuppro.exe TRANSFORMS=Unattended.MST /qb-




EXIT


#3 User is offline   rendrag 

  • grrrrrr
  • PipPipPipPip
  • Group: Members
  • Posts: 687
  • Joined: 28-October 04
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 09 May 2005 - 02:49 PM

as a general rule of thumb, you would install system things first, then regular programs.

i.e. I would install java2 runtime before I install firefox, so that the java plugin for firefox gets installed properly. Same with shockwave, and any other similar program.

#4 User is offline   DLF 

  • Member
  • PipPip
  • Group: Members
  • Posts: 206
  • Joined: 02-November 04

Posted 09 May 2005 - 03:42 PM

Seem to remember a row ages ago about installing 7zipped and shrunk Office 2003 before/after .NET Framework never got clarified. :whistle:

#5 User is offline   Knows Nothing 

  • Group: Members
  • Posts: 2
  • Joined: 03-May 05

Posted 09 May 2005 - 05:31 PM

Quote

as a general rule of thumb, you would install system things first, then regular programs.


That's a fair point :yes:

From that it sounds like reg tweaks should be near or first thing in the RunOnceEx but in many examples I've seen, it's the last thing before a cleanup... :unsure:

By the way, what's the java2 runtime? I installed Firefox tonight (got as far as Google but been too busy to play) and there was no mention of requiring it. I have XP +SP2 so I guess java2 is already installed...? :unsure:

#6 User is offline   rendrag 

  • grrrrrr
  • PipPipPipPip
  • Group: Members
  • Posts: 687
  • Joined: 28-October 04
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 09 May 2005 - 06:19 PM

i was just using it as an example. I deal with a lot of software that uses the java plugin, so that's why i used it. A lot of websites also use macromedia shockwave as well, so it is also why that was mentioned.

I think a lot of people put reg tweaks last (including myself) because they do not want the possibility of the value changing because of another program (for example). I suppose depending on the tweaks you were putting in place you could run them at the top.

#7 User is offline   Tokyudo 

  • Newbie
  • Group: Members
  • Posts: 26
  • Joined: 03-August 04

Posted 09 May 2005 - 11:51 PM

[quote name='Knows Nothing' date='May 9 2005, 05:31 PM']
[quote]
By the way, what's the java2 runtime? I installed Firefox tonight (got as far as Google but been too busy to play) and there was no mention of requiring it. I have XP +SP2 so I guess java2 is already installed...? :unsure:
[right]<{POST_SNAPBACK}>[/right]
[/quote]

Relative [url="http://java.sun.com/lawsuit/"]link[/url].

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy