views:

32

answers:

1

I have a click once application here that needs to be started offline exclusively sometimes.

Reason is that it needs to be started VERY early during boot, at a point when there is no network connection yet, also it must not wait for any network connectivity.

I know, this requirement seems strange, but it has legacy reasons.

What do you think?

A: 

If you want to stop an application deployed via ClickOnce from checking for updates do the following:

In the Solution Explorer right click over the project name and select "Properties".

Then select the "Publish" tab (bottom of the list).

Then select "Updates..." and clear the first option "The application should check for updates".

Save, rebuild and then deploy this version. The old version will check for updates install this and then never check for updates again.

ChrisF