简体   繁体   中英

NSIS script failed - invalid verbose level


I try to create NSIS installer with ListView ( downloaded here ). However after script running I got failure message:

!verbose: Invalid verbose level
Error in macro __NSD_LV_InsertColumn_Call on macroline 2
Error in script "E:\Data\installer.nsi" on line 35 -- aborting creation process

CommCtrl.nsh was copied to NSIS Include folder. Is there necessary any header file or plugin? Could anybody help me please?

Seems like there is a bug in that 3rd-party header file.

Try something like this:

!include "CommCtrl.nsh"
!ifndef _COMMCTRL_NSH_VERBOSE
!define _COMMCTRL_NSH_VERBOSE ${_COMMCTRL_VERBOSE} 
!endif

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM