We're having the following situation.
An .MSI file, after being signed using signtool.exe, will show the following UAC prompt:

The same .MSI file, after being signed with a custom tool that uses the CryptUIWizDigitalSign API, shows the following UAC prompt:

We want to make sure the .MSI file displays the "Our awesome application" text in the UAC prompt, not some id generated by the MSI engine.
We've tried filling the field pwszDescription in the CRYPTUI_WIZ_DIGITAL_SIGN_EXTENDED_INFO structure:
A pointer to a null-terminated Unicode string that contains the description of the subject of the signature.
but this did not work.
Is there another field we can use for that?