Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Click-Once available/compatible with .NETCF?

I develop and manage about 45 WindowsCE5 devices. Updating applications on the devices is a nightmare. Is it possible/feasible to do Click-Once on the CF?

I take the lack of answers to be "No". :)

EDIT: This is a duplicate of question 116713

like image 756
John Kraft Avatar asked Nov 05 '22 22:11

John Kraft


1 Answers

We do a lot of work with CF apps here. If your devices are wireless capable, you can build auto-update functionality into your app without a lot of trouble. Basically when the app starts up, it checks a predefined URL for a manifest file, parses it to find out what version of the .exe is sitting on the server and compares it with the version of the .exe installed on the device. When a newer version is available, it pulls it down from the server and drops it into the correct location on the device. All the user has to do at this point is restart the app to get the most recent version.

We based the logic on code found in this article, and revised as needed. http://www.codeproject.com/KB/vb/Auto_Update_Revisited.aspx

like image 115
Tim Cavanaugh Avatar answered Nov 17 '22 07:11

Tim Cavanaugh