Reference/!echo: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
(Created page with "=!echo= message This command will echo a message to the user compiling the script. <highlight-nsis>!echo "hello world"</highlight-nsis>") |
(Added note about verbose level 4) |
||
| (One intermediate revision by one other user not shown) | |||
| Line 6: | Line 6: | ||
<highlight-nsis>!echo "hello world"</highlight-nsis> | <highlight-nsis>!echo "hello world"</highlight-nsis> | ||
Note, the message is only visible at verbose level 4. If you wish for the message to always be visible, you will need to change the verbose level. | |||
<highlight-nsis>!verbose push | |||
!verbose 4 | |||
!echo "hello world" | |||
!verbose pop | |||
</highlight-nsis> | |||
''Command introduced with NSIS v2.0'' | |||
Latest revision as of 19:38, 10 January 2017
!echo
message
This command will echo a message to the user compiling the script.
!echo "hello world"
Note, the message is only visible at verbose level 4. If you wish for the message to always be visible, you will need to change the verbose level.
!verbose push !verbose 4 !echo "hello world" !verbose pop
Command introduced with NSIS v2.0