show/hide this revision's text 3 edited body

No, not possible with a standard ClickOnce deployment scenario.

ClickOnce is a sandboxed installation on the client side. It will not know about Version 1.0 that's already installed. It is simply going to check to see whether it's GUID has already been installed via ClickOnce and if so update it, but only if the previous version was deployed via ClickOnce.

In your case if the user installed Version 1.1, both versions will be installed side by side. Version 1.0 will not be updated because ClickOnce doesn't know there's an association since it was deployed via a different method. If they don't want Version 1.0 anymore, they'll need to remove it manually. Once you've got Version 1.1 deployed via ClickOnce, subsequent updates will work correctly.

Don't think of ClickOnce as something you're "including", think of it as a method of deployment.

Alternatively:

I should clarify that what you're looking for it is not possible with standard ClickOnce deployment. However, you mentioned you're going to send them an initial setup file. In that case you may have a workaround that's possible:

  1. Script the setup file to remove the Version 1.0 installation automatically
  2. Script the setup file to launch the ClickOnce installation.

For subsequent updates, simply point the user to the "pure" ClickOnce setup package, and your updates should work fine.

show/hide this revision's text 2 added 522 characters in body; added 46 characters in body; edited body

No, not possible with a standard ClickOnce deployment scenario.

ClickOnce is a sandboxed installation on the client side. It will not know about Version 1.0 that's already installed. It is simply going to check to see whether it's GUID has already been installed via ClickOnce and if so update it, but only if the previous version was deployed via ClickOnce.

In your case if the user installed Version 1.1, both versions will be installed side by side. Version 1.0 will not be updated because ClickOnce doesn't know there's an association since it was deployed via a different method. If they don't want Version 1.0 anymore, they'll need to remove it manually. Once you've got Version 1.1 deployed via ClickOnce, subsequent updates will work correctly.

Don't think of ClickOnce as something you're "including", think of it as a method of deployment.

Alternatively:

I should clarify that what you're looking for it not possible with standard ClickOnce deployment. However, you mentioned you're going to send them an initial setup file. In that case you may have a workaround that's possible:

  1. Script the setup file to remove the Version 1.0 installation automatically
  2. Script the setup file to launch the ClickOnce installation.

For subsequent updates, simply point the user to the "pure" ClickOnce setup package, and your updates should work fine.

show/hide this revision's text 1

No, not possible.

ClickOnce is a sandboxed installation on the client side. It will not know about Version 1.0 that's already installed. It is simply going to check to see whether it's GUID has already been installed via ClickOnce and if so update it, but only if the previous version was deployed via ClickOnce.

In your case if the user installed Version 1.1, both versions will be installed side by side. Version 1.0 will not be updated because ClickOnce doesn't know there's an association since it was deployed via a different method. If they don't want Version 1.0 anymore, they'll need to remove it manually. Once you've got Version 1.1 deployed via ClickOnce, subsequent updates will work correctly.

Don't think of ClickOnce as something you're "including", think of it as a method of deployment.