HM NIS Edit を使用して作成されたインストーラーがあります。また、チェックで VDF がインストールされていないことが判明した場合に、VDF というセクションを再表示できるようにしたいと考えています。インストール時に非表示にし、その組み込みインストーラーを実行しないでください。
私は自分自身を明確にしたことを願っています。
これは機能です:
Function .onInit #Check's wether the installer is in your installation folder. onInit means that it checks for that even before the installer is initialized.
${If} ${FileExists} "$EXEDIR\VDF2012-17.0.22.8.Client.exe"
MessageBox MB_OK "VDF found"
${Else}
MessageBox MB_OK "The Visual DataFlex setup was not found in the installation folder. However the installation of $(^Name) will still continue."
${EndIf}