Help - Search - Members - Calendar
Full Version: [HELP] Application installation failing
MSFN Forums > Unattended Windows Discussion & Support > Application Installs

   
Google Internet Forums Unattended CD/DVD Guide
johny
I am having some trouble getting my applications to install. I am using the guirunonce method to call my install.cmd file which contains the following:

CODE
@echo off
ECHO.
ECHO Installing Microsoft .NET Framework Version 1.1 Redistributable Package (x86)
ECHO Please wait...
start /wait "%SYSTEMDRIVE%\\PostInstall\\Microsoft .NET Framework Version 2.0 Redistributable Package (x86)\\netfx.msi /qb"


ECHO.
ECHO Installing Visual Basic 6.0 SP5 Run-Time Redistribution Pack (vbrun60sp5.exe)
ECHO Please wait...
start /wait "%SYSTEMDRIVE%\\PostInstall\\Visual Basic 6.0 SP5 Run-Time Redistribution Pack (vbrun60sp5.exe)\\vbrun60sp5.exe /q"


ECHO.
ECHO Installing Sun Java
ECHO Please wait...
start /wait "%SYSTEMDRIVE%\\PostInstall\\SunJava\\jre-1_5_0_06-windows-i586-p.exe" /s Custom=1 AddLocal=ALL IExplorer=1 MOZILLA=1 Javaupdate=1 Reboot=Suppress

ECHO.
ECHO Installing VMware Workstation 5.0.0 build-13124
ECHO Please wait...
start /wait %SYSTEMDRIVE%\\PostInstall\\VMware\\VMware Workstation.msi /s /v"ADDLOCAL=ALL DISABLE_AUTORUN=0 SERIALNUMBER= DESKTOP_SHORTCUT=1 /qn"

ECHO.
ECHO Installing EST NOD32
start /wait %SYSTEMDRIVE%\\PostInstall\\EST\\setup.exe /silentmode
regedit /s %SYSTEMDRIVE%\\PostInstall\\EST\\EST_CONF.reg


ECHO.
ECHO Installing Adobe Acrobat Professional 7.0
start /wait %SYSTEMDRIVE%\\PostInstall\\AcroPro\\setup.exe


My unattended cd will install xp but will not install any applications what am i doing wrong.
MHz
Hey johny,
Welcome.

\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Looks like a syntax problem.
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\

This works:
CODE
explorer %systemdrive%\windows

This does not:
CODE
explorer %systemdrive%\\windows


Use just one backslash as a path separator.
smile.gif
johny
thx, I noticed the syntx error as well and Im testing now.

Needed Fixes

- DirectX requests liceses agreement & install path @12min. marker

- Sun Java : The system can not find the file Custom=1.

- Installing .NET Framework Version 1.1 hangs indefinetly.
johny
All programs at the point of the .NET framework seem to hang.
elajua
1) i noticed that your're not installing framework 1.1 before 2.0 (see your runonceex
2) for java jre the options you are using in syntax are defaults, you just need to run the exe with /s /v/qn
3) for directx you just need to extract the files inside the downloaded exe and run DXSETUP.EXE /silent

maybe you are not installing windows updates with your unattended installation. i suggest you to install them prior to install all kind of programs. this will may affect some programs, specially mucrosoft that requires prior patches for some stuff like directx and frameworks.

hope this helps you.
Google Internet Forums Unattended CD/DVD Guide
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.