Questions tagged [silent-installer]

A "silent installer" is an installation program that does not display any configuration options or any other indication of the installation during the installation process. It is in fact "hidden"... or - as the name implies - "silent" due to the lack of feedback to the user.

A "silent installer" is an installation program that does not display any configuration options or any other indication of the installation during the installation process. It is in fact "hidden"... or - as the name implies - "silent" due to the lack of feedback to the user.

It is a commonly used way for malware distributors to wrap "silent installers" with their malware into regular installations, so that the user thinks he/she is installing a regular program, without knowing that "behind the screens", there's much more being installed.

It is also used for upgrading applications. Updates of some software (like Microsoft updates) come with silent installers. When we have to install any particular upgrades of a software, they prefer silent installer.

343 questions
4
votes
1 answer

How to create silent installer for Office AddIn

I have a problem to create a silent installer for Outlook Add-In developed using VSTO in C#. The installer is a outlookaddin.vsto generated by clickOnce. This add-in will be published by SCCM in several computers and I need a that the installation…
Alexis Lopez
  • 43
  • 1
  • 4
4
votes
2 answers

Unattended/Silent Install Notepad++

I've been trying to install Notepad++ version 7.5.6 on numerous remote servers completely unattended. I've researched and found the silent switch '/S' but it doesn't work as I intended in my local environment. When I run the following code, it still…
CuriousOne
  • 922
  • 1
  • 10
  • 26
4
votes
1 answer

How to force NOT running the program after silently installing existing Inno Setup package

I need to push a program that was packaged with Inno Setup. I'd like to just install it and be done, not start it yet. However, when using the /silent or /verysilent parameter, the program in question still runs after installation. After some…
SirTechSpec
  • 143
  • 6
4
votes
1 answer

Inno Setup Load defaults for custom installation settings from a file (.inf) for silent installation

I have a setup script that allows the user to specify where they would like to install my application. It is in the form of a Pascal script within the [Code] block. var SelectUsersPage: TInputOptionWizardPage; IsUpgrade : Boolean; …
Chris Lynch
  • 335
  • 1
  • 2
  • 14
4
votes
3 answers

Run Powershell Silently via NSIS

I have a powershell script that I want to run silently. I am using NSIS script, it's still promoting the powershell command prompt when .exe file is ran.. Is there a way so it will silently. !include FileFunc.nsh !include x64.nsh OutFile…
Imsa
  • 1,105
  • 2
  • 17
  • 39
4
votes
2 answers

NSIS Silent Install changing default options

I have a third party application I would like to silent install from the command line. The application is PPLive available at: http://www.pptv.com/en/ It is an NSIS installer, and currently when silently installed, installs toolbars, and additional…
user137621
4
votes
2 answers

Create a bootstrap that passes arguments to the msiexec

I need to create a bootstrap for my WiX project I've tried using setupbld.exe but it will only allow me to create an executable that will show my UI or one that will behave as a silent installer but not both. I need to be able to run the resulting…
Dror Helper
  • 30,292
  • 15
  • 80
  • 129
4
votes
2 answers

How does the mozilla stub installer works?

I'm currently working on a no-touch deployment and auto-update mechanism for a Windows application. I've tried Microsoft ClickOnce strategy but it did not work for me as the strategy only suits small-sized apps, and my application hauls at…
4
votes
1 answer

Manually VS IDE extension installation ? (GhostDoc extension)

The reason of this question is that I've made a silent installer of VisualStudio 2013 with some extensions and I would like to add the GhostDoc extension to the unatended process, but GhostDoc can't be installed like an VSIX file, it is an MSI…
4
votes
1 answer

How to ignore optional prerequisites when installing Oracle database in silent mode?

I was referring to this PAGE to install Oracle 11g database in silent mode. When installing, there were some optional prerequisites which are ignorable: CAUSE: Some of the optional prerequisites are not met. See logs for details.…
Chen Xie
  • 3,849
  • 8
  • 27
  • 46
4
votes
1 answer

Nullsoft Scriptable Install System (NSIS) Installer - Silent Mode

How to make a Nullsoft Scriptable Install System (NSIS) installer silent? From Wikipedia: "Nullsoft Scriptable Install System (NSIS), est un logiciel libre contrôlable par script, qui permet la création d'installateurs pour Windows. Il a été…
kiriloff
  • 25,609
  • 37
  • 148
  • 229
4
votes
2 answers

NSIS automatic and silent update

I am currently building an application and want to have an installer and automatic silent updates for it. Dropbox, Spotify and Chrome all are amazing at updating without anyone noticing. So I took a look at the Dropbox Roaming Folder in AppData and…
Thomaschaaf
  • 17,847
  • 32
  • 94
  • 128
4
votes
1 answer

How can i Install apps silently on android ?? without permission from the user?

How can i Install apps silently on android ?? without permission from the user ? i have read this link , but i didn't get the idea for correct answer for this question which relate to PackageInstaller ??? On otherhand, i take a look to this …
3
votes
2 answers

Silently install Apache through Advanced Installer

I am trying to silently install apache using Advanced Installer 8.9, but it is still prompting me for user interaction even though I pass the command parameters in the Silent (No UI) field. msiexec /i "httpd-2.2.22-win32-x86-no_ssl.msi" /qn…
michelle
  • 2,759
  • 4
  • 31
  • 46
3
votes
1 answer

Setting UI Level in a MSI package

I have WiX project to create a MSI package. I want to set UI level to 3 or 4 or 5 so that it can show success/failure after the setup. Currently it just run and vanishes. Is there a way to set UI level on the package?
1 2
3
22 23