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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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