Go Back   Winamp & Shoutcast Forums > Search Forums

Showing results 1 to 19 of 19
Search took 0.00 seconds.
Search: Posts Made By: smatte
Forum: NSIS Discussion 9th October 2007, 14:05
Replies: 1
Views: 1,436
Posted By smatte
Lightbulb I found it! You just have to replace $(^Name)...

I found it! You just have to replace $(^Name) with $(^NameDA) in language file "English.nsh".
Forum: NSIS Discussion 9th October 2007, 13:06
Replies: 1
Views: 1,436
Posted By smatte
Exclamation XPUI: Ampersand in product name not well displayed.

Ampersand in product name not well displayed when using ExperienceUI (XPUI).

The macro:
Name "name" "[name_doubled_ampersands]"
is not displayed correctly.

Ex: Name "Foo & Bar" "Foo && Bar"...
Forum: NSIS Discussion 2nd October 2007, 17:22
Replies: 5
Views: 2,701
Posted By smatte
You should read about bootstrapping. You'll have...

You should read about bootstrapping. You'll have to split your installer to have an installer running as user that start an other installer as admin to install files.
Forum: NSIS Discussion 20th January 2006, 17:29
Replies: 3
Views: 1,675
Posted By smatte
Here is what you must do: !macro foo msg ...

Here is what you must do:


!macro foo msg
MessageBox MB_OK '${msg}'
!macroend

Function foobar
MessageBox MB_OK "$\""
!insertmacro foo "$\""
Forum: NSIS Discussion 29th November 2005, 16:03
Replies: 5
Views: 3,113
Posted By smatte
If you use an other exe to uninstall the previous...

If you use an other exe to uninstall the previous installation, you'll need to create a file in your uninstaller or a registry key to tell your installer that a reboot is needed.
Forum: NSIS Discussion 28th November 2005, 23:59
Replies: 6
Views: 4,112
Posted By smatte
If your file is in use: # Get a temp file...

If your file is in use:

# Get a temp file name
GetTempFileName $0
# Install
SetOutpath $INSTDIR
File /oname=$0 "something.dat"
Rename /REBOOTOK "$INSTDIR\0" "something.dat"

It will add an...
Forum: NSIS Discussion 25th November 2005, 15:27
Replies: 6
Views: 4,112
Posted By smatte
Power User and PendingFileRenameOperations

When installing with a power user and some files are locked, my installer mark those files for rename on reboot but power user are unable to write in PendingFileRenameOperations registry key. Is...
Forum: NSIS Discussion 7th November 2005, 13:57
Replies: 2
Views: 3,812
Posted By smatte
Question Difference between NSH and NSI extensions

Is there a difference between using NSI or NSH extenltion for script? I observed that if I include a script.nsh that create a shortcut with a specific icon, the icon is not used but if I include a...
Forum: NSIS Discussion 3rd November 2005, 13:43
Replies: 9
Views: 6,393
Posted By smatte
Lightbulb Here is the code you could use to print silently:...

Here is the code you could use to print silently:

#extract license
File /oname=$PLUGINSDIR\\License.txt "${LOCALPATH}\\License.txt"
#print license
StrCpy $0 "print" ;operation
StrCpy $1...
Forum: NSIS Discussion 28th October 2005, 21:49
Replies: 10
Views: 3,562
Posted By smatte
This could help you... ...

This could help you...
http://support.microsoft.com/default.aspx?scid=kb;en-us;127830
but you seem to already know that.
Forum: NSIS Discussion 27th October 2005, 21:29
Replies: 10
Views: 3,562
Posted By smatte
OK! now I know...you must compile on WinXp but...

OK! now I know...you must compile on WinXp but execute on Win98. If you compile on Win98 you wont get the bug.
Forum: NSIS Discussion 27th October 2005, 19:26
Replies: 10
Views: 3,562
Posted By smatte
Don't forgat that the error is only under win9x...

Don't forgat that the error is only under win9x and ME but works well under WinXP.

Your script is a very good example:
Install for the first time.
Reinstall without uninstalling before.
The...
Forum: NSIS Discussion 26th October 2005, 12:51
Replies: 10
Views: 3,562
Posted By smatte
What I need is Overwrite ifdiff. But anyway...

What I need is Overwrite ifdiff. But anyway SetOverwrite ifdiff also have a bug under Win9x.

Step to reproduce:
-Install on a clean Win9x machine
-Reinstall the same software(always using...
Forum: NSIS Discussion 25th October 2005, 14:41
Replies: 10
Views: 3,562
Posted By smatte
Angry Bug with GetFileTime under Win9x

I used this code :
-----------------------------------
!define LOW1 $0
!deinfe HIGH1 $1
!define LOW2 $2
!deinfe HIGH2 $3
GetFileTime ${FILENAME} ${HIGH1} ${LOW1}
GetFileTimeLocal...
Forum: NSIS Discussion 13th October 2005, 17:22
Replies: 9
Views: 6,393
Posted By smatte
Thanks a lot! It work #1. Just a last think....

Thanks a lot! It work #1.
Just a last think. The print command show notepad even if I used SW_SHOWMINIMIZED (because SW_HIDE doesn't exist). I'll try to find an other method to print.
Forum: NSIS Discussion 13th October 2005, 15:14
Replies: 9
Views: 6,393
Posted By smatte
I already did that and it work well but when the...

I already did that and it work well but when the page shows up, the license text is selected. Any code to tell nsis to doesn't selected the text in my text field?

Thanks anyway.
Forum: NSIS Discussion 13th October 2005, 14:28
Replies: 9
Views: 6,393
Posted By smatte
Unhappy Print button on the license dialog page

I'm trying to add a print button on license page. I tried 2 differents method:

1- With "Page custom" I could add a button but the edit box that contain license is gray if I put it read only and...
Forum: NSIS Discussion 7th October 2005, 15:21
Replies: 3
Views: 1,512
Posted By smatte
Thanks i'll use that parameter when I call the...

Thanks i'll use that parameter when I call the uninstaller from my other application.
Forum: NSIS Discussion 6th October 2005, 21:36
Replies: 3
Views: 1,512
Posted By smatte
Question Bloc uninstaller from copying itself

I want to find a way to avoid uninstaller from being copied in a temp directory when the user start "Uninst.exe". Is it possible or should I make an other installer that will delete my files?...
Showing results 1 to 19 of 19

 
Forum Jump