Forum: NSIS Discussion
29th June 2003, 23:14
|
|
Replies: 6
Views: 2,418
Installer crash
I've been using a NSIS20b3-generated installer for my program, and it's worked fine for 30,000+ people (at least, afaik ;)). But, someone just e-mailed me and told me the installer was crashing on...
|
Forum: NSIS Discussion
8th June 2003, 00:08
|
|
Replies: 3
Views: 1,558
|
Forum: NSIS Discussion
7th June 2003, 00:49
|
|
Replies: 3
Views: 1,558
Problem deleting desktop shortcut
I'm using NSIS20b3 and Modern UI. I'm creating a desktop shortcut like so:
CreateShortCut "$DESKTOP\Freelancer Mod Manager.lnk" \
"$INSTDIR\FLModManager.exe" "" \
"$INSTDIR\FLModManager.exe" 0...
|
Forum: NSIS Discussion
18th April 2003, 01:22
|
|
Replies: 9
Views: 2,751
|
Forum: NSIS Discussion
17th April 2003, 22:03
|
|
Replies: 9
Views: 2,751
|
Forum: NSIS Discussion
17th April 2003, 16:14
|
|
Replies: 9
Views: 2,751
|
Forum: NSIS Discussion
17th April 2003, 15:54
|
|
Replies: 9
Views: 2,751
InstallDirRegKey bug?
I'm trying to get NSIS 2.0b3 to save and recall the directory where my program was installed. I'm using the following line:
InstallDirRegKey HKLM SOFTWARE\FLMM "Install_Dir"
But for some reason, it...
|
Forum: NSIS Discussion
15th March 2003, 12:45
|
|
Replies: 19
Views: 10,461
|
Forum: NSIS Discussion
15th December 2002, 17:35
|
|
Replies: 11
Views: 15,526
|
Forum: NSIS Discussion
14th December 2002, 15:13
|
|
Replies: 11
Views: 15,526
|
Forum: NSIS Discussion
14th December 2002, 14:13
|
|
Replies: 11
Views: 15,526
Thanks for the tips! I actually did specify no...
Thanks for the tips! I actually did specify no default, and then manually added in libc.lib. That brought it down from 50kb to 40kb. I'll try what you said, and see if I can get it to work :)
BTW,...
|
Forum: NSIS Discussion
13th December 2002, 23:22
|
|
Replies: 11
Views: 15,526
MD5 plugin
I needed a MD5 plugin for an auto-updater (see it in action here (http://www.wulfram.com/download.php)) I've made with NSIS, and since I didn't find any, I made my own :). I haven't renamed a bunch...
|
Forum: NSIS Discussion
19th November 2002, 15:24
|
|
Replies: 3
Views: 1,907
I finally found out my problem: there was a...
I finally found out my problem: there was a newline at the end of one of the vars! I thought the messagebox I used to debug automatically made a new line because of space constraints, not because it...
|
Forum: NSIS Discussion
19th November 2002, 00:53
|
|
Replies: 3
Views: 1,907
ReadRegStr and user variables
I'm trying to do the following:
ReadRegStr $2 HKLM $R4 $R7
It doesn't work, but if replace R4 and R7 with their values, then it does. I've double-checked for typos, and haven't found any....
|
Forum: NSIS Discussion
12th October 2002, 15:33
|
|
Replies: 2
Views: 1,622
|
Forum: NSIS Discussion
12th October 2002, 01:02
|
|
Replies: 2
Views: 1,622
NSIS internet download
I'm wanting my script to check for some files, and if they're not there, the script will automatically download them from a web site. Is this possible?
Thanks!
|
Forum: NSIS Discussion
6th February 2002, 15:36
|
|
Replies: 19
Views: 10,461
|
Forum: NSIS Discussion
30th January 2002, 17:05
|
|
Replies: 1
Views: 1,226
Illegal Operation
Using NullSoft v1.94, someone who tried to run the install file I made got the attached error in W98. Any ideas on why that's happening?
http://www.mycgiserver.com/~matthew/Pic1.jpg...
|
Forum: NSIS Discussion
16th January 2002, 14:33
|
|
Replies: 19
Views: 10,461
|
Forum: NSIS Discussion
15th January 2002, 23:32
|
|
Replies: 19
Views: 10,461
Using HKCU makes things easier for me :)
...
Using HKCU makes things easier for me :)
Here's how I fixed it:
I just put the following in my app's (WulframPoller) Uninstall section:
IntOp $0 0 + 0
EnumStart:
EnumRegKey $R1...
|
Forum: NSIS Discussion
15th January 2002, 15:00
|
|
Replies: 19
Views: 10,461
Hkey_current_user
In my app, I store registry values in HKEY_CURRENT_USER. When I uninstall my app, how do I make sure to delete all those values? If the user uninstalls under a different username than he ran the app,...
|