MSFN Forum: Cannot Install Applications - MSFN Forum

Jump to content



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

Cannot Install Applications Rate Topic: -----

#1 User is offline   LLiLo 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 12-March 08

Posted 12 March 2008 - 08:59 AM

Hi everyone, I'm trying to make an Unattended Windows XP CD, but I can't seem to get the applications to install correctly. Until I managed to get working the windows installation, but when is time for the applications to install I get this error message:
Windows cannot find'C:\install\Install\Framewor'. Make sure you typed the name correctly and try again. To search for a file, click start button, and then searh.

I Get this message for every application I'm trying to install.

Any help will be very much appreciated.!!!!!

Attached File(s)




#2 User is offline   IcemanND 

  • MSFN Junkie
  • Group: Super Moderator
  • Posts: 3,249
  • Joined: 24-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 12 March 2008 - 09:23 AM

is there a space in the path that the error is in? right after the word 'framework' in this case?

#3 User is offline   LLiLo 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 12-March 08

Posted 13 March 2008 - 06:15 AM

D:\WIN UE V2\$OEM$\$1\$Install\Framework 1.1
this is the complete path.

#4 User is offline   IcemanND 

  • MSFN Junkie
  • Group: Super Moderator
  • Posts: 3,249
  • Joined: 24-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 13 March 2008 - 06:24 AM

Depending upon where you are running this from you may need to enclose the command and path in double quotes.
For example:
"C:\install\Install\Framework 1.1\dnet11.exe"

the way it is running now it thinks the first switch is the 1.1 and Framework is the executable it should run.

#5 User is offline   LLiLo 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 12-March 08

Posted 13 March 2008 - 06:38 AM

Now when i'm trying to install the applications, it opens another comand prompt

Attached File(s)



#6 User is offline   IcemanND 

  • MSFN Junkie
  • Group: Super Moderator
  • Posts: 3,249
  • Joined: 24-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 13 March 2008 - 06:51 AM

Where are you doing the install from? post the file that the commands are running from, that may help clear it up, or post the contents of the file in the post.

#7 User is offline   LLiLo 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 12-March 08

Posted 13 March 2008 - 07:01 AM

This is what i'm trying to use to install the applications

ECHO Installing .NET Framework v1.1
ECHO Please wait...
start /wait "%systemdrive%\install\Framework1.1\install.exe"

ECHO Installing .NET Framework v2.0
ECHO Please wait...
start /wait "%systemdrive%\install\NetFramework 2.0\install.exe" /S /qb-! /f

ECHO Installing Adobe Reader 7
ECHO Please wait...
start /wait "%systemdrive%\install\Adobe Reader 7\AdbeRdr708_en_US.exe" -p-s /v\"/qn\""

ECHO.
ECHO Installing Office 2003 Professional
ECHO Please wait...
start /wait "%systemdrive%\install\Office2003\setup.exe" TRANSFORMS=Unattended.MST /qb-

ECHO.
ECHO Quicktime
ECHO Please wait...
start /wait "%systemdrive%\install\Quicktime\QuickTimeInstaller.exe" /S /V/qn

ECHO.
ECHO Installing Windows Media Player 11
ECHO Please wait...
start /wait "%systemdrive%\install\WMP11\MP11setup.exe" /q:A /c:"setup_wm.exe /Q /R:N /DisallowSystemRestore"

ECHO.
ECHO Installing Sun Java
ECHO Please wait...
start /wait "%systemdrive%\install\Sun Java\Sun Java.exe" [/L<language ID>] /s [ADDLOCAL=jrecore[,extra][,other_US] | ALL] [IEXPLORER=1] [MOZILLA=1] [INSTALLDIR=<drive>:\<install_path>] [REBOOT=Suppress] [JAVAUPDATE=0] [CUSTOM=1]

ECHO.
ECHO Installing Adobe ShockWave Player 10.2.0
ECHO Please wait...
start /wait "%systemdrive%\install\Adobe\Shockwave.exe" /s

ECHO.
ECHO Installing Adobe Flash Player 9.0.45
ECHO Please wait...
start /wait "%systemdrive%\install\Adobe\Flash.exe" /s

exit

And just in case it is any help this is the winnt.sif
;SetupMgrTag
[Data]
AutoPartition=0
MsDosInitiated="0"
UnattendedInstall="Yes"
AutomaticUpdates=yes

[Unattended]
FileSystem=*
UnattendMode=FullUnattended
OemSkipEula=Yes
OemPreinstall=Yes
TargetPath=\WINDOWS
UnattendSwitch="yes"
KeyboardLayout="US-International"


[GuiUnattended]
AdminPassword=
EncryptedAdminPassword=NO
OEMSkipRegional=1
TimeZone=55
OemSkipWelcome=1

[UserData]
ProductKey=
FullName="AF"
OrgName="Home
ComputerName=*

[RegionalSettings]
LanguageGroup=13,17,3,2,5,16,4,12,15,7,8,10,11,9,6,14,1

[Identification]
JoinWorkgroup=WORKGROUP

[Networking]
InstallDefaultComponents=Yes

[Components]
msmsgs=off
msnexplr=off
freecell=off
hearts=off
minesweeper=off
pinball=off
solitaire=off
spider=off
zonegames=off

[GuiRunOnce]
%systemdrive%\install\Apps.cmd

#8 User is offline   IcemanND 

  • MSFN Junkie
  • Group: Super Moderator
  • Posts: 3,249
  • Joined: 24-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 13 March 2008 - 07:07 AM

The START command sees the first item in quotes and thinks it should be the title. Place a set of empty double quotes before the /wait and after start should solve it for you.

START ["title"] [/Dpath] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED]
[/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL]
[/WAIT] [/B] [command/program]
[parameters]

ECHO Installing .NET Framework v1.1
ECHO Please wait...
start "" /wait  "%systemdrive%\install\Framework1.1\install.exe" 

ECHO Installing .NET Framework v2.0
ECHO Please wait...
start "" /wait "%systemdrive%\install\NetFramework 2.0\install.exe" /S /qb-! /f

ECHO Installing Adobe Reader 7
ECHO Please wait...
start "" /wait "%systemdrive%\install\Adobe Reader 7\AdbeRdr708_en_US.exe" -p-s /v\"/qn\""

ECHO.
ECHO Installing Office 2003 Professional
ECHO Please wait...
start "" /wait "%systemdrive%\install\Office2003\setup.exe" TRANSFORMS=Unattended.MST /qb- 

ECHO.
ECHO Quicktime
ECHO Please wait...
start "" /wait "%systemdrive%\install\Quicktime\QuickTimeInstaller.exe" /S /V/qn

ECHO.
ECHO Installing Windows Media Player 11
ECHO Please wait...
start "" /wait "%systemdrive%\install\WMP11\MP11setup.exe" /q:A /c:"setup_wm.exe /Q /R:N /DisallowSystemRestore"

ECHO.
ECHO Installing Sun Java
ECHO Please wait...
start "" /wait "%systemdrive%\install\Sun Java\Sun Java.exe" [/L<language ID>] /s [ADDLOCAL=jrecore[,extra][,other_US] | ALL] [IEXPLORER=1] [MOZILLA=1] [INSTALLDIR=<drive>:\<install_path>] [REBOOT=Suppress] [JAVAUPDATE=0] [CUSTOM=1]

ECHO.
ECHO Installing Adobe ShockWave Player 10.2.0
ECHO Please wait...
start "" /wait "%systemdrive%\install\Adobe\Shockwave.exe" /s

ECHO.
ECHO Installing Adobe Flash Player 9.0.45
ECHO Please wait...
start "" /wait "%systemdrive%\install\Adobe\Flash.exe" /s

exit


#9 User is offline   LLiLo 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 12-March 08

Posted 13 March 2008 - 07:49 AM

Using this code the command propmt box just disspears inmediatly,

 
ECHO Installing .NET Framework v1.1
ECHO Please wait...
"start "" /wait  "%systemdrive%\install\Framework1.1\install.exe" 

ECHO Installing .NET Framework v2.0
ECHO Please wait...
"start "" /wait "%systemdrive%\install\NetFramework 2.0\install.exe" /S /qb-! /f

ECHO Installing Adobe Reader 7
ECHO Please wait...
"start "" /wait "%systemdrive%\install\Adobe Reader 7\AdbeRdr708_en_US.exe" -p-s /v\"/qn\""

ECHO.
ECHO Installing Office 2003 Professional
ECHO Please wait...
"start "" /wait "%systemdrive%\install\Office2003\setup.exe" TRANSFORMS=Unattended.MST /qb- 

ECHO.
ECHO Quicktime
ECHO Please wait...
"start "" /wait "%systemdrive%\install\Quicktime\QuickTimeInstaller.exe" /S /V/qn

ECHO.
ECHO Installing Windows Media Player 11
ECHO Please wait...
"start "" /wait "%systemdrive%\install\WMP11\MP11setup.exe" /q:A /c:"setup_wm.exe /Q /R:N /DisallowSystemRestore"

ECHO.
ECHO Installing Sun Java
ECHO Please wait...
"start "" /wait "%systemdrive%\install\Sun Java\Sun Java.exe" [/L<language ID>] /s [ADDLOCAL=jrecore[,extra][,other_US] | ALL] [IEXPLORER=1] [MOZILLA=1] [INSTALLDIR=<drive>:\<install_path>] [REBOOT=Suppress] [JAVAUPDATE=0] [CUSTOM=1]

ECHO.
ECHO Installing Adobe ShockWave Player 10.2.0
ECHO Please wait...
"start "" /wait "%systemdrive%\install\Adobe\Shockwave.exe" /s

ECHO.
ECHO Installing Adobe Flash Player 9.0.45
ECHO Please wait...
"start "" /wait "%systemdrive%\install\Adobe\Flash.exe" /s

exit 


#10 User is offline   IcemanND 

  • MSFN Junkie
  • Group: Super Moderator
  • Posts: 3,249
  • Joined: 24-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 13 March 2008 - 08:07 AM

remove the quote from in from of START. sorry I may not have explained ot clearly. it should look like the code I posted.

FYI: when posting code anf inf's etc for readability place them inside code tags.

#11 User is offline   Yzöwl 

  • Wise Owl
  • Group: Super Moderator
  • Posts: 4,195
  • Joined: 13-October 04
  • OS:Windows 7 x64

Posted 13 March 2008 - 08:09 AM

It will do, because it's not what was suggested for you to use.

All your commands seem to be starting their lines with a double quote before the word start, remove them and try again!

<Edit>
Sorry for the post IcemanND beat me to it!

I've edited your post however to place your code in between tags
</Edit>

#12 User is offline   LLiLo 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 12-March 08

Posted 13 March 2008 - 08:20 AM

After I removed the " before start I receive the firts error message, and I copied the code posted IcemanND

#13 User is offline   IcemanND 

  • MSFN Junkie
  • Group: Super Moderator
  • Posts: 3,249
  • Joined: 24-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 13 March 2008 - 08:34 AM

Your first post had the path as ...\framework 1.1\ but you posted you cmd file with ....\framework1.1\ one with a space one without. make sure the paths in the file match the paths on the hard drive.

#14 User is offline   LLiLo 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 12-March 08

Posted 13 March 2008 - 08:39 AM

They match, I tried it with and without the space, currently I have them with the space, this is the print Screen of my install folder and the .cmd file, so you can see the file names match

Attached File(s)



#15 User is offline   IcemanND 

  • MSFN Junkie
  • Group: Super Moderator
  • Posts: 3,249
  • Joined: 24-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 13 March 2008 - 08:44 AM

Check the hard drive during the install, your folder on %systemdrive% will be $install not install.

#16 User is offline   LLiLo 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 12-March 08

Posted 13 March 2008 - 09:20 AM

Thank you for all your help, i'm currently installing some applications without any problems, i think the ones that are giving me some issueas are just for the silent parameters, but i will keep working on that, But REALLY THANK YOU!!!!

#17 User is offline   IcemanND 

  • MSFN Junkie
  • Group: Super Moderator
  • Posts: 3,249
  • Joined: 24-September 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 13 March 2008 - 09:34 AM

Not a problem. If you search around the forum you will likely find the switches to your apps to make them silent. There is also a database of some switches in the unattended guide http://unattended.msfn.org .

Good luck and welcome to MSFN

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