Help - Search - Members - Calendar
Full Version: PowerDVD will not install
MSFN Forums > Unattended Windows Discussion & Support > Application Installs

   
Google Internet Forums Unattended CD/DVD Guide
bubbers214
I cannot get powerdvd to silently install no matter what I do. Here is my cmd that I call
CODE
ECHO Installing PowerDVD V5
ECHO Please Wait...
start /wait %systemdrive%\install\Applications\PowerDVD\Setup.exe -s -f1"%systemdrive%\install\Applications\PowerDVD\setup.iss


And here is my setup.iss
CODE
[InstallShield Silent]
Version=v6.00.000
File=Response File
[File Transfer]
OverwrittenReadOnly=NoToAll
[Application]
Name=PowerDVD
Version=5.0
Company=CyberLink
Lang=0009
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-DlgOrder]
Dlg0={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdWelcome-0
Count=9
Dlg1={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdLicense-0
Dlg2={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdDisplayTopics-0
Dlg3={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdRegisterUserEx-0
Dlg4={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdAskDestPath-0
Dlg5={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdSelectFolder-0
Dlg6={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SELECTSKINDIALOG-0
Dlg7={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SHOW_CLPV_CLEV_DIALOG-1
Dlg8={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdFinish-0
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdWelcome-0]
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdLicense-0]
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdDisplayTopics-0]
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdRegisterUserEx-0]
szName=Jeff Marshall
szCompany=Company
szSerial=*
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdAskDestPath-0]
szDir=C:\Program Files\CyberLink\PowerDVD
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdSelectFolder-0]
szFolder=CyberLink PowerDVD
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SELECTSKINDIALOG-0]
DefaultSkin=CRYSTAL
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SHOW_CLPV_CLEV_DIALOG-1]
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdFinish-0]
Result=1
bOpt1=0
bOpt2=0


What if anything is wrong with my code??! This is the last piece of software i am having issues with.

I also have a quick questino about Zoom Player install, it opens up Internet Explorer at the end of installation, it doesn't interupt anything but its annoying. Any ideas how to stop it?
bubbers214
Used taskkill to take care of iexplorer, but still having issues with powerdvd.
Frank_Sechrist
start /wait %systemdrive%\Install\pdvd\Setup.exe -s %systemdrive%\Install\pdvd\setup.iss

The above works for me. Note that I'm not using the -f1 before the .iss file parameter.

.iss file is:

[InstallShield Silent]
Version=v6.00.000
File=Response File
[File Transfer]
OverwrittenReadOnly=NoToAll
[Application]
Name=PowerDVD
Version=5.0
Company=CyberLink
Lang=0009
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-DlgOrder]
Dlg0={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdWelcome-0
Count=9
Dlg1={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdLicense-0
Dlg2={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdDisplayTopics-0
Dlg3={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdRegisterUserEx-0
Dlg4={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdAskDestPath-0
Dlg5={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdSelectFolder-0
Dlg6={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SELECTSKINDIALOG-0
Dlg7={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SHOW_CLPV_CLEV_DIALOG-1
Dlg8={6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdFinish-0
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdWelcome-0]
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdLicense-0]
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdDisplayTopics-0]
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdRegisterUserEx-0]
szName=Owner of this Computer
szCompany=Owner's Location
szSerial=*********
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdAskDestPath-0]
szDir=C:\Program Files\CyberLink\PowerDVD
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdSelectFolder-0]
szFolder=CyberLink PowerDVD
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SELECTSKINDIALOG-0]
DefaultSkin=Glow
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SHOW_CLPV_CLEV_DIALOG-1]
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdFinish-0]
Result=1
bOpt1=0
bOpt2=0
bubbers214
You RULE! Thanks man, been racking my brain over that for like 3 days, everything works great now. Thanks again.
pachelbeljoe
QUOTE (bubbers214 @ Feb 23 2004, 06:40 PM)
You RULE!  Thanks man, been racking my brain over that for like 3 days, everything works great now.  Thanks again.

Thatīs it one simple string thats false can drive you crazy and it may take you days to find out! cool.gif

pachelbeljoe welcome.gif
OldMan
Pachel,,,,,
Although removing the -f1 parameter fixed your problem, if the code for your silent installation is exactly as you have stated in your thread, then you basically have a syntax error. You are missing a set of quotation marks at the end of setup.iss. I have installed PowerDVD using -f1 parameter and it installed fine. Just Gee Wiz info for you. newwink.gif

The Old Dude
eirogge
any possibility to set the install dir to a relative instead of an absolute path?
Frank_Sechrist
I use setup.exe -R to record the setup.iss file. That file has a line similar to the following:

szDir=C:\Program Files\CyberLink\PowerDVD

Since I want my unattended install to work correctly when installed to any hard drive, I copy everything in the .iss file BEFORE the 'program files' line to a file named 'part1.iss'. I copy everything AFTER the 'program files' line to a file named 'part3.iss'. During install, I create a part2.iss file as shown below, then copy the three parts into one setup.iss file. If I'm installing to Drive E:, the setup.iss file will contain the following line:

szDir=E:\Program Files\CyberLink\PowerDVD

Here's my code:

echo szDir=%programfiles%\CyberLink\PowerDVD> %systemdrive%\Install\pdvd\part2.iss
copy %systemdrive%\Install\pdvd\part1.iss + %systemdrive%\Install\pdvd\part2.iss + %systemdrive%\Install\pdvd\part3.iss %systemdrive%\Install\pdvd\setup.iss
start /wait %systemdrive%\Install\pdvd\Setup.exe -s %systemdrive%\Install\pdvd\setup.iss
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.