I just noticed that my application has a DWORD registry entry named "DelayFreeSizeMB" with a value of 64 in the registry under
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\MyApp.exe
What does this Registry entry do to my app? I understand that "Image File Execution Options" is read by Windows right at the start of the program and it may change how Windows deals with the application. Typically this key defines GFlags (REG_SZ GlobalFlag) and application verifier settings (REG_DWORD VerifierFlags), but none of them are there.
I get only 4 google results searching for "DelayFreeSizeMB" and none of them is helpful.