silent-installer

android apk's silent installation

与世无争的帅哥 提交于 2020-01-01 02:36:07
问题 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

Batch script to install MSI

混江龙づ霸主 提交于 2019-12-28 02:53:59
问题 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 different every time, as we are getting new msi to install which are provided in folder created by current date. Here is the script I am trying: @echo off Title HOST: Installing Updates on %computername% echo %computername% set server=\\SERVERNAME or

Fails on setup of SQL Server Express silent Installation with Exit Codes: 0x84B40003 and 0x84C40013

Deadly 提交于 2019-12-25 13:15:13
问题 I'm trying to made a setup using Installshield 2015 with SQL Server Express silent install, I set "specify command line for the application" with these values: SQLEXPR_x86_ENU.exe /QS /FEATURES=SQLEngine,Replication,Conn /IAcceptSQLServerLicenseTerms=1 /SQLSVCSTARTUPTYPE=Automatic /ACTION=Install /INSTANCENAME=SQLExpress /SQLSVCACCOUNT="NT AUTHORITY\Network Service" /SQLSYSADMINACCOUNTS="BUILTIN\ADMINISTRATORS" /AGTSVCACCOUNT="NT AUTHORITY\Network Service" /AGTSVCSTARTUPTYPE=Automatic

How to Install an NSIS Executable Silently For All Users

纵然是瞬间 提交于 2019-12-24 00:54:27
问题 I have an NSIS installer executable which I would like to install silently for all users. I know I can pass the /S argument to do a silent install. The problem is that the default option for the installer is to install only for the current user. How can I change this option from the command line: installer.exe /S 回答1: NSIS itself just supports /S , /NCRC and /D=c:\override\default\installdir\ , everything else is up the author. If the custom page from your screenshot was created with

Can we do silent updation for android application?

我与影子孤独终老i 提交于 2019-12-23 01:53:16
问题 Is there any way to make automatic silent update for corporative app? We have an app that working only with local network and WEB-service. Tablets works thru Wi-Fi, but has no access to internet because of security. We need to get something like this functionality: Administrator put some updates to server. App downloads files and automaticly update itself without any additional action of users. Is there any way to do this? 回答1: Such an upgrade without the android market is possible only if

WIX 3.8 msiexec.exe /quiet Error 1603

我的梦境 提交于 2019-12-22 00:23:21
问题 I am using WIX 3.8, Windows 8 Pro, Visual Studio 2013, and I am doing a Silent Installation. When I run with no /quiet arguments, Ir runs OK. But when I put "/quiet", nothin happend. There is some problems with /qn Arguments... Any other Arguments Runs OK. string arg = " SetupWIX.msi"; Process p = new Process(); p.StartInfo.FileName = "msiexec.exe"; p.StartInfo.CreateNoWindow = true; p.StartInfo.Arguments = "/i " + arg +" /quiet /l*v log.txt"; p.Start(); And it give error 3. MainEngineThread

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

岁酱吖の 提交于 2019-12-19 04:01:36
问题 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; UpgradePage: TOutputMsgWizardPage; procedure InitializeWizard(); var AlreadyInstalledPath: String; begin { Determine if it is an upgrade... } { Read from registry to know if this is a fresh install or an upgrade } if RegQueryStringValue(HKLM, 'Software\Microsoft

How to run silent installer in C#

最后都变了- 提交于 2019-12-18 09:14:31
问题 I have the following C# code: string desktopPath = Environment.GetFolderPath(Environment.SpecialFolder.Desktop); Process.Start("cmd.exe", "/c" + desktopPath + "\\" + "MyInstaller_7.1.51.14.exe –s –v –qn"); The first line gets the path of my desktop where the .exe is located. The string desktopPath is used in the second line. The second line is supposed to start the installer in silent mode, so that the process runs in the background and the installation wizard does NOT appear at all. Running