page custom test
# Installer sections
Section -Main SEC0000
SetOutPath $INSTDIR
MessageBox MB_OK "done"
;............
;.........
SectionEnd
Function test
MessageBox MB_OK "ok"
//Do some stuff
FunctionEnd
# Installer functions
Function .onInit
!ifdef IsSilent
SetSilent silent
!endif
InitPluginsDir
FunctionEnd
在上面的代码中,以静默和非静默模式两种方式运行。如果在非静默模式下运行[用户交互],则会调用自定义页面函数并显示消息框。但是如果你在静默模式下运行它[无用户交互],则不会调用自定义页面并且不会显示任何消息框。此外,完成消息框以静音模式显示。
在静默安装程序中没有调用自定义页面是否有任何原因?
如何在静默安装程序模式下调用自定义页面?