autoupdate

How do I keep .NET applications pinned to the Task Bar during AutoUpdate?

When an application deployed by ClickOnce AutoUpdate is automatically updated on Windows 7, the application becomes unpinnned from the taskbar. Is there a way to stop it from becoming unpinned? ...

Mercurial auto update problem.

We are starting to use Mercurial for source control. We have configured the HGRC configuration file to do an auto update after we push to the "central" repository. With some PCs we get this error msg: warning: changegroup hook exited with status -1 HGRC looks like this: [ui] username=ADMIN verbose=true [hooks] changegroup = hg upda...

.net (winforms, not asp) multi-server deployment

I have a small .NET WinForms application, and couple of linux servers, DEV and CL1,CL2..CLN (DEV is development server and CL* are servers which belons to our clients, they are in private networks and it's a kind of production servers) I want an update mechanism so that (1) i develop a new version and publish it to a DEV (2) users of DE...

automatic updates

Hi, I wanted to create an auto upate for my safari extension. i got a update.plist on my webserver and it's in my manifest but for some reason it doesn't work. Can someone explain how i Create the plist file <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyL...

Using AJAX for an auto-updating page containing values from a database?

Hello. Can someone explain how to create a .php page which auto-updates with values from a database? Would using AJAX be best for something like this? I want this PHP code, but I want the page to be updated whenever 'values01' is added to or changed, without having to refresh the page. $query = "SELECT values01 FROM users WHERE username...

Autorefresh a ActionResult?

I am using the following code to get data from database and output it as JSON: public ActionResult Map() { var map = DeviceLocation.FindAll(); Locations l = new Locations(); l.locations = map; return Json(l, JsonRequestBehavior.AllowGet); } Is there a way to make this ActionRsult auto refresh? T...

Can a Winforms app unlock/replace its own exe file for auto-update?

I'm trying to create an auto-updating app using Winforms. I can't use click-once or the updater block because the app needs to run on Mono also. Once I download the new exe file from a webservice, is it possible to unlock the running exe file, replace it, and restart the app? ...

Auto update dialog / Notification for WPF Application

I want a automatic update notification in my application. A message box should appear which tells that an update is available, if user wants then it can download the latest version in downloads folder of windows. Nothing else (user will install it manually) not application. -I'm using Installshield so no Click once solution. Thanks ...

How can I write a Java application that can update itself at runtime?

I would like to implement a java application (server application) that can download a new version (.jar file) from a given url, and then update itself at runtime. What is the best way to do this and is it possible? I guess that the application can download a new .jar file and start it. But how should I do the handover, e.g. know when t...