silent-installer

Creating a silent installer for a MSI

与世无争的帅哥 提交于 2019-12-04 21:12:14
What is the best way to make a silent installer (or unattended) for a program that was already created and has a msi installer? At work I'm told to create an installer that is automated and does all the interaction with the user automatically so that the user essentially just hits one button and it runs through the msi installer of the program that was already developed. Also I have to make it replace a couple files in the directory. Is it possible to make a installer automate another installer? Can it be done using WIX in visual studios or NSIS? Do I need to be able to pull the already

How to run created MSI in silent mode without CMD Msiexec command

天大地大妈咪最大 提交于 2019-12-04 20:56:58
How to implement MSI in silent mode (totally no UI) when user launch the msi setup ? The key is the /QN switch in the msiexec.exe command line : msiexec.exe /I "C:\Installer.msi" /QN /L*V "C:\msilog.log" /I = Run installer sequence /QN = Run totally silently /L*V = Verbose logging, log everything Wrap the msi in an (or call it from an) exe and pass msiexec /qn. Not specifying the UI section in WiX will leave only the MSIExec's popup progress dialog. To get around that you would still need to execute from the command line. More info here 来源: https://stackoverflow.com/questions/24904380/how-to

Install Dot net 4.5 silently as adependency

拜拜、爱过 提交于 2019-12-04 09:49:58
问题 I have a setup that install silently but it has dependency of dot net framework 4.5, so how can i create a installer that installs dependency silently also. Setup is created in Install Shield and it is a wpf application 回答1: It should be possible to use a command line like dotNetFx45_Full_setup.exe /q /norestart Use the web bootstrapper to download the Framework online Maybe have a look here and here Edit: Just see that you don't want to include .net 4.5 setup... Edit: Code fixed 回答2: This is

Restart Manager behavior with windows installer

自闭症网瘾萝莉.ら 提交于 2019-12-04 05:26:34
问题 With Windows installer 4.0 and Restart Manager, would it be safe to assume that "Restart Manager" would take care of shutting down applications and hence there is no need for any sort of custom actions to handle shutdown of processes holding files, meant to be updated? Are there any exceptions where "Restart Manager" might not shut down applications? Ofcourse, i understand that when a policy such as DisableAutomaticApplicationShutdown is enforced, Restart Manager is disabled. Does the process

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

删除回忆录丶 提交于 2019-12-04 01:22:38
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 installer with the following command: jdk-8u25-windows-x64.exe /s ADDLOCAL="ToolsFeature,SourceFeature,PublicjreFeature" This works fine on a machine with no JDK/JRE 8 installed. However, I am running into a few issues: If JDK/JRE 8 is already installed, the installer UNINSTALLS both JDK & JRE instead of simply not doing anything (or re-installing)

How can I install a Microsoft Edge extension without user interaction?

笑着哭i 提交于 2019-12-03 15:42:40
I'm currently working on a Microsoft Edge extension which will be deployed in an enterprise environment. The Edge extension has been currently installed manually (and reloaded at each browser restart since it's from an unknown source). For Internet Explorer extensions, the DLL can be registered on the system with RegAsm and a Registry tweak allows loading all add-ons (the IgnoreFrameApprovalCheck key, see this link ) without any user prompt. Is there a similar way of adding Edge extensions automatically to the browser with no user interaction? Thank you! At least until now (7/29/2016),

android apk's silent installation

只愿长相守 提交于 2019-12-03 06:13:54
I'm searching for a way to program my application to install silently an apk file. I'm aware about the possibility to launch code looks something like this: Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive"); startActivity(intent); but this code raising before the installation starts a dialog with the apk's require permissions and needs the user to authorization to start the installation. Is there any way to skip this dialog? Is there any other way to install application on run-time from my code that don't

Install Dot net 4.5 silently as adependency

血红的双手。 提交于 2019-12-03 04:06:47
I have a setup that install silently but it has dependency of dot net framework 4.5, so how can i create a installer that installs dependency silently also. Setup is created in Install Shield and it is a wpf application It should be possible to use a command line like dotNetFx45_Full_setup.exe /q /norestart Use the web bootstrapper to download the Framework online Maybe have a look here and here Edit: Just see that you don't want to include .net 4.5 setup... Edit: Code fixed This is your need,Just change download path i find it with registry if silverlight install or not it will check u can do

Restart Manager behavior with windows installer

我的未来我决定 提交于 2019-12-02 04:39:33
With Windows installer 4.0 and Restart Manager, would it be safe to assume that "Restart Manager" would take care of shutting down applications and hence there is no need for any sort of custom actions to handle shutdown of processes holding files, meant to be updated? Are there any exceptions where "Restart Manager" might not shut down applications? Ofcourse, i understand that when a policy such as DisableAutomaticApplicationShutdown is enforced, Restart Manager is disabled. Does the process to be shutdown have to satisfy some criteria to be able to be shutdown by Restart Manager? I am

NSIS automatic and silent update

爱⌒轻易说出口 提交于 2019-12-01 06:54:49
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 found a file named DropboxUpdateHelper.exe with an NSIS Icon. In the Spotify folder I could only find a SpotifyHelper.exe and a mentioning of NSIS in the Terms. Is there a tutorial of how to install an application inside the Roaming Folder and have a silent auto updater? I am not fixed on NSIS but would prefer an open source and free installer. NSIS