0
votes
2answers
34 views
Methods for debugging NSIS installers?
Although NSIS allows you to build quite powerful installers, the "so low level language that it reminds me of assembly" that NSIS uses is quite prone to making mistakes and therefo …
0
votes
2answers
26 views
How to clear IconCache in windows7 via NSIS
Hi folks!
I have a problem with installing of my application via NSIS in windows 7.
Application installs successfully, but instead of myApplicationsIcon windows shows generic icon …
0
votes
1answer
22 views
nullsoft installer to install silverlight
Does anyone know if silverlight can be packaged into an installer such as NSIS?
0
votes
2answers
122 views
How do you check what files are inside an NSIS setup.exe?
In my NSIS script, I use this line:
File "..\help\*.*"
My problem is that I have the help directory in my subversion repository (its constantly updated as we add new functional …
1
vote
2answers
47 views
Is it possible for 32 bit NSIS to launch a 64 bit program?
I'm porting a windows program from 32 -> 64 bit. It has a 32 bit installer which is written using NSIS. Can I launch one of my new 64 bit exes using the 32 bit NSIS installer? I …
0
votes
1answer
28 views
NSIS: How to check whether *.dll from my installation is in $SYSDIR?
Hi,
I'm very new to NSIS and to stackoverflow.. so let me start with a "basic" question.
I wanted to write an *.nsi script, let's call it for now setup.nsi, and check
if several …
1
vote
1answer
35 views
How to hide all windows until I need them in NSIS
I have a NSIS installer I want to be totally silent unless it needs to download additional files. I can make it totally silent with SilentInstall, but then i can't make my download …
0
votes
2answers
159 views
Code Signing for my Lauch4J/NSIS Installer on Windows XP?
What is the procedure for signing my code so that when user clicks on the installer it does not prompt unknown vendor.
My Setup is,
Application is java based.
I wrap jar with lau …
2
votes
2answers
494 views
How do I require user to uninstall previous version with NSIS
I have just started using NSIS.
It works very well but I find the documentation a bit unstructured. So I'm asking the new FAQ of the inturweb.
How do I require user to uninstall p …
1
vote
1answer
20 views
Defragmenting Windows Drives as part of an NSIS installer script?
I need to install a piece of software with a lot of files. Our experience showed, that on highly fragmented hard drives that leads to very poor performance. So I want to include au …
1
vote
0answers
106 views
NSIS: Task Scheduler: Run only if logged on checkbox
I am having issues with setting up a scheduled task with NSIS.
I will not know all of the passwords for the users I am setting up tasks for therefore I need the Run Only if Logge …
2
votes
4answers
151 views
How to create an installer out of an installer?
I have an old legacy application around for which I only have the installer. it doesn't do anything more than uncompress and register itself and his library's.
As i don't have the …
0
votes
1answer
27 views
Identifiy IIS 7 using NSIS
Is there a way to identify the current version of IIS / using NSIS?
I need a way to add some special behaviour to my installer in case of IIS 7.
0
votes
1answer
51 views
NSIS - Define InstallDir depending on FileExists
What I want to do with this script is to copy a file in a folder who already exists.
But it can be at the root (C:) or in the program files.
There what I want, but this script doe …
3
votes
5answers
1k views
How do I detect which kind of JRE is installed — 32bit vs. 64bit
During installation with an NSIS installer, I need to check which JRE (32bit vs 64bit) is installed on a system. I already know that I can check a system property "sun.arch.data.mo …
