getting a full reg key like 6.5.2
I want to get a full version number from the registry...
a value like 6.5.2
this code below gives 6.5
IntFmt $R1 "0x%08X" $R0
IntOp $R2 $R1 / 0x01000000 ; Major ver
IntOp $R3 $R1 & 0x00FF0000
IntOp $R4 $R3 / 0x00100000 ; Minor version
the apps registry's REG_DWORD hex value is:
0x06528000 (106070016)
how would I modify the above?
maybe there is a tutorial on this somewhere
many thanks