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

How to silently install r-base in an ubuntu docker image

I need to install r-base within an ubuntu:18.04 dockerimage. I am doing this while building my image via RUN apt-get update; apt-get install -y r-base [many other packages] along with many other package installations. The problem is, that while…
Daniel
  • 578
  • 6
  • 18
3
votes
1 answer

Silent APK installation by the device owner doesn't work on MIUI 11

I have a "device owner" Android app which silently installs APK using PackageInstaller (see the code, for example, here). This code works perfectly on all Android 7+ devices except Xiaomi Redmi 7A (running MIUI 11). The installation fails, here's…
3
votes
1 answer

What is the silent install command for Docker for windows 10?

I am deploying windows 10 pro to a new machine using Microsoft deployment toolkit (MDT). I need to install docker for windows in that machine using MDT. I have the docker for windows.exe file downloaded from the docker official website. I need the…
AnjK
  • 2,887
  • 7
  • 37
  • 64
3
votes
1 answer

MySQL Server 8.0.12 - An authentication plugin must be specified for new users

I am trying to install MySQL Server (on Windows) using MYSQL community edition v8.0.12 in silent mode. I first run msiexec /i "mysql-installer-community-8.0.12.0.msi" /qn Then MySQLInstallerConsole community install -silent…
3
votes
2 answers

Enable .Net Framework 3.5 SP1 from 'Programs and Features' and install it using NSIS

I am creating installer using nsis for my windows form application. I need .Net Framework 3.5 SP1 as pre-requisites for my application. So using NSIS i check if it is available in client machine or not. If not then it will install it silently. But…
Jaimesh
  • 841
  • 4
  • 25
  • 41
3
votes
1 answer

Silently Installing pecl modules (e.g. pecl_http) Inside a Docker Container?

I am attempting to install pecl_http inside a docker container. Currently my Dockerfile looks something like this: FROM fun:5000/apache-php:0.1.0 # Install dependencies ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && \ apt-get -y…
JoBu1324
  • 7,751
  • 6
  • 44
  • 61
3
votes
4 answers

Creating a Windows installer for application

I want to create a windows installer package can be .exe or MSI. I want to do the following : Check if the Java 7 Runtime is available in the system & system has enough space for this installation If JRE is not available install the same from the…
3
votes
1 answer

How can I make my NSIS silent installer block until complete?

When I run a silent NSIS installer (from the console, as in installer.exe /S /D=C:\Foo) it immediately moves to the background. I'd like to wait until it has finished installing before I do anything else. Is there a flag I can pass to tell the…
Frew Schmidt
  • 9,364
  • 16
  • 64
  • 86
3
votes
0 answers

How to rerun inno setup silent install in nonsilent mode

we can detect it - Disable silent and verysilent uninstall in Inno Setup uninstall-in-inno-setup and try to rerun with ExecAsOriginalUser(ExpandConstant('{srcexe}'), '', '', SW_SHOWNORMAL, ewNoWait, 0); But it does not run anything in this case.…
ro_jero
  • 115
  • 10
3
votes
2 answers

How to Silently Install SQL Server 2008 Express In InstallShield 2010

I use InstallShield 2010 to create my setup. My program needs SQL Server 2008 Express. So I added "Microsoft SQL Server 2008 Express SP1 (x86)" in the redistributables section. Then in "Edit Prerequisites" => "Application To Run" tab, I insert this…
3
votes
1 answer

SQL Management Studio Settings (Silent Install)

I've got some problems with the configuration of the sql management studio. The installation is no problem. The problems apperead during the Configuration, i need to configure (in options): Tab Text (Text Editor -> Editor Tab and Status…
n0rthclub
  • 41
  • 1
  • 3
3
votes
2 answers

Automatically enable Named Pipes & TCP/IP protocols SQL Server 2008 R2

We have a C# win Form app called "Installer" that silently installs various 3rd party software on client's system like IIS, SQL Server, AVG-Free; along with our own product. I need to automatically enable Named Pipes & TCP/IP protocols which also…
3
votes
4 answers

How to install Python interpreters on Linux in a fully automated way

I'd like to have a reliable way to install Python interpreters 2.4 through to Python 3.3 on a linux user account. I am fine to presume that there is a C-compiler but i'd like to avoid relying on particular distributions or distribution versions. …
hpk42
  • 21,501
  • 4
  • 47
  • 53
3
votes
1 answer

Silent install of apps (.ipa) to iPad

To speedup iOS development would be great to have a way to install ipa on device in automated way. TestFlightApp does great job to help ipa distribution. I looking for addition steps that allows putting ipa on device without user actions. From…
Stan Reshetnyk
  • 1,986
  • 1
  • 13
  • 31
2
votes
2 answers

InnoSetup: How to start the silent installation after showing my own form from the dll?

I need to start the silent installation after showing my own form on the screen. How to do that? Heres is my ISS code, an OpenWizardForm procedure is imported from my own DLL. It will open the modal form, accept the user's data, close the modal…
Andrew
  • 3,696
  • 3
  • 40
  • 71