I created an application that was made available for download within a .zip
. Within .zip
has .exe
and some files needed to perform an installation. So far so good.
However, some users do not extract files before installing, they run the .exe
file directly from within .zip
. Ista generates an error because the application can not find the files needed to proceed with the installation.
So my question is: How do I identify if my app is running from within a .zip
?
Considerations:
1) Because I need a quick fix I can not put everything inside .msi
or as built-in features in .exe
. This would mean changing the application that is not a good option at the moment.
2) I'm using C # + VS 2012 with Windows Forms