Forum: NSIS Discussion
24th May 2009, 23:22
|
|
Replies: 2
Views: 3,964
Yeah, that's what I tried. Unfortunately it...
Yeah, that's what I tried. Unfortunately it doesn't work (I'm on RC1), and based on the comments from the bug report it seems like it has to be updated for each release since he had to update it for...
|
Forum: NSIS Discussion
24th May 2009, 09:23
|
|
Replies: 2
Views: 3,964
Windows 7 manifest?
Much like on Vista, Windows 7 also has a dialog box that pops up asking if an application installed correctly without a manifest. I was wondering if one is available at this time, or if we can...
|
Forum: NSIS Discussion
14th January 2009, 01:19
|
|
Replies: 3
Views: 2,481
Any ideas on how they handled the delayed...
Any ideas on how they handled the delayed privilege elevation? Doesn't the UAC plugin just run another instance of the same exact EXE when you tell it to elevate (so you'd have to run thru the...
|
Forum: NSIS Discussion
8th January 2009, 02:30
|
|
Replies: 3
Views: 2,481
The foobar installer
I noticed that the Foobar 2000 installer uses NSIS, and it has this page where it asks for admin permissions in the middle of it. It even has that shield icon on the 'next' button.
Anyone know...
|
Forum: NSIS Discussion
5th January 2009, 03:21
|
|
Replies: 1
Views: 1,455
multiuser.nsh define issues
I'm having trouble getting even simple barebones examples for multiuser.nsh to work. It seems that things like APP_NAME are defined somewhere in the chain of include files for multiuser.nsh, as I...
|
Forum: NSIS Discussion
6th September 2008, 23:29
|
|
Replies: 1
Views: 2,066
|
Forum: NSIS Discussion
6th September 2008, 23:24
|
|
Replies: 1
Views: 2,066
Write empty registry key
I'd like to create an empty registry key (no values inside the key)... kind of weird but this is the way the original software installer works so I must mimic it.
i.e. HKLM\SOFTWARE\wxyz\abcd
I...
|
Forum: NSIS Discussion
11th February 2008, 21:57
|
|
Replies: 9
Views: 5,598
Okay, I'll try doing that. I was hoping there's...
Okay, I'll try doing that. I was hoping there's some kind of compiler flag that we can just put on our installer to take advantage of whatever mechanism the NSIS-generated uninstallers use right now...
|
Forum: NSIS Discussion
9th February 2008, 04:31
|
|
Replies: 9
Views: 5,598
|
Forum: NSIS Discussion
23rd September 2007, 07:13
|
|
Replies: 2
Views: 1,592
|
Forum: NSIS Discussion
23rd September 2007, 03:04
|
|
Replies: 2
Views: 1,592
integer limit?
Is there a way to use integers that go past 2^31? Right now
IntCmp 2660708532 31000 EQUAL LESS GREATER
does not return GREATER (just an example, both numbers change programmatically). Is there a...
|
Forum: NSIS Discussion
18th September 2007, 07:16
|
|
Replies: 2
Views: 1,633
dirrequest notiofy
I'm aware that there's no direct 'NOTIFY' flag for dirrequest, but is there a way to mimic it? (much as the way the install folder dirrequest works)
I tried IOEX and everything crashed, so I'll...
|
Forum: NSIS Discussion
7th August 2007, 01:53
|
|
Replies: 0
Views: 1,311
ExpUI skip INSTFILES
Is there a way to skip the INSTFILES page in Experience UI? For some reason SetAutoClose true doesn't seem to work for ExpUI.
Thanks!
|
Forum: NSIS Discussion
28th June 2007, 22:46
|
|
Replies: 10
Views: 3,507
|
Forum: NSIS Discussion
28th June 2007, 18:38
|
|
Replies: 10
Views: 3,507
NSI:
!include "XPUI.nsh"
Name...
NSI:
!include "XPUI.nsh"
Name "InstallOptions"
OutFile "InstallOptions.exe"
!define XPUI_ABORTWARNING
Page custom CustomPageA
!insertmacro XPUI_PAGE_INSTFILES
|
Forum: NSIS Discussion
28th June 2007, 08:15
|
|
Replies: 10
Views: 3,507
|
Forum: NSIS Discussion
28th June 2007, 03:11
|
|
Replies: 10
Views: 3,507
Double posting because it won't let me edit my...
Double posting because it won't let me edit my old message...
I'm starting to suspect the bmp file itself. It used to be 24-bit, but I changed it to a 256 color bmp and it still doesn't work. Is...
|
Forum: NSIS Discussion
27th June 2007, 23:26
|
|
Replies: 10
Views: 3,507
|
Forum: NSIS Discussion
27th June 2007, 20:49
|
|
Replies: 10
Views: 3,507
IO bitmap
I'm using normal installoptions2, and for some reason my code keeps on crashing if I try to display the bitmap.
!include "XPUI.nsh"
Name "InstallOptions"
OutFile "InstallOptions.exe"
!define...
|
Forum: NSIS Discussion
13th June 2007, 08:47
|
|
Replies: 2
Views: 1,850
|
Forum: NSIS Discussion
13th June 2007, 08:45
|
|
Replies: 0
Views: 1,319
Custom INSTFILES page
Can I customize the INSTFILES page in XPUI 1.11? More precisely I just want to get rid of the header and subheader texts and replace it with an image so it matches the rest of the pages.
Thanks!
|
Forum: NSIS Discussion
18th May 2007, 05:04
|
|
Replies: 4
Views: 1,811
Yay, that works!
And you weren't wrong, I...
Yay, that works!
And you weren't wrong, I just wanted to make sure that I had to enter 1044 instead of the 'proper' 10442 for the ID. Indeed in the end it was 1044.
Thank you for your help!
|
Forum: NSIS Discussion
18th May 2007, 04:03
|
|
Replies: 4
Views: 1,811
|
Forum: NSIS Discussion
18th May 2007, 03:15
|
|
Replies: 4
Views: 1,811
Mui Bg Id
Quick question... what's the ID to capture the crosshatched area so I can make it white?
Thanks.
|
Forum: NSIS Discussion
11th May 2007, 07:06
|
|
Replies: 118
Views: 75,271
So... just to make sure I'm understanding this...
So... just to make sure I'm understanding this correctly... basically we encapsulate the stuff we want to do as the original user in a function, then use UAC::ExecCodeSegment on the function address...
|