MSFN Forum: Application Switches - Contributions Only - MSFN Forum

Jump to content



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
  • 12 Pages +
  • « First
  • 7
  • 8
  • 9
  • 10
  • 11
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

Application Switches - Contributions Only Make Requests in the Main forum below Rate Topic: ***** 1 Votes

#161 User is offline   JoeMSFN 

  • Member
  • PipPip
  • Group: Members
  • Posts: 206
  • Joined: 28-September 04

  Posted 19 October 2005 - 12:26 AM

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
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: 19 October 2005 - 12:27 AM



#162 User is offline   Nakatomi2010 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 381
  • Joined: 28-June 05

Posted 21 October 2005 - 01:33 PM

OpenOffice 2.0 has changed interms of a silent install.

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

#163 User is offline   ladude626 

  • Newbie
  • Group: Members
  • Posts: 42
  • Joined: 24-July 04

Posted 05 November 2005 - 03:44 PM

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

#164 User is offline   hamohd70 

  • Junior
  • Pip
  • Group: Members
  • Posts: 53
  • Joined: 24-March 05

Posted 10 November 2005 - 03:49 PM

Acronis TrueImage 9

AcronisTrueImage.msi /qn PIDKEY="xxxxxxxxxxxxxxxxxxxxxxxxx"

#165 User is offline   rikgale 

  • uA lover
  • PipPipPip
  • Group: Members
  • Posts: 422
  • Joined: 01-November 04

Posted 10 November 2005 - 03:55 PM

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

#166 User is offline   Doc Symbiosis 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 333
  • Joined: 03-August 04

Posted 11 November 2005 - 02: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.

Attached File(s)


This post has been edited by Doc Symbiosis: 11 November 2005 - 02:37 AM


#167 User is offline   DL. 

  • Tweaker or whatever I happen to be focused on at the moment..
  • PipPipPip
  • Group: Members
  • Posts: 489
  • Joined: 05-March 05
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 17 November 2005 - 06:43 PM

View PostDoc Symbiosis, on Nov 11 2005, 10:33 AM, said:

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:
@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.: 17 November 2005 - 07:58 PM


#168 User is offline   Frechdax3000 

  • Newbie
  • Group: Members
  • Posts: 28
  • Joined: 15-December 05

Posted 19 December 2005 - 03:18 PM

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 )
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 )
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...tail.asp?id=113

#169 User is offline   Loras 

  • Newbie
  • Group: Members
  • Posts: 43
  • Joined: 21-February 04

Posted 03 January 2006 - 04:47 AM

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 :)

This post has been edited by Loras: 03 January 2006 - 04:57 AM


#170 User is offline   Sodium Cyanide 

  • Now I Am Become Death, Destroyer of Worlds
  • Group: Members
  • Posts: 23
  • Joined: 23-September 05

Posted 18 January 2006 - 10:24 PM

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:

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
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)



#171 User is offline   ron0909 

  • Group: Members
  • Posts: 1
  • Joined: 22-January 06

Posted 22 January 2006 - 05:31 PM

View Postavgasse, on Feb 29 2004, 02:29 AM, said:

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
  • Edit install.inf as follows:
[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

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


Thanks for sending me searching in the right direction Avgasse!

Ron

#172 User is offline   beaker 

  • Newbie
  • Group: Members
  • Posts: 34
  • Joined: 17-February 05

Posted 07 February 2006 - 07:01 PM

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: 07 February 2006 - 07:04 PM


#173 User is offline   JoeMSFN 

  • Member
  • PipPip
  • Group: Members
  • Posts: 206
  • Joined: 28-September 04

Posted 10 February 2006 - 05:38 AM

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

so for me it is
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. ;)
Now just wish I could have a progress bar when installing silently. :whistle:

This post has been edited by JoeMSFN: 10 February 2006 - 05:42 AM


#174 User is offline   Corke 

  • Group: Members
  • Posts: 1
  • Joined: 15-February 06

Posted 15 February 2006 - 03:07 PM

View Posthamohd70, on Nov 10 2005, 10:49 PM, said:

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: 15 February 2006 - 03:09 PM


#175 User is offline   Nakatomi2010 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 381
  • Joined: 28-June 05

Posted 20 February 2006 - 06:50 PM

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

Windows Defender Beta 2 is install silently with
%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: 20 February 2006 - 06:50 PM


#176 User is offline   Ivanov 

  • foobar2000 fan :-)
  • PipPip
  • Group: Members
  • Posts: 106
  • Joined: 10-February 05

Posted 03 March 2006 - 08:20 AM

X-Chat v2.x

xchat.exe /S

eMule Plus 1.2

eMulePlus-1.2.Installer.exe /SILENT

This post has been edited by Ivanov: 03 March 2006 - 08:23 AM


#177 User is offline   Crusty01 

  • Newbie
  • Group: Members
  • Posts: 18
  • Joined: 22-November 03

Posted 12 March 2006 - 02:02 PM

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

#178 User is offline   sz2201 

  • Group: Members
  • Posts: 2
  • Joined: 09-March 05

Posted 15 March 2006 - 04:04 PM

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 :lol:

#179 User is offline   nDrew 

  • Newbie
  • Group: Members
  • Posts: 29
  • Joined: 29-January 05

Posted 16 April 2006 - 11:23 PM

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)
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: 16 April 2006 - 11:25 PM


#180 User is offline   T D 

  • Go MSFN!
  • PipPipPipPipPip
  • Group: Members
  • Posts: 940
  • Joined: 05-April 06

Posted 29 June 2006 - 12:58 PM

PowerArchiver: powarc.exe /VERYSILENT
Inno Setup

Messenger Plus Live 4.xx msgpluslive.exe /Silent
n/a

Share this topic:


  • 12 Pages +
  • « First
  • 7
  • 8
  • 9
  • 10
  • 11
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

2 User(s) are reading this topic
0 members, 2 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy