How do I concatenate 2 strings in NSIS?
StrCpy $1 "one string" StrCpy $2 " second string" MessageBox MB_OK "$1$2"
StrCpy $1 "Hello"
StrCpy $2 "World"
StrCpy $3 "$1 $2"
DetailPrint $3