S
Steve B.
Hi all,
I use this little code to install a cab file :
string cmdLine = string.Format(
"/nouninstall /noui /delete 0 /noaskdest \"{0}\"",
cabFile
);
ProcessUtils.CreateProcess(
"wceload.exe",
cmdLine,
true
);
The cab installs, but if a previous version of the cab is installed, the
user MUST click on OK, despite the /noui param.
IS there any way to do a full silent installation ?
Thanks,
Steve
I use this little code to install a cab file :
string cmdLine = string.Format(
"/nouninstall /noui /delete 0 /noaskdest \"{0}\"",
cabFile
);
ProcessUtils.CreateProcess(
"wceload.exe",
cmdLine,
true
);
The cab installs, but if a previous version of the cab is installed, the
user MUST click on OK, despite the /noui param.
IS there any way to do a full silent installation ?
Thanks,
Steve