vote up 1 vote down star

Possible Duplicate:
C# console app deployment

I have a C# console application developed on my local machine using VS2008 Pro. I want to know how to deploy this solution onto a network share folder? A similar Java console program is already placed (as a JAR file) in the same network share folder. Users open command prompt, navigate to shared folder and type "java -jar programName.jar inputParameter1 inputParameter2" How can I achieve the same with .NET?

--- Based on feedback from helpful members --- I did publish it to the network share folder using ClickOnce. On the share drive I get the following structure

  • 1. Application Files (folder) -> ABC_1_0_0_1 -> ABC (application manifest) ABC.exe.deploy ABC.exe.manifest Interop.DSOFile.dll.deploy
  • 2. ABC (application manifest)
  • 3. setup (application)
  • I then RDP to the target machine and navigate to shared folder above. I double click Setup.exe Command prompt screen flashes indicating the program ran, but would have exited on account of no input parameters.

    flag
    @DRags - update your original question (1676577) rather than posting another very similar question. – Matt Hamilton Nov 4 at 23:13
    Exact duplicate. stackoverflow.com/questions/1676577 – Henk Holterman Nov 4 at 23:13
    sorry. did not think of that before. – DRags Nov 4 at 23:40

    closed as exact duplicate by Daniel Pryden, Matt Hamilton, Henk Holterman, Preet Sangha, R. Bemrose Nov 5 at 16:08

    2 Answers

    vote up 1 vote down check

    .NET supports XCopy deployment. Simply copy your assemblies to the network location, and your users should be able to execute them from there, similar to your Java app.

    You will, however, need to make sure that the user's client recognizes the network location as a trusted site. Easiest way to ensure this is to add the UNC path to the trusted sites list in IE.

    link|flag
    vote up 2 vote down

    Why not just put the bin\Release directory onto the share. Then the process should be the same as the java application \server\share\path...\app.exe param1 param2.

    The issues you may run into are if the share path is trusted. This should explain how to fix that http://johnnynine.com/blog/RunningANetApplicationFromANetworkShare.aspx

    Clickonce is good if you want a shortcut on the desktop and the application to be updated on each machine when it is started(or on a schedule). It would fix this too. However, finding the application path isn't as nice. The clickonce applications are generally under %userprofile%\application data... and not easily traversed on a commandline.

    link|flag

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