auto-update

Auto update .NET applications [duplicate]

那年仲夏 提交于 2019-11-26 15:19:16
问题 This question already has an answer here: Auto-update library for .NET? [closed] 12 answers We are in a process of developing a really complex system consisting of several WCF services, ASP.NET MVC applications, administration tools (Windows Forms apps)... Some of those, will have instances running on several servers. We are looking for a good auto update solution for such a system. Most likely, we would need a separate auto update application (service) that will do the job, or some

Auto-Update for (private) Android apps

依然范特西╮ 提交于 2019-11-26 15:13:33
问题 I'm developing a non-public Android app, i.e. the app won't be available in the global Android Market. The app will be installed on a limited number of clients, e.g. by using an apk file. How can I enable an auto-update functionality in this app? I see different potential options (I do not know if those are technically hard or even impossible to implement or if there are any existing functionalities that can be reused): On each launch the app tests if a new version exists (by requesting a

Delphi: How do you auto-update your applications? [closed]

五迷三道 提交于 2019-11-26 15:04:30
问题 I've been thinking of rolling my own code for enabling my Delphi application to update seamlessly as I'll be going for "release often, release early" mentality furthermore. There are various Delphi solutions (both freeware and paid) out there and I'd like to ask if you've been using any of them or simply went on with your own solutions in this area. Any comments on the auto-update topic are welcome. 回答1: Years ago I wrote a simple tool which is started instead of the real program, checks for

“Automatic updates” for Java (desktop) application?

…衆ロ難τιáo~ 提交于 2019-11-26 11:05:21
问题 What system do you recommend for implementing \"automatic updates\" for some java (desktop) application? I\'d also want to have module/plugin installation and update. Think Eclipse and Firefox. I\'m aware of Eclipse RCP\'s OSGi stuff, and also NetBeans RCP has something here. Do one have to buy wholly into their respective RCP stuff to use their module and automatic update systems? Are there other options? 回答1: Have you looked at the Java Web Start? It checks for updated module on the server

Auto-update library for .NET? [closed]

心已入冬 提交于 2019-11-26 11:03:33
On the Mac there's a really nice library called Sparkle that programs can use to implement the checking/install functionality for auto-updates. Is there anything similar out there for .NET? Or just regular Win32? Raj ClickOnce has its own security limitations (understandbly so). If you want the full power and control of a Windows application then go with the .NET application updater component. It works like a charm and has even been used by Microsoft internally for their .NET based game (I don't remember the game name though). Let me start by saying we offer a complete updating solution which

Checking my app version programmatically in Android market

狂风中的少年 提交于 2019-11-26 09:48:40
问题 Currently I\'m checking the app version code on launch and match it with latest version code on my server and based on this matching I send user to get latest update from Android market. It\'s working well but my problem is that I have to manually change the latest version code on my server and I don\'t know exactly when new version of APK gets activated in market. Is there any way to check version code of app in Android market directly so that I can send user directly to market when new apk

WebView load website when online, load local file when offline

♀尐吖头ヾ 提交于 2019-11-26 09:48:26
I am actually new to programming in Java but I have been following several solutions to my problem here but didn't find one that suits my case and I can't seem to get the code down correctly. I would like to have a WebView that opens an online page (for example Google) when the phone is online and open a local HTML page when the phone is offline. At the same time though I want the phone to overwrite the local page when it is online so that the offline local page is always updated to the last time the phone was connected to the internet. Any ideas on how this could be done? Some simple pointing

How to disable Google Chrome auto update?

强颜欢笑 提交于 2019-11-26 09:06:07
问题 Does anyone know how to disable Google Chrome for being automatic update itself, it cause my web application always change? I have tried these methods: Use the Google Update ADM templates provided on this page or as described in this article. Set the value of HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Google\\Update\\AutoUpdateCheckPeriodMinutes to the REG_DWORD value of \"0\". but there is no Google in my registry editor , so I can\'t set it. http://www.wikihow.com/Completely-Disable-Google

Running Microsoft Access as a Scheduled Task

旧城冷巷雨未停 提交于 2019-11-26 05:35:13
问题 I am seeking comments on how to schedule auto updates of a database (.accdb) since I am not very comfortable with the process I have set up. Currently, it works as follow: Task Scheduler calls a .bat .bat calls a .vbs .vbs opens the database and calls a macro The macro calls a function (VBA Level) The function calls the update Subroutine I consider there are too many steps and the fact that it requires 2 external files (.Bat and .vbs) related to the database and stored on the system increase

What is the best way to auto update a windows application? [closed]

女生的网名这么多〃 提交于 2019-11-26 05:00:04
问题 Google Chrome auto updates itself every five hours. I want to clone this exact functionality in my own application. What is the best way to implement this functionality on Windows? 回答1: To replicate this update behavior you need two things: An updater application which checks for updates regularly. If an update is found it should install it automatically. Most commercial setup authoring tools include good updater applications. You can try writing an updater yourself, but it's not as easy as