Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ClickOnce deployment and installation path on my PC

I have a application that I deployed to web server. Users go to "publish.htm" deployment web page to install my vb.net application. I have a very simple question , but I can't quite figure out. Where is the application installed? I don't think it is installed under "Program Files" like others.

like image 415
Hoorayo Avatar asked Jul 08 '11 18:07

Hoorayo


1 Answers

ClickOnce deployment is designed to have zero-impact on the host machine so ClickOnce apps are installed into user folders in order not to have any impact on the host machine and not to require admin rights.

On Vista/Win7 this location is SysDrive:\Users\UserName\AppData\Local\Apps\ folder and on XP boxes I think the folder is SysDrive:\Documents and Settings\UserName\Application Data\ if I recall correctly.

On Vista/7 you can easily find this location buy opening Task Manager and clicking on the 'Open File Location' menu item of your application's context menu.

like image 117
Dean Kuga Avatar answered Sep 30 '22 06:09

Dean Kuga