Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Since ClickOnce installs per profile rather than per computer, is there any way to uninstall a single ClickOnce client application from muliple profiles at the same time? We have a ClickOnce app that we would like to remove and re-install using a standard msi, but we don't want to have to log in as each user to do the uninstall.

Assuming there isn't anything baked in, has anybody done anything like this using a custom tool?

share|improve this question

1 Answer

up vote 20 down vote accepted

You could manually delete the ClickOnce install for each user. I haven't tried doing this on a large scale, so use at your own risk. However, these steps should get rid of a ClickOnce app.

  • Delete the deployed files. On my machine, the path to my ClickOnce deployed files is, %UserProfile%\AppData\Local\Apps\2.0. If you delete everything under this folder, it will delete all ClickOnce applications. Obviously, you'd need to do this for each user profile.

  • Delete the start menu shortcut. Again, this needs to be done for each user profile.

  • Now all that's left is an entry in Add/Remove programs. I think removing this is optional since it doesn't really hurt anything, but to get rid of it you can delete registry entries. Go through the users under HKEY_USERS and delete this key, Software\Microsoft\Windows\CurrentVersion\Uninstall\[random string associated with your app].

share|improve this answer
Thanks - this is the only click once app, so I think the above instructions should work. – Aaron Aug 14 '09 at 14:56
1  
I know this is an old question, but for reference of future viewers you may also want to kill any processes that are using the Clickonce App files, otherwise an error will be thrown. – jpm0004 Feb 2 at 13:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.