silent install with wceload is not ... silent

  • Thread starter Thread starter Steve B.
  • Start date Start date
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 removed the application with add/remove program (from older tests) and it
works.

Thanks,
Steve

Sergey Bogdanov said:
See this thread:
http://groups.google.com/group/micr...99ddc4040bb/bc2481ec0a2d0544#bc2481ec0a2d0544


--
Sergey Bogdanov [.NET CF MVP, MCSD]
http://www.sergeybogdanov.com

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
 
Back
Top