Remove Application from pocket PC via .net CF

  • Thread starter Thread starter tkeilhol
  • Start date Start date
T

tkeilhol

Hi,

how can i remove application from pocket pc or execute a
program (winodws\unload.exe) via .net cf.

Thanks
 
You'll need to P/Invoke CreateProcess - e.g. use OpenNETCF.WinAPI
(www.opennetcf.org/winapi.asp). Pass the application name (as defined in the
registry) to unload to remove the application e.g.

OpenNETCF.WinAPI.Core.CreateProcess("unload.exe","MyApplication")

Peter
 
Back
Top