cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
colinmarney
Level 3

Setup.exe File Version

Jump to solution

Is it possible to set File Version at compile time with ISCmdBld?

Snag_2e6897e2.png

 

Labels (1)
0 Kudos
(1) Solution
shunt
Revenera Moderator Revenera Moderator
Revenera Moderator

Hi Colin -

Some additional information - its important to understand the difference betweeen "File Version" and "Product Version"

"Product Version" is the fully expanded Product version number which is set in the project.
"File Version" will compress the Product Version removing the zeros that precede the value for a specific field and adding a zero for fields that have not been set, and then displays the compressed four field product version.

For example if we set the Product Version in a Project to '1.010.0200' then the Setup's Product Version will be displayed as '1.010.0200'
The File Version however will remove the Zero's in the 2nd and 3rd fields and add a zero for the fourth field as it was not set - the result would be a File Version number of '1.10.200.0'

You can specifically target the File Version using -fv
Or/and you can target the Product Version using -y

View solution in original post

(5) Replies
rguggisberg
Level 13

Yes.

-y <Product Version> version number in the format xx.xx.xxxxx

See ISMCDBLD.exe /?

0 Kudos
varul
Revenera Moderator Revenera Moderator
Revenera Moderator

Hi Colin,

Yes you can do by passing -fv option

IsCmdBld.exe -p "c:\InstallShield 2020 Projects\My Project Name.ism" -fv "9.9.9"

shunt
Revenera Moderator Revenera Moderator
Revenera Moderator

Hi Colin -

Some additional information - its important to understand the difference betweeen "File Version" and "Product Version"

"Product Version" is the fully expanded Product version number which is set in the project.
"File Version" will compress the Product Version removing the zeros that precede the value for a specific field and adding a zero for fields that have not been set, and then displays the compressed four field product version.

For example if we set the Product Version in a Project to '1.010.0200' then the Setup's Product Version will be displayed as '1.010.0200'
The File Version however will remove the Zero's in the 2nd and 3rd fields and add a zero for the fourth field as it was not set - the result would be a File Version number of '1.10.200.0'

You can specifically target the File Version using -fv
Or/and you can target the Product Version using -y

Thanks @shunt that was the most helpful answer. 

We want to use separate file and product versioning and the combination of using both -fv and -y flags appears to work.

I must have been looking at older online help as I manged to completely missed the -fv flag. ðŸ™„

0 Kudos

Note that the "-lv" flag on it's own is not enough, the project also needs to have "Use Customer Version Properties" set to "Yes".

If "Use Customer Version Properties" is set to "No" the "-lv" flag is ignored and "File Version" will be the same as the "Product Version".