nsis Questions
2
Solved
In InnoSetup, there is a part called run which will execute the exe, batch file and msi. We can also give command line parameters to this run.
I provide the Innosetup sample:
[Run]
Filename: "{ap...
1
Solved
As above.
I'm specifically running a Java program using ExecWait, by invoking java.exe and passing the classname. The application I'm running relies on relative paths and has to be run from a speci...
2
Solved
Can anyone explain how to make silent (without any user interface) install of .NET 4? It looks like .NET installer ignores any switches from this article and show interface always.
.NET Frame...
Godly asked 16/12, 2011 at 12:2
2
Solved
ProgramData folder is the best place for storing your application's writeable files shared by all users. But when Nsis installer is run with admin privileges (which is required to write to Program ...
Tobiastobie asked 16/9, 2011 at 11:49
2
I have an installer, a compiled NSIS script and it first checks if another version of my application is running on the system. If another instance exists, then it first triggers the silent uninstal...
Baritone asked 13/1, 2011 at 4:53
1
Solved
I'm trying to generalize a setup file by externally passing the version number. I want to be able to do this:
makensis myscript.nsi parameter=value
and then read the parameter within the script,...
Nonscheduled asked 30/11, 2011 at 12:4
1
Solved
I try to have the following code from
; The default installation directory
InstallDir $PROGRAMFILES\${PRODUCT_NAME}
to
!include x64.nsh
${If} ${RunningX64}
; The default installation directory...
Bresnahan asked 28/11, 2011 at 10:1
3
Solved
I have an NSIS install kit for my .net c# application.
Is there a way to silently autoupdate my application, considering that I already downloaded the new update (new NSIS app version) to local co...
Jentoft asked 1/9, 2009 at 9:21
1
I am new to NSIS script. I want to send the version number to my test.nsi file
but it does not work. Inside my test.nsi file, the value of version is: test.nsi.
What is the correct syntax for this...
Dermoid asked 3/11, 2011 at 21:26
1
I have an application which consists one .exe, many .dlls and a few folders.
I use NSIS to create an installer. It works but when I install the software, I don't see all the folders inside my appl...
Fireweed asked 1/11, 2011 at 21:36
1
Solved
With this it will copy all files from res folder,
SetOutPath "$INSTDIR"
File "res\"
but I need to copy all subfolders and files in them.
How can I achive that.
Disqualification asked 29/10, 2011 at 13:30
2
I see that there is no CPACK_xxx variable for changing the wizard image(s) in NSIS (like CPACK_PACKAGE_ICON).
So I copied the NSIS.template.in and modified it. I could do something like:
!define M...
1
We have a web application that we need to make easier to deploy for our clients.
The current workflow for a fresh install:
Ensure there is a JRE on machine (32 or 64bit)
Install Tomcat (32 or 64b...
8
Solved
I'm need to choose a software package for installing software. NSIS and WiX seem promising. Which one would you recommend over the other and why?
Feel free to offer something else if you thi...
Consequence asked 19/1, 2009 at 19:47
4
Solved
Is it possible to call Ant or NSIS scripts programmatically from Java code at runtime? If so, how?
2
Solved
I am looking for the environment variable for AppData in NSIS. I need to copy fils to the AppData directory in my installation.
Soviet asked 13/6, 2011 at 8:58
2
I am trying to make my setups scripts modular. I am calling setup exe's from within main setup script based to the requirements. I want to pass command line arguments to the exe being called. Can s...
Mcgrody asked 31/5, 2011 at 10:6
1
Solved
Seems like a simple one, but I have a large command line help string and would like to break it up so it's easier to read/maintain.
How can I do this in NSIS?
The normal
"xxx" \
"xxxx"
style me...
Luiseluiza asked 18/5, 2011 at 7:16
1
Solved
I would like to know how to use a YESNOCANCEL MessageBox in conjunction with IF logic from LogicLib.nsh in NSIS installer scripting to avoid having to use labels and gotos.
Is there any way to cap...
More asked 26/3, 2011 at 19:34
2
Solved
I'm having a problem wherein when I pin a taskbar icon in Windows 7 for my application, clicking the icon opens up a separate (duplicate) icon for the program instead of keeping it grouped with the...
6
Solved
I'm trying to build a Windows installer using Nullsoft Install System that requires installation by an Administrator. The installer makes a "logs" directory. Since regular users can run this applic...
Kostroma asked 22/9, 2008 at 19:15
2
Solved
How do i add the program so that it is listed (so i can click on it to uninstall) in windows's add/remove program list?
Areopagite asked 17/2, 2011 at 11:25
2
I am using the following command to copy files.
After setting output path...
File "Documents\*"
This action works flawlessly. There are no issues coping the files in the Documents directory unt...
Citrate asked 14/9, 2010 at 16:49
2
Solved
Could any one clarify me that, when uninstalling I need to delete everything form the Installation folder except the License file. How can I do it with NSIS scripting?
Thanks
Regards,
RoboAlex.
Whig asked 1/12, 2010 at 6:33
1
Solved
I have an NSIS-based installer file called setup.exe. When I go into Properties->Details, many details are missing. When I run the installer, UAC requests for elevated permissions (which is ok), bu...
Cluster asked 22/11, 2010 at 10:35
© 2022 - 2024 — McMap. All rights reserved.