How to make my C++ Win32 .net-framework installer silent?
I tried sfxmaker software & ussf.exe, but I get an unknown installer error.
Command line arguments /S and /SD did not work for me.
Part of the code I use:
if( !CreateProcess( NULL,
".\\InstallationFiles\\dotnetfx 35 SP1 Full.exe /S",
NULL,
NULL,
FALSE,
0,
NULL,
NULL,
&si,
&pi )
)