Go Back   Winamp Forums > Search Forums

Showing results 1 to 25 of 1839
Search took 0.10 seconds.
Search: Posts Made By: MSG
Forum: NSIS Discussion 8th May 2013, 06:00
Replies: 4
Views: 240
Posted By MSG
bnicer's method is not secure in any meaning of...

bnicer's method is not secure in any meaning of the word, because it's trivially easy to intercept the password being sent to the extractor (doesn't matter wether the extractor is a plugin, a dll, or...
Forum: NSIS Discussion 6th May 2013, 14:30
Replies: 4
Views: 238
Posted By MSG
1) In the user/pass custom page's LEAVE function,...

1) In the user/pass custom page's LEAVE function, set a variable $installtype depending on what user/pass is entered.
2) In each following page's PRE function, do this:
${If} $installtype != "some...
Forum: NSIS Discussion 3rd May 2013, 13:12
Replies: 4
Views: 234
Posted By MSG
Why don't you just declare the variable inside...

Why don't you just declare the variable inside the macro that needs it?
Forum: NSIS Discussion 3rd May 2013, 13:10
Replies: 3
Views: 156
Posted By MSG
You need to compare the installed version with...

You need to compare the installed version with "1.6" in order to see if it's high enough... That's what VersionCompare is for.
Forum: NSIS Discussion 3rd May 2013, 10:23
Replies: 3
Views: 156
Posted By MSG
Use the VersionCompare macro in WordFunc.nsh: ...

Use the VersionCompare macro in WordFunc.nsh:
http://nsis.sourceforge.net/Docs/AppendixE.html#E.3.16
Forum: NSIS Discussion 1st May 2013, 06:35
Replies: 1
Views: 198
Posted By MSG
Simply do this: !define PageOptionsNumber 0 ...

Simply do this:
!define PageOptionsNumber 0
Page custom PageOptions PageOptionsLeave ;order number is 0
!define PageOptNumber 1
Page custom PageExOpt PageExOptLeave ;order number is 1
!define...
Forum: NSIS Discussion 18th April 2013, 14:06
Replies: 2
Views: 261
Posted By MSG
1) Are you sure IsAlreadyInstalled is really a...

1) Are you sure IsAlreadyInstalled is really a key? It sounds like the name of a regstring to me. The key would then be etc\MyCompanyName\MyAppName.
2) HKCU is unique for each user. Are you sure it...
Forum: NSIS Discussion 17th April 2013, 11:33
Replies: 2
Views: 238
Posted By MSG
Try using SetOutPath to change set the working...

Try using SetOutPath to change set the working folder? It looks like the problem lies within gem.bat. No idea what it does or how it works, and that's not really an NSIS problem...
Forum: NSIS Discussion 16th April 2013, 12:56
Replies: 7
Views: 350
Posted By MSG
Are you sure you're in the proper user context?...

Are you sure you're in the proper user context? SetShellvarContext all or current? Also, if current, are you at the proper access level (elevated/admin vs userlevel)?

Put a MessageBox MB_OK...
Forum: NSIS Discussion 8th April 2013, 11:31
Replies: 3
Views: 401
Posted By MSG
.onGUIEnd is not called in silent mode.

.onGUIEnd is not called in silent mode.
Forum: NSIS Discussion 4th April 2013, 05:07
Replies: 3
Views: 373
Posted By MSG
Yes, I was thinking the same thing. Are you...

Yes, I was thinking the same thing.

Are you sure you've closed all open files? Try putting a messagebox after the fileopen commands, echoing the handles in $0 $1 and $R0. Then when you close them,...
Forum: NSIS Discussion 2nd April 2013, 12:21
Replies: 1
Views: 274
Posted By MSG
It's all in the manual:...

It's all in the manual: http://nsis.sourceforge.net/Docs/Chapter4.html#4.9.5.3
Forum: NSIS Discussion 30th March 2013, 09:15
Replies: 1
Views: 363
Posted By MSG
Put your regular stuff in one section, and the...

Put your regular stuff in one section, and the SQL Server stuff in another section, and then add a COMPONENTS page to your installer.

You can find an example in your NSIS\Examples\example2.nsi
Forum: NSIS Discussion 28th March 2013, 14:17
Replies: 2
Views: 255
Posted By MSG
!define MUI_FINISHPAGE_RUN_PARAMETERS...

!define MUI_FINISHPAGE_RUN_PARAMETERS "nvt${compname}"
should probably be
!define MUI_FINISHPAGE_RUN_PARAMETERS "nvt$compname"

Also, you don't seem to be using your getpcname define.
Forum: NSIS Discussion 28th March 2013, 13:58
Replies: 8
Views: 523
Posted By MSG
Please upload an example property file to...

Please upload an example property file to pastebin.com .
Forum: NSIS Discussion 28th March 2013, 11:32
Replies: 2
Views: 363
Posted By MSG
You can use a 7z/zip/cab plugin, or use unrar.exe...

You can use a 7z/zip/cab plugin, or use unrar.exe or 7za.exe, but you'll probably have to include a copy of the LGPL with those. I do know you can freely distribute a 7z self-extracting archive...
Forum: NSIS Discussion 27th March 2013, 13:36
Replies: 3
Views: 311
Posted By MSG
Oh, you'll probably need to use $PROGRAMFILES64...

Oh, you'll probably need to use $PROGRAMFILES64 instead of $PROGRAMFILES, for x64 apps.
Forum: NSIS Discussion 27th March 2013, 06:14
Replies: 3
Views: 311
Posted By MSG
ExecWait `"$SYSTEM\msiexec.exe" /i...

ExecWait `"$SYSTEM\msiexec.exe" /i "$EXEDIR\x64Installer.msi" /q INSTALLDIR="$PROGRAMFILES\Org\Agent\" SERVER="hostname" KEY="" UNINSTALLPASSWORDKEY="" SERVICENAME="x64A" WATCHDOGNAME="Foxy"...
Forum: NSIS Discussion 27th March 2013, 06:11
Replies: 4
Views: 361
Posted By MSG
You can simply use FileWrite to write one line...

You can simply use FileWrite to write one line (setting) to a txtfile. Then use FileRead in a loop to read all written settings.
Forum: NSIS Discussion 26th March 2013, 16:36
Replies: 4
Views: 361
Posted By MSG
To save information between two installation...

To save information between two installation sessions, you can either save to a file or save to registry. For the commands to do this, read chapter 4.9.2 of the manual:...
Forum: NSIS Discussion 26th March 2013, 13:09
Replies: 9
Views: 1,180
Posted By MSG
ReadRegStr will read the exact value, it will not...

ReadRegStr will read the exact value, it will not remove any backslashes.

It is actually the $INSTDIR variable that removed your backslash. $INSTDIR is a special variable, it is actively...
Forum: NSIS Discussion 25th March 2013, 12:47
Replies: 5
Views: 235
Posted By MSG
Apparently, a single google for 'nsis suppress...

Apparently, a single google for 'nsis suppress warnings' would give you this:
http://forums.winamp.com/showthread.php?t=313194
Forum: NSIS Discussion 25th March 2013, 11:33
Replies: 5
Views: 235
Posted By MSG
You're mistaken about the meaning of the warning....

You're mistaken about the meaning of the warning.

The warning does not mean that the uninstaller will remove the environment variable during uninstall. (The NSIS compiler doesn't actually...
Forum: NSIS Discussion 20th March 2013, 12:49
Replies: 31
Views: 6,613
Posted By MSG
The wiki is for everyone, please add it. As long...

The wiki is for everyone, please add it. As long as you don't claim credit for the original work, there's no reason not to.
Forum: NSIS Discussion 20th March 2013, 11:18
Replies: 31
Views: 6,613
Posted By MSG
Thanks for sharing! Could you add it to the wiki...

Thanks for sharing! Could you add it to the wiki page, too?
Showing results 1 to 25 of 1839

 
Forum Jump