Where can I get the cd files for clickonce

I created a clickonce deployment and published it to the website. I want to put the installer (version 1.0.0) on a CD for distribution to clients. The setup.exe file was created in the publish path of the published folder, but this is very small and may not be everything you need for a CD.

I passed this on to a developer co-worker who ran the setup.exe file alone and he said the required files were missing. What files should you put on the CD and where exactly are they located?

I chose the option that this installer went to CD when I viewed the publish wizard.

+1


source to share


3 answers


I think you want all the files in that folder, not just the setup.exe file.

Application files
autorun.inf
install.html
YourApp.application
setup.exe



In the Application Files folder, I believe you can omit older versions.

+2


source


In the folder, I see setup.exe and myappname.application. there are two more folders, one is called application files. the other is called windowsinstaller3_1.



+1


source


Just FYI, setup.exe is a prerequisite, not an applicaiton. The .application file is a deployment manifest that is used to install the application. It, in turn, will call setup.exe for any preconditions you create.

0


source







All Articles