I use the following to set the compiler variable [PRODUCTVER] to a value in
an ini file.

! Init Version info from version.ini
#const $PRODUCTVER$ = Get Value from INI file:
[SOURCEDIR]\Source\Version.Ini
#set compiler variable [PRODUCTVER] = "$PRODUCTVER$"

The variable is set and I use it to copy and rename my install which all
works fine.

I have enable web update checked and I have [PRODUCTVER] for the product
version on the ideploy web update properties dialog. When the local version
is written to the registry it is not the current value of [PRODUCTVER]
(1.0.0.16) it uses the value from the general information dialog (1.0.0.0).
If I check store properties in ini file I get the updated value (1.0.0.16)
in the ini file.

I have the following in my version.ini file in my source dir:
[$PRODUCTVER$]
Value=1.0.0.16

I have 1.0.0.0 set in the general info dialog.

Eddie Sizemore