CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2001
    Posts
    2,455

    c# Clickonce deployment? Where is my app?

    I have published my first c# Windows application using the clickonce publisher with VS 2005.

    I have installed the application on a client machine and it works fine, but for some reason I cannot find the application anywhere on the machine.

    This application was installed from a network share. Does the actual program stay on the network drive and a "short cut" created on the client machine? Is this the mainifest file?

    Where do these applications get installed? I thought it would have been in Program Files.....

    Mike B

  2. #2
    Join Date
    Nov 2007
    Location
    .NET 3.5 / VS2008 Developer
    Posts
    624

    Re: c# Clickonce deployment? Where is my app?

    ClickOnce does not install the application on the client. It does save temporary files into odd-named folders under the Documents and Settings directory for the user.

  3. #3
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    Re: c# Clickonce deployment? Where is my app?

    Any application published with ClickOnce is installed into the Application cache folder and per user basis. If you want your application to be installed in Program Files folder then you would need to create a MSI for that and publish that.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured