03-26-2008 10:37 AM
03-27-2008 05:43 PM
03-28-2008 07:12 AM
03-31-2008 03:56 PM - edited 03-31-2008 03:57 PM
Hi Bolinger,
So you basically want the version number to be present on the deployment machine after deployment and be able to get to it later?
If so, one thing you could do is add a custom command to your installer, which basically runs a custom command that you specify after the installation completes.
For instance, a simple example you could copy the setup.ini to the deployment computer by adding a custom command like the screenshot. This way, later, you can always look at the version number later.
FYI, the copy.bat file simply contains:
copy setup.ini c:\setup.ini
You can always make the custom step more complicated to do more things like say a C# application that will do a message popup or something, that's up to you.
Is this what you were looking for?