Forum: NSIS Discussion
24th November 2019, 02:18
|
Replies: 3
Views: 266
|
Forum: NSIS Discussion
2nd October 2019, 09:31
|
Replies: 1
Views: 442
For strings that remain the same across...
For strings that remain the same across languages, you can use a define instead.
Oh, and this won't work because it's out of order (LSTR_2 is used before it's initialized):
LangString LSTR_1...
|
Forum: NSIS Discussion
1st October 2019, 11:39
|
Replies: 6
Views: 727
You could write this into a plugin instead, it...
You could write this into a plugin instead, it looks too long and messy to write this in script system plugin syntax. All it has to return is either 'error', or 'ok' then the number of guids and then...
|
Forum: NSIS Discussion
26th August 2019, 10:10
|
Replies: 6
Views: 1,122
Try popping the stack a second time?
...
Try popping the stack a second time?
netc::post /NOCANCEL /TOSTACK /SILENT "http://www.xxx.com/Addr.php$Parameter$URL" $0 /END
Pop $0 # return value = exit code, "OK" if OK
Pop $1 # maybe it's...
|
Forum: NSIS Discussion
22nd July 2019, 10:38
|
Replies: 6
Views: 711
|
Forum: NSIS Discussion
9th July 2019, 15:28
|
Replies: 2
Views: 649
|
Forum: NSIS Discussion
7th June 2019, 10:09
|
Replies: 4
Views: 732
|
Forum: NSIS Discussion
30th May 2019, 02:09
|
Replies: 3
Views: 774
Ages ago I wrote a function that dumps the...
Ages ago I wrote a function that dumps the install log to a file (NSIS 3.0+).
Usage: ${DUMPLOG} "C:\path\to\file.log"
Put it at the end of your install, I prefer using a hidden section after all...
|
Forum: NSIS Discussion
20th May 2019, 10:13
|
Replies: 17
Views: 3,977
I'm close to finishing the next version of...
I'm close to finishing the next version of nsisbi, can I ask you to do a little testing for me please? I've added a new mode, and a handful of new instructions:
SetExOutFile has been renamed:...
|
Forum: NSIS Discussion
27th March 2019, 06:29
|
Replies: 4
Views: 931
|
Forum: NSIS Discussion
26th February 2019, 07:43
|
Replies: 3
Views: 766
If you have nsis 3, try this:
!define...
If you have nsis 3, try this:
!define IHUB_PRODUCT_NAME "OpenText Magellan BI & Reporting System Console 16.6"
!define IHUB_PRODUCT_NAME_DA "OpenText Magellan BI && Reporting System Console 16.6"...
|
Forum: NSIS Discussion
10th February 2019, 09:41
|
Replies: 10
Views: 2,317
|
Forum: NSIS Discussion
18th January 2019, 08:24
|
Replies: 2
Views: 896
If you have a look at the code in...
If you have a look at the code in Source\exehead\fileform.c (lines 196 to 219), there is a magic code that the installer\uninstaller looks for when it's run.
|
Forum: NSIS Discussion
18th December 2018, 10:31
|
Replies: 11
Views: 2,663
Just so you know, I've updated my EnVar plugin...
Just so you know, I've updated my EnVar plugin and added an update function so that you can refresh environment variables for the installer process, for example if %path% was changed externally while...
|
Forum: NSIS Discussion
18th December 2018, 10:23
|
Replies: 1
Views: 2,205
|
Forum: NSIS Discussion
2nd November 2018, 08:26
|
Replies: 20
Views: 6,436
|
Forum: NSIS Discussion
14th October 2018, 11:20
|
Replies: 17
Views: 3,977
|
Forum: NSIS Discussion
10th October 2018, 09:18
|
Replies: 17
Views: 3,977
|
Forum: NSIS Discussion
11th September 2018, 20:14
|
Replies: 17
Views: 3,977
Ok, so it is probably redirecting fseeko to...
Ok, so it is probably redirecting fseeko to fseeko64 behind the scenes, so I'll have to test this out (in source/util.h, after the includes):
I would rather not use platform specific defines,...
|
Forum: NSIS Discussion
10th September 2018, 12:11
|
Replies: 17
Views: 3,977
|
Forum: NSIS Discussion
9th September 2018, 10:01
|
Replies: 17
Views: 3,977
Yeah, external files work fine because makensis...
Yeah, external files work fine because makensis doesn't need to know the size to write the external file out, it just stores the size in the first header.
All in one installers between 2GB and 4GB...
|
Forum: NSIS Discussion
8th September 2018, 19:21
|
Replies: 11
Views: 11,056
|
Forum: NSIS Discussion
8th September 2018, 19:13
|
Replies: 17
Views: 3,977
The main reason I have to use fseeko64() is to...
The main reason I have to use fseeko64() is to support installer sizes between 2GB and 4GB. off_t says it is defined as a signed type, so passing it anything over 2GB will cause an error.
You can...
|
Forum: NSIS Discussion
2nd May 2018, 11:09
|
Replies: 5
Views: 2,536
|
Forum: NSIS Discussion
17th January 2018, 09:55
|
Replies: 8
Views: 1,742
|