I am trying to create my own dependency module for use in my other product installers. I've created an installer that has a bunch of shared components and that works fine. I've made a dependency module that runs that installer when necessary and launches it in silent mode. I know that a Setup Factory installer can return a bunch of possible process return codes, but there doesn't seem to be one that indicates that that installer requires a reboot. Is there a way I can manually set the return code so I can detect it in my main installer and prevent the dependency installer from just forcing a reboot by itself?
I was looking at the VB6 dependency module as an example and it looks for the File.Run function to return a value of 3010 to indicate a reboot is needed. How can I emulate that sort of functionality?
Thanks
I was looking at the VB6 dependency module as an example and it looks for the File.Run function to return a value of 3010 to indicate a reboot is needed. How can I emulate that sort of functionality?
Thanks
Comment