GuidMake() |
The purpose of this function is to create a new GUID in MSI format. If you require that subsequent builds use the same GUID then you should use GuidGet instead.
The function takes these parameters:
The function returns the GUID (string).
EXAMPLE |
<$TableDefinition "AAA_DennisGuidTable"> <$Column "MsiGuid" TYPE="s72" KEY="Y"> <$Column "Value" TYPE="l0"> <$/TableDefinition> <$Table "AAA_DennisGuidTable"> <$TableCreate> <$Row MsiGuid="IncorrectlySetGuid" Value='GuidMake("")'> ;;treated as a literal string! <$Row MsiGuid="CorrectlySetGuid" *Value='GuidMake("")'> ;;"*" means the value is VBS code to be executed <$/Table>