Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
18 views

I ran into an issue where NSIS sanitizes forward slashes in input paths by just deleting them, e.g. C:\Foo/Bar becoming C:\FooBar. For users who aren't that computer literate that's rather confusing ...
John Smith's user avatar
0 votes
0 answers
72 views

I have the below build script: "build": { "appId": "com.yourcompany.gamelauncher", "productName": "My Game", "directories": { ...
MinhSu - Justin's user avatar
0 votes
1 answer
65 views

I have a test C++ GUI app created in Visual Studio using Desktop wizard, which I want to launch during setup. For testing purposes I launch Notepad, Paint and my app. Notepad and Paint launches ...
qloq's user avatar
  • 1,335
0 votes
0 answers
39 views

I've enabled compression for my (large-ish, ~1 GiB uncompressed) installer. SetCompress force SetCompressor /SOLID LZMA When I launch the installer, none of my stuff runs, and there's no GUI until ...
mojo's user avatar
  • 4,192
-1 votes
2 answers
115 views

I am using cmake + cpack + nsis to create an installer for windows (10 and later). In the installer creation phase, I would like nsis to use one of its plugins (ZipDLL in my particular case). How can ...
BuggyMelon's user avatar
0 votes
0 answers
57 views

Is it possible to create a context menu shortcut for my program in CPack for Windows? Namely, I want to create a shortcut "run MyProgram here". I have found only how to create start menu ...
Victor's user avatar
  • 35
-1 votes
1 answer
41 views

I am making NSIS installer and I want the size of the app (ideally, without the size of one subfolder that is installed inside) to be visible in the "Installed Apps" menu. I have found ...
Valeria's user avatar
  • 1,297
0 votes
0 answers
52 views

I have cordova electron app on the package.json I have added build section "build": { "nsis": { "include": "uninstaller.nsh" } }, ...
WOG's user avatar
  • 1
0 votes
1 answer
33 views

I have retrieved a string from the registry using NSIS that contains several semicolons as separators, for example: ABC;123;XYZ. I want to check if a specific substring, let's say "123", ...
cloud's user avatar
  • 55
0 votes
1 answer
38 views

I want to display the icon in the window. How can I make the setup icon appear inside the window? Here is the code. Name "Project 1" OutFile "Setup.exe" XPStyle on Icon "C:\...
Boramae's user avatar
0 votes
1 answer
67 views

I want to remove icon from title bar of message box window that appears during installation. (Image 1) I want to remove the icon like this window. (Image 2) Is there any other way I can try with the ...
Boramae's user avatar
0 votes
1 answer
88 views

I am developing an installer using NSIS (Nullsoft Scriptable Install System) and encountering an issue. My goal is to change the size of the form in my application, but when the form size exceeds the ...
reza khademi's user avatar
0 votes
0 answers
38 views

I'm working on an NSIS installer and encountered an issue where the progress bar appears behind the bottom bar (status bar) when the installer is running in Korean,Japanese and Chinese OS Languages. ...
Abhiroop Saha's user avatar
-1 votes
1 answer
34 views

i'm trying to include font installation with myproject.exe , everything is working until i include nsh script, what could be the problem? !macro customInstall # Set the font directory path ...
Luka Kavtaradze's user avatar
1 vote
1 answer
56 views

I try to call CMD to run the script after unpacking rEFInd The manually executed script works, but if it does nisis fails with "bcdedit" not a valid command. What is the problem? This is my ...
Marco Rota's user avatar
0 votes
1 answer
486 views

I am currently using NSIS 3.10 version. I was watching NSIS news, and from 3.04 version I have seen the following. NSIS 3.04 improves Windows 10 and ARM64 detection along with the usual collection of ...
tux Neoh's user avatar
0 votes
1 answer
33 views

I am new and didn’t know what NSIS was a few days ago. However, I decided to look into it. I know that similar questions have been asked before, but even reading the answers given by users, I still ...
user26378046's user avatar
1 vote
1 answer
45 views

(Using NSIS 3.10v, window 10, MUI2.nsh) Is it possible to change the button image as a mouse event for the next button? (I've tried using graphics-installer(1hour), but I already have a lot of (UI) ...
tux Neoh's user avatar
0 votes
1 answer
87 views

I tried using the font from NSIS as shown below. CreateFont $0 "Fonts installed on the system" 9 "500" What I want to do is as follows: Font files(.ttf) are included in the setup. ...
tux Neoh's user avatar
0 votes
1 answer
164 views

Before proceeding with installation I would like to give the user the option of uninstalling the app, if it has previously been installed. Here is my attempt below: Function .onInit ; $R0 ...
Olumide's user avatar
  • 5,905
0 votes
1 answer
32 views

For the following script: !define API_LOCAL_SETUP_LOCATION "C:\Temp\Some.exe" Function API_CHECK !system 'for %a in (${API_LOCAL_SETUP_LOCATION}) do setx x1 "%~ta"' !if "$...
Dash's user avatar
  • 308
0 votes
0 answers
39 views

I have a flask app which is converted to .exe using NSI compiler. Now when every time user runs the .exe file the exe is looking on some network drive for the packages to install and installing it on ...
yasin's user avatar
  • 5
0 votes
0 answers
53 views

Page custom Page1Create Page1Leave PAGE_CUSTOM_FIRST Page custom Page2Create Page2Leave PAGE_CUSTOM_SECOND Page custom pgPageCreate pgPageLeave PAGE_CUSTOM_THIRD Function Page1Create nsDialogs::...
李朋涛's user avatar
1 vote
0 answers
108 views

I have a large NSIS installer project which has recently started failing to compile with the following error: Internal compiler error #12345: GrowBuf realloc/malloc(543160296) failed. Note: you may ...
Aaron Friesenborg's user avatar
0 votes
1 answer
59 views

The behavior I am hoping to achieve is as follows: EULA is displayed (!insertmacro MUI_PAGE_LICENSE "${license}") Once the user scrolls to the bottom of the EULA the continue button will ...
Robert Higgins's user avatar

1
2 3 4 5
53