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
24
votes
2 answers

PackageInstaller "Silent install and uninstall of apps by Device Owner” - Android M Preview

PackageInstaller (https://developer.android.com/reference/android/content/pm/PackageInstaller.html) seems to have been added starting in API 21 (Lollipop), however I have not found any solid code examples on how to install an APK via this API. Any…
19
votes
3 answers

How to silently install a pkg file in Mac OS X

I am developing a Mac OS X application(cloud printing application). To run my application i need some support drivers. So i packed those drivers and my application using package maker software. And i created a pkg file. It working fine as a…
santhosh
  • 1,191
  • 4
  • 14
  • 28
17
votes
8 answers

How to silently install Java JDK into a specific directory on windows

On my development machine I always have to install Java 6 and Java 7 and I have to install each JDK in both, the 32 and 64 bit version, for testing purposes. Since the frequency of Java updates seems to be getting more and more ridiculous (twice per…
mmo
  • 3,897
  • 11
  • 42
  • 63
14
votes
4 answers

How to install Visual Studio Code silently (without auto open when installation ends)?

I found the option to install silently from command line (vscode-installer.exe /VERYSILENT), BUT it still opens automatically at the end of the installation, thus making unattended installation on multiple computers inconvenient. I checked Inno…
Igor Popov
  • 9,795
  • 7
  • 55
  • 68
13
votes
4 answers

Installing JDK 8 and JRE 8 silently on a Windows machine through command line

We want to update the JDK environment on multiple machines, all running windows but different versions (either XP or 7) For that purpose, I'm now creating a script which will automatically run the correct installer (32/64 bit). I tried running the…
Dagan Sandler
  • 475
  • 1
  • 5
  • 16
13
votes
3 answers

Batch script to install MSI

I am trying to write a .bat for the first time. I am trying to install .msi using script, currently we are installing manually by double clicking on it. Path from: d:/installed sw/$folder/.msi Path to: D:/program files/app/ $folder means, it is…
Aman
  • 357
  • 2
  • 5
  • 17
13
votes
4 answers

How to install Node.js in custom folder silently on Windows?

I create a script to auto install all my dev stack on Windows. I have a problem with Node.js What's the command line to install node-v0.10.23-x64.msi in C:\Tools silently? Thanks.
foozoor
  • 463
  • 1
  • 5
  • 16
13
votes
6 answers

Install / Unistall from shell command in Android

I want to implement a silent installer-from-apk-file and unistaller-package in Android. The topic has largely been discussed on SO and elsewhere but I can't apply any for some reason that I'm missing. The scope is obviously hard to achieve because,…
Ginger Opariti
  • 1,282
  • 5
  • 23
  • 41
12
votes
6 answers

A question about writing a background/automatic/silent downloader/installer for an app in C#

Background: I have a main application that needs to be able to go to the web and download DLL files associated with it (ones that we write, located on our server). It really needs to be able to download these DLL files to the application folder in…
Mike Webb
  • 8,855
  • 18
  • 78
  • 111
11
votes
2 answers

setup.iss file is not generated

I have a installshiled project which generates setup.exe file. I'd like to enable silent install by generating proper setup.iss file. I ran the following command: Setup.exe /r which lunched the installer, but it never created the setup.iss file. I…
Omer Dagan
  • 14,868
  • 16
  • 44
  • 60
11
votes
2 answers

MSI installer calling another MSI installer in silent mode using WiX

I'm using WiX to make an MSI installer to call another MSI installer. I can resolve this situation in UILevel=5 (Full UI) mode. My solution is add a CustomAction to the UISequence table that call another MSI. It will not get error code 1500:…
Klaus
  • 203
  • 1
  • 2
  • 11
10
votes
2 answers

Android APK's Silent Installation

I'm searching for a way to program my application to install silently an APK file. I'm aware about the possibility to launch with code that looks something like this: Intent intent = new…
Tal Kanel
  • 10,475
  • 10
  • 60
  • 98
8
votes
2 answers

SQL Server Silent installation get error during installation

I want to install SQL Server Express (preferably 2008 or 2014) silently using Advanced Installer. I followed the instructions in two document created by advanced installer online: How to Install SQL Server Express and here is a sample *.aip file to…
8
votes
1 answer

SenchaCMD - silent install with compass extension component

I want to install sencha silently (without GUI) or dialog boxes from my Linux terminal. How to add compass extension component to installation automatically? I've checked sencha help, and there is only "quit" option, but not something as "all". This…
Zvezda
  • 121
  • 1
  • 1
  • 6
8
votes
1 answer

How to silently uninstall Python 2.7 on Windows?

Does anyone know how to silently uninstall Python 2.7 - i.e. uninstall it unattended, with no need for user interaction? I need to do it as part of an uninstallation script that installs a bunch of software silently. I've tried running msiexec with…
1
2 3
22 23