Archive: How to use & in Strings


How to use & in Strings
I want to do:

Name "ABC & DEF"

But when i start the installer it just displays ABC DEF as Name.

Maybe someone can help me.


Hi!

Double the ampersands in the second parameter:

Name "ABC & DEF" "ABC && DEF"

See also:

http://nsis.sourceforge.net/Docs/Chapter4.html#4.8.1.30

Greetings

Bruno


Thanks for your quickly help.