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

11 Pages V  « < 7 8 9 10 11 >  
Reply to this topicStart new topic
> Application Switches - Contributions Only, Make Requests in the Main forum below
JoeMSFN
post Oct 19 2005, 12:26 AM
Post #161


Member
**

Group: Members
Posts: 206
Joined: 28-September 04
Member No.: 32267



Install Adobe Reader 7.0.5 with "Display PDF in browser" unchecked, not disabled.

The solution is pathetically simple, (doesn't even require a transform).... ready... don't blink, you'll miss it.

Thanks to MarkATS's post in the Adobe forums with this post. (select Log in as guest near the bottom).

To quote from the page
QUOTE
On the commandline, set the property: INSTALLLEVEL=99

I personally now use
CODE
msiexec /qb /i "Adobe Reader 7.0.5.msi" INSTALLLEVEL=99 TRANSFORMS="Adobe Reader 7.0.5.mst"

After using the InstallShield Tuner setting "Disable Display of PDF in Browser", and getting some negative feedback from people who like the feature, I set on a long path of finding how to allow it to be re-enabled, but unchecked by default. Many registry and file compares later with nothing but broken installs to show for it, I stumbled across the above parameter (ok not technically a switch, if this post doesn't belong here, politely PM me where it should go and I'll remove contents and post elsewhere).

I have personally tested this with a fully up to date Win XP installation with both IE and Firefox 1.0.7 and it successfully toggles for both browsers. It starts with .pdf's loading in standalone reader, but when you check "Display PDF in browser", it successfully toggles it back to in the browser!!!!

Enjoy MSFN community!

This post has been edited by JoeMSFN: Oct 19 2005, 12:27 AM
Go to the top of the page
 
+Quote Post
Nakatomi2010
post Oct 21 2005, 01:33 PM
Post #162


Advanced Member
***

Group: Members
Posts: 381
Joined: 28-June 05
Member No.: 62247
Country Flag


OpenOffice 2.0 has changed interms of a silent install.

The command is now 'setup.exe -qn' and she'll isntall silently...
Go to the top of the page
 
+Quote Post
ladude626
post Nov 5 2005, 03:44 PM
Post #163


Newbie


Group: Members
Posts: 42
Joined: 24-July 04
Member No.: 25324



Please add this to the database:

Mozilla Firefox

Switch: -ms
Full Syntax: Firefox.exe -ms
Extraction Needed: No

NOD32

Switch: /silentmode
Fullsyntax: ndntenst.exe /silentmode
Extraction Needed: No
Go to the top of the page
 
+Quote Post
hamohd70
post Nov 10 2005, 03:49 PM
Post #164


Junior
*

Group: Members
Posts: 53
Joined: 24-March 05
Member No.: 49110
Country Flag


Acronis TrueImage 9

AcronisTrueImage.msi /qn PIDKEY="xxxxxxxxxxxxxxxxxxxxxxxxx"
Go to the top of the page
 
+Quote Post
rikgale
post Nov 10 2005, 03:55 PM
Post #165


uA lover
***

Group: Members
Posts: 422
Joined: 1-November 04
From: Taunton, UK
Member No.: 35375
Country Flag


QUOTE
OpenOffice 2.0 has changed interms of a silent install.

The command is now 'setup.exe -qn' and she'll isntall silently...


Also for open office you can just download the .exe file and use /S as well.

e.g. Oo2.exe /S
Go to the top of the page
 
+Quote Post
Doc Symbiosis
post Nov 11 2005, 02:33 AM
Post #166


Advanced Member
***

Group: Members
Posts: 333
Joined: 3-August 04
Member No.: 26093
Country Flag


Foxit PDF Reader silent install ( a small and fast pdf reader, whose only disadvantage is, that it can't handle form-sheets):
I just wrote a batch to install the foxit PDFReader and set it as default application for opening pdfs. It installs the Reader to %PROGRAMFILES%.
Just put the exe, the reg and the cmd file into the same directory and call the batch.

This post has been edited by Doc Symbiosis: Nov 11 2005, 02:37 AM
Attached File(s)
Attached File  foxit.reg ( 1.83K ) Number of downloads: 336
Attached File  Foxit_PDFReader.cmd ( 1.05K ) Number of downloads: 331
 
Go to the top of the page
 
+Quote Post
DL.
post Nov 17 2005, 06:43 PM
Post #167


Tweaker, overclocker...
***

Group: Members
Posts: 484
Joined: 5-March 05
From: Krn
Member No.: 46454
OS: Windows 7 x64
Country Flag


QUOTE (Doc Symbiosis @ Nov 11 2005, 10:33 AM) *
Foxit PDF Reader silent install ( a small and fast pdf reader, whose only disadvantage is, that it can't handle form-sheets):
I just wrote a batch to install the foxit PDFReader and set it as default application for opening pdfs. It installs the Reader to %PROGRAMFILES%.
Just put the exe, the reg and the cmd file into the same directory and call the batch.

It doesn't work, please replace the batch with this:
CODE
@echo off&setlocal enableextensions
REM Change the current path to the directory of this batch
cd /D %~dp0

REM Copy the programfile to the "PROGRAM FILES"-directory
mkdir "%PROGRAMFILES%\Foxit PDFReader"
Copy "Foxit Reader.exe" "%PROGRAMFILES%\Foxit PDFReader" /Y

REM Import the registry-settings, not containing any paths
regedit /S foxit.reg

REM Set exefile to the .exe-file of Foxit PDF Reader
set exefile=%PROGRAMFILES%\Foxit PDFReader\Foxit Reader.exe

REM import the registry settings, containing a path
REG ADD "HKCR\FoxitReader.Document\DefaultIcon" /VE /D "%exefile%,1" /F
REG ADD "HKCR\FoxitReader.Document\protocol\StdFileEditing\server" /VE /D "%exefile%" /F
REG ADD "HKCR\FoxitReader.Document\shell\open\command" /VE /D "\"%exefile%\" \"%%1\"" /F
REG ADD "HKCR\FoxitReader.Document\{14E8BBD8-1D1C-4D56-A4DA-D20B75EB814E}\DefaultIcon" /VE /D "%exefile%,1" /F
REG ADD "HKCR\FoxitReader.Document\{14E8BBD8-1D1C-4D56-A4DA-D20B75EB814E}\LocalServer32" /VE /D "%exefile%" /F
endlocal


This post has been edited by DL.: Nov 17 2005, 07:58 PM
Go to the top of the page
 
+Quote Post
Frechdax3000
post Dec 19 2005, 03:18 PM
Post #168


Newbie


Group: Members
Posts: 28
Joined: 15-December 05
Member No.: 82522
Country Flag


Inno Setup Command Line Switches and Exit Codes

testet with:
DVDFab Platinum 2.9.6.5 & Super Flexible File Synchronizer v2.61 (without the langugae option testet the app is in engl.)

1.) DVDFab Platinum 2.9.6.5
export first your reg.info from:
[HKEY_CURRENT_USER\Software\Fengtao Software\DVDFab Platinum]

then make an *.cmd (* your name )
CODE
regedit.exe /s dvdfab.reg
DVDFab29.exe /VERYSILENT /SP- /LANG=english (or skip this)** / /NORESTART
EXIT

then make an winrar sfx

Setup= your *.cmd )
TempMode
Silent=1
Overwrite=1

thats all
**: for german LANG=deutsch

2.) Super Flexible File Synchronizer v2.61

export first your reg.info from:
[HKEY_LOCAL_MACHINE\SOFTWARE\SuperFlexibleSynchronizer]
then make an *.cmd (* your name )
CODE
regedit.exe /s dvdfab.reg
SuperFlexibleSetup.exe /VERYSILENT /SP- /LANG=english (or skip this) / /NORESTART
EXIT

then make an winrar sfx

Setup= your *.cmd )
TempMode
Silent=1
Overwrite=1

thats all

NOTES: the setup.exe's name are is induvidual, make sure you creect the values in the *cmd

more switches: http://www.appdeploy.com/tips/detail.asp?id=113
Go to the top of the page
 
+Quote Post
Loras
post Jan 3 2006, 04:47 AM
Post #169


Newbie


Group: Members
Posts: 43
Joined: 21-February 04
From: Kaunas
Member No.: 14686
Country Flag


QUOTE
You lost me here....
9) Need the f-secure folder on cd?
Do a silent install in RunOnceEx?

10) Then have windows restart in RunOnceEx?
Execute FSUpdate.exe via RunOnceEx?

11) ???
12) ??

Does not seem very unattended to me...maybe I misunderstood?


These all steps is ONLY for making Unattended files...
You need install F-Secure before execute "FSUpdate.exe". Then install virus updates and make
dbupdate.sfx.
Finaly you have one directory "F-Secure" and two files - dbupdate.sfx and reghack.reg
Place them to your UA CD and and execute from RunOnceEx fsecure.exe -s, then dbupdate and reghack.
That's all smile.gif

This post has been edited by Loras: Jan 3 2006, 04:57 AM
Go to the top of the page
 
+Quote Post
Sodium Cyanide
post Jan 18 2006, 10:24 PM
Post #170


Now I Am Become Death, Destroyer of Worlds


Group: Members
Posts: 23
Joined: 23-September 05
Member No.: 74230
Country Flag


Xfire

I had this posted here a long while ago, but it looks like it got deleted from the topic. Xfire used to not make shortcuts properly, but thanks to a forum post it has been fixed as of version 1.50.

The current switch is:

CODE
xfire_installer.exe /S

Which is 100% functional. For archival purposes, the old method was using a small Delphi shortcut-making program and this batch file:

silent.bat
CODE
mkdir "%ALLUSERSPROFILE%\Start Menu\Programs\Xfire\"
shortcut.exe /f:"%USERPROFILE%\Start Menu\Programs\Startup\Xfire.lnk" /a:c /t:"%PROGRAMFILES%\Xfire\Xfire.exe" /i:"%PROGRAMFILES%\Xfire\Xfire.exe"
shortcut.exe /f:"%ALLUSERSPROFILE%\Start Menu\Programs\Xfire\Xfire.lnk" /a:c /t:"%PROGRAMFILES%\Xfire\Xfire.exe" /i:"%PROGRAMFILES%\Xfire\Xfire.exe"
shortcut.exe /f:"%ALLUSERSPROFILE%\Desktop\Xfire.lnk" /a:c /t:"%PROGRAMFILES%\Xfire\Xfire.exe" /i:"%PROGRAMFILES%\Xfire\Xfire.exe"

Attached File(s)
Attached File  Shortcut.exe ( 56K ) Number of downloads: 69
 
Go to the top of the page
 
+Quote Post
ron0909
post Jan 22 2006, 05:31 PM
Post #171





Group: Members
Posts: 1
Joined: 22-January 06
Member No.: 86040
Country Flag


QUOTE (avgasse @ Feb 29 2004, 02:29 AM) *
Total Commander 6.01
  • Download the installer.
  • Using Total Commander itself, open the installer using CTRL+PGDN
  • Copy install.inf to the other pane using F5. You could also use your favorite packer program like winzip, winrar,... but why bother if you have TC? thumbup.gif
  • Edit install.inf as follows:
CODE
[auto]
auto=1
lang=1
alllang=1
iniloc=c:\totalcmd
iniall=1
mkgroup=1
mkdesktop=1
  • See the section [Languages] to know your language number. If you are reading this forum, you are smart enough to figure out the rest of the file.
  • Put install.inf back in the installer (copy it back using F5).
  • To do an unattended installation, just run the modified installer.
  • If you are a registered user, copy the file wincmd.key in the installation folder.


If you have the key, copy it into the installer just as you did with install.inf and once again modify install.inf
to include the 2nd entry below

CODE
[Install]
1=install.cab,c
2=wincmd.key


Thanks for sending me searching in the right direction Avgasse!

Ron
Go to the top of the page
 
+Quote Post
beaker
post Feb 7 2006, 07:01 PM
Post #172


Newbie


Group: Members
Posts: 34
Joined: 17-February 05
Member No.: 44332
Country Flag


Mp3tag

Switch: /S /D=dirname
Usage: mp3tagv232bsetup.exe /S /D=D:\Multimedia\Mp3tag
Extraction needed: No

Verified and working...

[EDIT] added link

This post has been edited by beaker: Feb 7 2006, 07:04 PM
Go to the top of the page
 
+Quote Post
JoeMSFN
post Feb 10 2006, 05:38 AM
Post #173


Member
**

Group: Members
Posts: 206
Joined: 28-September 04
Member No.: 32267



7-zip 4.32 Per the FAQ...
use /S

so for me it is
CODE
7z432.exe /S


Thought I'd add this since I'm making a fresh disc, and 7-zip is at the top and is now wrong for the newst version. newwink.gif
Now just wish I could have a progress bar when installing silently. whistling.gif

This post has been edited by JoeMSFN: Feb 10 2006, 05:42 AM
Go to the top of the page
 
+Quote Post
Corke
post Feb 15 2006, 03:07 PM
Post #174





Group: Members
Posts: 1
Joined: 15-February 06
Member No.: 88104
Country Flag


QUOTE (hamohd70 @ Nov 10 2005, 10:49 PM) *
Acronis TrueImage 9

AcronisTrueImage.msi /qn PIDKEY="xxxxxxxxxxxxxxxxxxxxxxxxx"

I have tried this one and it works perfectly.
start /wait %systemdrive%\Install\Apps\Acronis.True.Image.9.0.0.2337\AcronisTrueImage.msi PIDKEY=xxxx-xxxx-xxxx-xxxx-xxxx-xxxx/qb+ /norestart

This post has been edited by Corke: Feb 15 2006, 03:09 PM
Go to the top of the page
 
+Quote Post
Nakatomi2010
post Feb 20 2006, 06:50 PM
Post #175


Advanced Member
***

Group: Members
Posts: 381
Joined: 28-June 05
Member No.: 62247
Country Flag


I'm sure most people have figured this out, but I'm adding it anyways...

Windows Defender Beta 2 is install silently with
CODE
%Location%\WindowsDefender.msi /qn


Of course, you need a machine with a valid CDKey for it to install at all.. If the key is not valid it will not regurgitate an error.... It simply wont install....

This post has been edited by Nakatomi2010: Feb 20 2006, 06:50 PM
Go to the top of the page
 
+Quote Post
Ivanov
post Mar 3 2006, 08:20 AM
Post #176


foobar2000 fan :-)
**

Group: Members
Posts: 105
Joined: 10-February 05
From: Stara Zagora, Bulgaria
Member No.: 43640
Country Flag


X-Chat v2.x

xchat.exe /S

eMule Plus 1.2

eMulePlus-1.2.Installer.exe /SILENT

This post has been edited by Ivanov: Mar 3 2006, 08:23 AM
Go to the top of the page
 
+Quote Post
Crusty01
post Mar 12 2006, 02:02 PM
Post #177


Newbie


Group: Members
Posts: 18
Joined: 22-November 03
Member No.: 9830



The switch for Everest Home Edition 2.20:

(name of Everest file altered in this example, use the file downloadable from main software sites)

@ECHO.
@ECHO Installing Everest Home Edition 2.20
@ECHO Please wait...
Start /wait %systemdrive%\install\Ev220.exe /VERYSILENT
Go to the top of the page
 
+Quote Post
sz2201
post Mar 15 2006, 04:04 PM
Post #178





Group: Members
Posts: 2
Joined: 9-March 05
Member No.: 47108
Country Flag


eRightSoft SUPER 2006.17
SUPERsetup.exe /q1 /b0
followed by a
taskkill /F /IM hh.exe

Havent fully tested yet, but this should work for anything else using the Tarma installer as well laugh.gif
Go to the top of the page
 
+Quote Post
nDrew
post Apr 16 2006, 11:23 PM
Post #179


Newbie


Group: Members
Posts: 29
Joined: 29-January 05
From: Omsk
Member No.: 42437
Country Flag


NOD32 Antivirus 2.5x

Unpack the original distribution. There's a file setup.exe there...

setup.exe /silentmode /cfg=myconfig.cfg /instmfc /noreboot

...where myconfig.cfg - is your config made with nod32's Configuration Editor

KAV 5 (Kaspersky Anti-Virus Personal 5.0.xxx)
CODE
Dim WshShell, fso, objArgs, pf, aup, dir

Set WshShell = WScript.CreateObject("WScript.Shell")
Set fso = CreateObject("Scripting.FileSystemObject")
On Error Resume Next

pf = WshShell.ExpandEnvironmentStrings("%Programfiles%")
aup = WshShell.ExpandEnvironmentStrings("%AllUsersProfile%")
dir = fso.GetParentFolderName(WScript.ScriptFullName)

WshShell.Run (dir & "\Personal.exe /S /D=" & pf & "\KAV"), 1, true

fso.DeleteFile(aup & "\Application Data\Kaspersky Anti-Virus Personal\5.0\Bases\*.*"), true
fso.CopyFolder dir & "\bases", aup & "\Application Data\Kaspersky Anti-Virus Personal\5.0\Bases"
fso.CopyFile dir & "\MYKEY.key", pf & "\KAV\MYKEY.key.yek"

Wscript.Quit


where MYKEY.key - is your LEGAL key for KAV5

This post has been edited by nDrew: Apr 16 2006, 11:25 PM
Go to the top of the page
 
+Quote Post
T D
post Jun 29 2006, 12:58 PM
Post #180


Go MSFN!
*****

Group: Members
Posts: 940
Joined: 5-April 06
From: London
Member No.: 92828
OS: none
Country Flag


PowerArchiver: powarc.exe /VERYSILENT
Inno Setup

Messenger Plus Live 4.xx msgpluslive.exe /Silent
n/a
Go to the top of the page
 
+Quote Post

Google Frontpage Forums Unattended CD/DVD Guide

11 Pages V  « < 7 8 9 10 11 >
Reply to this topicStart new topic
3 User(s) are reading this topic (3 Guests and 0 Anonymous Users)
0 Members:

 




Lo-Fi Version Time is now: 21st November 2009 - 07:15 PM
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