IPB

Google Frontpage Forums Unattended CD/DVD Guide

> 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

3 Pages V   1 2 3 >  
Reply to this topicStart new topic
> powerDVD 5 silent install
voltaic
post Nov 18 2003, 03:49 PM
Post #1


KILL THE SPAMMERS!!
*

Group: Members
Posts: 86
Joined: 9-October 03
Member No.: 7905



this was a real pain...
after hours of trying every permutation of command line args and instantiation techniques i decided to do this the quick and dirty way.

install <your install dir with all apps to install>
+--powerdvd <where all powerdvd stuff is>
___|--cyberlink <actual program files for powerdvd>
___|--cyberlink powerdvd <start menu stuff>
___+--pdvd.reg <AAALL of the reg setting that apply ot powerdvd>


just install powerdvd 5 on your system, copy the program files and start menu files to the appropriate place. here is what i have in my batch file to copy everything:

ECHO.
ECHO Installing AdsGone Popup Killer 4.0.6
ECHO Please wait...
xcopy "%systemdrive%\install\adsgone\adsgone\*.*" "%systemdrive%\Program Files\AdsGone\*.*" /h /c /k /r /q /e /y
IF NOT %errorlevel% == 0 (ECHO FAILURE! Error Code: %errorlevel%) ELSE (ECHO SUCCESS!)
ECHO Copying system files
xcopy "%systemdrive%\install\adsgone\system32\*.*" "%windir%\system32\*.*" /h /c /k /r /q /e /y
IF NOT %errorlevel% == 0 (ECHO FAILURE! Error Code: %errorlevel%) ELSE (ECHO SUCCESS!)
ECHO Copying Start Menu files
xcopy "%systemdrive%\install\adsgone\programs\*.*" "%systemdrive%\documents and settings\All Users\Start Menu\Programs\*.*" /h /c /k /r /q /e /y
IF NOT %errorlevel% == 0 (ECHO FAILURE! Error Code: %errorlevel%) ELSE (ECHO SUCCESS!)
ECHO Updating Registry
regedit /s "%systemdrive%\install\adsgone\ag.reg"
IF NOT %errorlevel% == 0 (ECHO FAILURE! Error Code: %errorlevel%) ELSE (ECHO SUCCESS!)


i know that's kind of lot of stuff to wade through, but deal with it.

i have also uploaded the reg file with some fairly standard default settings such as autoplay dvds on insertion, 4 channel audio, and file associations. you will have to search through the file for 2 instances of cdkey and insert yours.

enjoy
-Voltaic
Attached File(s)
Attached File  PDVD.reg ( 9.16K ) Number of downloads: 1294
 
Go to the top of the page
 
+Quote Post
atomic7431
post Nov 18 2003, 05:42 PM
Post #2


Junior
*

Group: Members
Posts: 74
Joined: 9-September 03
Member No.: 6341
Country Flag


ok i can get powerdvd to install during setup without problem -

setup.iss file
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=na
szCompany=none
szSerial=AK97220123699186
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



then using the win update method my command line in there is -

CODE
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx\zz100]
"1"="\\Applications\\PowerDVD5\\Setup.exe -s %systemdrive%\\install\\Applications\\PowerDVD5\\setup.iss"
@="Installing Power DVD 5"


put the setup.iss file where the install files are and try it smile.gif
Go to the top of the page
 
+Quote Post
voltaic
post Nov 19 2003, 06:35 PM
Post #3


KILL THE SPAMMERS!!
*

Group: Members
Posts: 86
Joined: 9-October 03
Member No.: 7905



like i said; tried to get the setup.iss method to work every which way i could think of; none of them worked. ive used the setup.iss method before with good results too.

just thought id post this in cose it might save someone the throuble i went through.

-Voltaic
Go to the top of the page
 
+Quote Post
elduderino
post Dec 27 2003, 10:41 AM
Post #4


Junior
*

Group: Members
Posts: 74
Joined: 19-November 03
Member No.: 9729



QUOTE (atomic7431 @ Nov 18 2003, 11:42 PM)
then using the win update method my command line in there is -

CODE
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx\zz100]
"1"="\\Applications\\PowerDVD5\\Setup.exe -s %systemdrive%\\install\\Applications\\PowerDVD5\\setup.iss"
@="Installing Power DVD 5"


put the setup.iss file where the install files are and try it smile.gif

Hi atomic7431

I am trying to follow your post for powerDVD5. i am happy with the .iss file but its the other bit i don't follow

I am a newbie, could you explain in a bit more detail please.

Thanks
Go to the top of the page
 
+Quote Post
elduderino
post Dec 27 2003, 01:54 PM
Post #5


Junior
*

Group: Members
Posts: 74
Joined: 19-November 03
Member No.: 9729



QUOTE (elduderino @ Dec 27 2003, 04:41 PM)
Hi atomic7431

I am trying to follow your post for powerDVD5. i am happy with the .iss file but its the other bit i don't follow

I am a newbie, could you explain in a bit more detail please.

Thanks

Hi atomic7431

I have sorted this out now
Go to the top of the page
 
+Quote Post
Timmie
post May 19 2004, 02:27 PM
Post #6





Group: Members
Posts: 1
Joined: 15-May 04
Member No.: 19959



What is the win update method? blushing.gif
Go to the top of the page
 
+Quote Post
Alanoll
post May 19 2004, 02:37 PM
Post #7


CODE tags people, CODE tags!
Group Icon

Group: Patrons
Posts: 5496
Joined: 25-September 03
From: Dallas, Texas
Member No.: 7393
OS: none
Country Flag


the what method? i don't see that in this thread?

are you talking about RunOnceEX as Widnows Update Method?
Go to the top of the page
 
+Quote Post
edmoncu
post May 19 2004, 04:32 PM
Post #8


Advanced Member
***

Group: Members
Posts: 331
Joined: 28-April 04
Member No.: 18725
OS: none
Country Flag


here's the method i learned somewhere else here. my apologies to the original author of this concept if i forgot the link. sad.gif

anyway, based on his example, what i done is this...

i cut the setup.iss into two parts...
1st part, i named as part1.iss which contained lines from:
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=Username
szCompany=Companyname
szSerial=xxxxxxxxxxxxxxxx
Result=1
[{6811CAA0-BF12-11D4-9EA1-0050BAE317E1}-SdAskDestPath-0]


then the second part containing the following code. i named this one as part3.iss
CODE
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


i created a batch file (combine.cmd)that will determine the %systemdrive% or the drive where windows is installed and use that to place the proper parameters when combining the two *.ISS files into one setup.iss
CODE
@echo off

echo szDIR=%systemdrive%\Program Files\Cyberlink\PowerDVD>%systemdrive%\Others\powerdvd\part2.iss
copy %systemdrive%\Others\powerdvd\part1.iss + %systemdrive%\Others\powerdvd\part2.iss + %systemdrive%\Others\powerdvd\part3.iss %systemdrive%\Others\powerdvd\setup.iss
del %systemdrive%\Others\powerdvd\part2.iss /q /f


this batch file will automatically produce the proper setup.iss file that can install to the same drive as to where windows is also installed.

you can use the setup.iss file as you would normally call it from setup.exe of powerdvd.

the purpose of this method is that it will work when installing powerdvd aside from the usual C drive...
Go to the top of the page
 
+Quote Post
cyberdiamond
post May 19 2004, 10:17 PM
Post #9


Member
**

Group: Members
Posts: 115
Joined: 28-July 03
Member No.: 5258



Why are you all going through this pain.
Its easy to install from cd/dvd newwink.gif

REG ADD %KEY%\001 /V 1 /D "%CD%\Install\PowerDVD\Setup.exe -s -f1\"%CD%\Install\PowerDVD\setup.iss\" -f2\"%systemdrive%\PowerDVD.log\"" /f

all on one line of course!

Everything can go in one .iss file then.
Go to the top of the page
 
+Quote Post
d0nut
post Jun 24 2004, 02:18 AM
Post #10


Newbie


Group: Members
Posts: 35
Joined: 12-April 04
Member No.: 17692



QUOTE (cyberdiamond @ May 19 2004, 10:17 PM)
Why are you all going through this pain.
Its easy to install from cd/dvd  newwink.gif

REG ADD %KEY%\001 /V 1 /D "%CD%\Install\PowerDVD\Setup.exe -s -f1\"%CD%\Install\PowerDVD\setup.iss\" -f2\"%systemdrive%\PowerDVD.log\"" /f

all on one line of course!

Everything can go in one .iss file then.

But when I use spaces in the line, it doesn't work.

I should use "\"

But I don't know exactly where to put them :s
Go to the top of the page
 
+Quote Post
kC_
post Jul 2 2004, 12:56 PM
Post #11


Junior
*

Group: Members
Posts: 83
Joined: 1-July 04
Member No.: 23788



okay so whats the switches for doing this the start.cmd way?

ECHO.
ECHO Installing Power DVD 5.0
ECHO Please wait...
start /wait %systemdrive%\install\PDVD\Setup.exe

i have the .iss in same directory, but i dont know what the switches are


Thanks welcome.gif
Go to the top of the page
 
+Quote Post
kC_
post Jul 2 2004, 01:27 PM
Post #12


Junior
*

Group: Members
Posts: 83
Joined: 1-July 04
Member No.: 23788



ah its just -s
thumbup.gif
Go to the top of the page
 
+Quote Post
snakefood
post Jul 6 2004, 05:07 PM
Post #13


Newbie


Group: Members
Posts: 18
Joined: 5-July 04
Member No.: 24016



Lo peeps..take it eze on me ere..i'm somewhat an extreme noob to this creating windows disks.

Ave been avin a lookie over the site for a couple of days now, avin a read of some posts.

I've got a pre-designed unattended windows disk that i wanna tweak up, add a few of me own appz to create a more custom XP.

I've made a silent install of powerdvd.exe using installrite...how do i get the batch file to call the exe during install, is it a simple case of adding a line to the RunOnceEx.cmd, or is there more to it?

plz....


snakefood
Go to the top of the page
 
+Quote Post
terra
post Jul 10 2004, 02:52 AM
Post #14


Newbie


Group: Members
Posts: 10
Joined: 14-June 04
Member No.: 22577



Is it just me or don't any of these setup.iss files actually work, I've been trying with fireworks and now this...

The hard drive light flashes a couple of times, then stops and nothing happens

I'm at the point right now where I'm about to go to the shed , grab an axe and beat the sh!t out of this piece of cr4p, someone please help

[edit] Nevermind I got it don't know what it was though
Go to the top of the page
 
+Quote Post
mazin
post Jul 10 2004, 05:47 AM
Post #15


MSFN Addict
Group Icon

Group: Supreme Sponsors
Posts: 1952
Joined: 12-January 04
Member No.: 12365
OS: XP Pro x86
Country Flag


snakefood

installrite kit needs no switch.

for a batch:

start /wait %systemdrive%\install\pdvd\your.exe

for RunOnceEx:

"%systemdrive%\install\pdvd\your.exe" /f
Go to the top of the page
 
+Quote Post
Professor Frink
post Aug 4 2004, 12:32 PM
Post #16


Advanced Member
***

Group: Members
Posts: 301
Joined: 17-March 04
Member No.: 16084



Can someone tell me how to stop PowerDVD from taking over file associations, namely mpegs? I didn't see such an option during my ISS creation.
Go to the top of the page
 
+Quote Post
MCT
post Aug 4 2004, 12:53 PM
Post #17


MSFN Junkie
*********

Group: Members
Posts: 3288
Joined: 19-May 04
Member No.: 20315
Country Flag


u can just revert the file associations back with a .reg tweak

regards
Go to the top of the page
 
+Quote Post
Professor Frink
post Aug 4 2004, 01:11 PM
Post #18


Advanced Member
***

Group: Members
Posts: 301
Joined: 17-March 04
Member No.: 16084



True, but I have no idea where that is....
Go to the top of the page
 
+Quote Post
MCT
post Aug 4 2004, 01:42 PM
Post #19


MSFN Junkie
*********

Group: Members
Posts: 3288
Joined: 19-May 04
Member No.: 20315
Country Flag


HKEY_CLASSES_ROOT i believe smile.gif

regards
Go to the top of the page
 
+Quote Post
Professor Frink
post Aug 4 2004, 01:55 PM
Post #20


Advanced Member
***

Group: Members
Posts: 301
Joined: 17-March 04
Member No.: 16084



Oh yeah, duh. I forgot about that place. whistling.gif Thanks!
Go to the top of the page
 
+Quote Post

Google Frontpage Forums Unattended CD/DVD Guide

3 Pages V   1 2 3 >
Reply to this topicStart new topic
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
0 Members:

 




Lo-Fi Version Time is now: 21st November 2009 - 02:22 AM
All trademarks mentioned on this page are the property of their respective owners
MSFN is not affiliated with Microsoft
Copyright © 2001-2009 msfn.org
Privacy Policy