Reference/!echo: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
mNo edit summary |
(Added note about verbose level 4) |
||
| 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'' | ''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