nsis Questions
5
Solved
I want to know CurrentVersion value for each operating system at
HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion"
For example: I have windows 7 professional installed on my machine an...
1
Solved
When compiling an NSIS script, whenever I invoke registry (or time) macros contained in the Registry.nsh and Time.nsh plugins, I get an error.
The command I run is something like:
${registry::Op...
2
Solved
Code snippet from the nsi script:
VIProductVersion 1.2.0.0
VIAddVersionKey /LANG=${LANG_ENGLISH} FileVersion 1.1.0.0
I want to set FileVersion to 1.1.0.0 but in file properties it is set to 1.2...
Darnel asked 28/7, 2011 at 12:43
1
I am attempting to debug the NSIS installer for QGIS (which is not removing registry entries upon uninstall). I've created a simple test installer to speed up the process. My test installer is not ...
4
Solved
I am building a desktop app with python and packaging it to an exe with Pyinstaller.
I would like to ship my application with an installer and also provide automatic and silent updates to the softw...
Florentinaflorentine asked 6/10, 2012 at 8:25
6
Solved
I have created a batch file which automatically copy a .sql file to the path of installed Jasper server(it could be any software installation directory).
This is my batch script--
C:\PROGRA~2\JAS...
Goldfarb asked 9/4, 2012 at 9:27
2
Solved
Function Check32or64BitWindows
${If} ${RunningX64}
strcpy $INSTDIR "$PROGRAMFILES64\${APP_FULL_PATH}"
SetRegView 64
${Else}
SetRegView 32
strcpy $INSTDIR "$PROGRAMFILES32\${APP_FULL_PATH}"
${...
Pickerelweed asked 20/12, 2011 at 7:8
1
I created a test project in VS 2012
file -> new -> project -> Other Languages -> Visual C# -> Office -> 2010
which builds fine. I would like to deploy this on client machines, looking on the MSDN...
Evers asked 6/5, 2015 at 12:32
2
Solved
I am doing what it says on the forum but can't figure out where is the problem. I downloaded the .zip and extracted it. There was 4 folders (Contrib,Docs,Plugins,Unicode) aside from Docs where do I...
Foreordain asked 18/11, 2013 at 13:0
2
Solved
Can I know what are the differences between each Exec, ExecWait, ExecShell, nsExec::Exec, nsExec::ExecToLog, nsExec::ExecToStack, ExecDos and ExecCmd, as in when to use which?
I 've posted the var...
Essive asked 29/7, 2012 at 11:15
3
Solved
I am writing NSIS script and i need to check service state (Running/Stopped/Paused/No exist) and to make some actions then.
But i can`t use any user libs such as nsSCM.
I found a script
sc QUERY...
1
Solved
I need to check, if a registry value exists. How can I do that?
My first approach:
ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\Ports" "NUL:"
${IF} $0 == ""
MESSAGEBOX MB_OK...
Gelid asked 8/1, 2015 at 12:11
7
Solved
I'm struggling to add an image to the first page of an installer written with NSIS/MUI2.
Here's a trimmed down version of the code I'm using.
!include "MUI2.nsh"
!define MUI_HEADERIMAGE
!define...
Mackey asked 27/8, 2009 at 14:1
6
I want to create an NSIS installer that checks for the .NET Framework and installs it if it's not there. Can you point me to a script for this? I'm very new to NSIS.
Brazilin asked 18/9, 2009 at 19:56
4
Solved
I have the following already set up and working:
File file1.bat
File file2.xml
File common.file1.dll
File common.file2.dll
File common.file3.exe
What I would want, to avoid keeping the common fi...
Govan asked 18/1, 2013 at 13:23
3
I need to create an installer for Windows which should be able to install a specific version of the Python interpreter (2.7) plus a set a dependencies such as ipython, numpy, pandas, etc.
Basicall...
Longdrawnout asked 10/5, 2012 at 13:31
4
In NSIS is there a way to determine what version of windows the user is currently running?
The reason I want to do this is because my installer looks different on a Windows XP computer. My install...
Mader asked 19/1, 2013 at 0:25
1
Solved
I'm trying to use this command SetRegView 64 on NSIS script but the compiler says it is a invalid command.
Afternoon asked 5/8, 2014 at 13:41
2
Solved
I'm using NSIS 2.46. Plugin I'm trying to use is HwInfo plug-in (Official Link). The ZIP file comes with some source codes and a DLL file. I put the HwInfo.dll inside \NSIS\Plugins directory. When ...
1
Solved
When copying files, I am doing few things with them... is it possible to notify user what is going on during installation in textbox that shows copied files? I was tryting to find that information ...
1
Solved
If I'm not mistaken, all discussion about environment variables (EVs) in NSIS docs (eg ReadEnvStr), deal with EVs in the target computer: all happens at install time.
I wonder if there is any supp...
Awful asked 22/1, 2014 at 20:59
2
Solved
I am trying to run PowerShell in NSIS. when I run the NSIS script:
!include "x64.nsh"
Name "nsExec Test"
OutFile "nsExecTest.exe"
ShowInstDetails show
Section "Output to variable"
nsExec::Ex...
Throng asked 15/11, 2012 at 3:56
4
I'm looking for away to include into the installation the merge modules of VC2008 (mscrt90 and atl90)
My main problem involved around bundling the policy file. I've no problem adding the DLL and t...
Chesterfieldian asked 27/3, 2011 at 20:25
3
Solved
Need to create a Installation Package that would need to
a) install a Database,
b) create database and tables,
c) installed already created installable in Visual Studio,
d) create ODBC datasour...
Concordance asked 14/12, 2009 at 20:2
1
Solved
I'm trying to create an NSIS installer that installs an inf file. The inf file is extracted from the installer to the correct place, and then I use:
nsExec::ExecToLog '"$SYSDIR\PnPutil.exe" /a "$I...
© 2022 - 2024 — McMap. All rights reserved.