0

我正在编写一个 NSIS 安装程序脚本来安装一些网络打印机。我希望每台打印机都安装为可选的Section,但我不想多次重新启动打印后台处理程序。因此,我创建了一个隐藏部分来检查是否选择了每个打印机部分,如果是,则它包含注册表设置以创建该打印机的端口。然后它重新启动打印后台处理程序。问题是我需要先完成这个隐藏部分,但我还需要使用打印机部分的部分索引。

有谁知道在定义部分之前如何引用部分索引?我想到的另一种方法是将隐藏部分移到最后,但是我需要一种方法来确保首先安装它。任何帮助或想法将不胜感激。

Section "-"
    ${IfThen} ${SectionIsSelected} ${Sec01} ${|} !include "10.0.0.8.nsh" ${|}
    ${IfThen} ${SectionIsSelected} ${Sec02} ${|} !include "10.0.0.11.nsh" ${|}
    nsExec::Exec 'net stop spooler'
    nsExec::Exec 'net start spooler'
SectionEnd

Section "My Printer" Sec01
    ExecWait 'rundll32 printui.dll,PrintUIEntry /if /b "My Printer" /f "$EXEDIR\oj8000\hpoj800z.inf" /r "10.0.0.8" /m "HP Officejet Pro 8000 A809 Series" /z'
SectionEnd

Section "Copier" Sec02
    ExecWait 'rundll32 printui.dll,PrintUIEntry /if /b "Copier" /f "$EXEDIR\copier\oemsetup.inf" /r "10.0.0.11" /m "RICOH Aficio MP C4000 PCL 6" /z'        
SectionEnd
4

1 回答 1

1
Section -
...
call doSectionChecks
SectionEnd


Section "My Printer" Sec01
...
SectionEnd


Function doSectionChecks
... ${Sec01}
FunctionEnd
于 2013-02-10T05:48:16.343 回答