This is a discussion on INF file flags - Microsoft Windows ; Hi all, I am working on an INF setup script. When copying some dlls, I used the COPYFLG_NO_VERSION_DIALOG flag in order to keep the newer version. But the flag didn't work until I explicitly put 0x00000020 instead. ==================================== [FileList] abc.dll,,,COPYFLG_NO_VERSION_DIALOG ...
Hi all,
I am working on an INF setup script. When copying some dlls, I used the
COPYFLG_NO_VERSION_DIALOG flag in order to keep the newer version. But
the flag didn't work until I explicitly put 0x00000020 instead.
====================================
[FileList]
abc.dll,,,COPYFLG_NO_VERSION_DIALOG
====================================
doesn't work, but
====================================
[FileList]
abc.dll,,,0x00000020
====================================
works.
It looks weird to me. Do you guys have any explanations?
Thanks.