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
0
votes
1 answer

NSIS silent installer - /SD IDCANCEL flag

I have this NSIS script: Section "!${SECTION_MAIN}" sectionMainID SetOutPath "$INSTDIR" whileRuns: LockedList::FindProcess "$INSTDIR\bin\${PRODUCT_NAME}.exe" Pop $R0 ${If} $R0 != `` …
kiriloff
  • 25,609
  • 37
  • 148
  • 229
0
votes
1 answer

Silent install Sync Framework 2.1

i want to silent install Sync Framework 2.1 because i put the redistributable package at http://www.microsoft.com/en-us/download/details.aspx?id=19502 to my setup installation package. Can any1 help? Thanks in advance :)
Hieu Nguyen Trung
  • 1,624
  • 5
  • 21
  • 32
0
votes
2 answers

Android - Can PushLink do silent updates?

Does anyone know if PushLink can do silent updates? That is, download the app and install it without any interaction from the user? The PushLink website is quite sparse on documentation regarding features available so I can't be sure. Or does anyone…
Ali
  • 12,354
  • 9
  • 54
  • 83
-1
votes
0 answers

How to make MSI installer?

We are making MSI installer - sth like dynamic MSI installer, which takes given files(.exe, .dll, even others maybe) - copy them to Program Files - we also need to make adequate entries in the registry and build de-installer., silent mode also…
-1
votes
1 answer

How to make a silent installer using NSIS

There have 2 or more installer. One add from my PC and 1 or 2 installer download from that link. The installer which is add on my PC it's run manually but the installer which is dowload from that link, it's need to installer and run silently.
BabuPC
  • 1
-1
votes
1 answer

how to send parameters to an application while installing msi file silently

I need to install an msi file silently, but some application needs some parameters (like ip address).so how to send the parameters to the application while installing the msi silently.
-1
votes
1 answer

Calling another program in nsis silent installation

I already have a nsis installer for my software. For supporting registration in silent installer (we have written complex logic in code rather than manipulating registry via nsis), i created an exe which accepts 2 parameters: RegName and RegKey for…
-1
votes
1 answer

How can I install sp72886.exe silently/unattended

Product Name: HP ProBook 6470b Operating System: Microsoft Windows 7 (64-bit) I would like to install sp72886.exe silently in my Laptop. I tried the below commands sp72886.exe -s -a -silent sp72886.exe /S /v/qn but always InstallShield wizard pops…
Nishabu
  • 134
  • 1
  • 15
-1
votes
2 answers

Which program do you highly suggest for google extension silent install?

I have tried to use http://www.extuper.com/ but unfortunately it didn't work on building. There are some programs but i am not sure which is most proper for converting chrome extention file to executable one. (NSIS / INNO / Advanced Installer etc.)
-1
votes
1 answer

script to install MSI silently

Hi am using the following to silent install msi file name : agent.msi C:\Users\Administrator > msiexec /qb /Lv* install.log /i agent.msi SSL_CERT_FILE=C:\Temp\Agent.ssl After running the above command when am checking install.log file giving error…
Natasha
  • 507
  • 2
  • 7
  • 12
-2
votes
1 answer

Powershell silent installation issue

What will happen if we try to install a software using powershell which has already installed in a server . For an example I already have notepad++ in my server, Now I try to install same notepad++ version in my server using powershell. Then what…
-2
votes
2 answers

Requests for administrator privileges for driver installation in Delphi

I want to install the Microsoft SQL Server Native Client in a self-written installer. The database driver is to be installed once on first launch. My problem is that on some computers, the driver installation is not performed if my program is not…
-5
votes
1 answer

i want to run a command in Python which is working perfectly in cmd. tried import os and os.system to do so but with no use

The command is for java installation : "jdk-7u51-windows-x64.exe /s ADDLOCAL="ToolsFeature,SourceFeature" /L D:\Java\setup.log"
1 2 3
22
23