0
我需要提示用戶插入第二張光盤以繼續安裝。我能夠提示用戶插入光盤,但是如何檢測用戶是否插入了光盤,並且如果插入,我需要從DVD運行setup.exe文件。從DVD安裝,NSIS
MessageBox MB_YESNO|MB_ICONQUESTION "Insert disc to install User Software or Click No to proceed" /SD IDNO IDYES yes IDNO no
yes:
Call installUserSoftware
no:
;do nothing
This help thanks – sam