Make A Setup And Deployment Project In .net 2008?
Nov 25, 2009
Is it possible to make a setup and deployment project in VB.net 2008, every site i have looked at on google says to just select it from the project list. It isnt in the project list for me to select.Are these types of projects not available in the express version?How can I make an installer, other than using one of the setup and deployment projects? (I know there is a publish button, but that doesn't make a proper installer and installs to the appdata folder which is not what i want it to do)
View 3 Replies
ADVERTISEMENT
Nov 3, 2009
i'm developing an application vb.net with mssql server as database. on my pc it works. but i don't know how to make it works on my customer's pc.anybody have some tutorial regarding the creation of a setup and deployment project with ms sql server.my first doubt is: how can i determinate the right connection string?
View 1 Replies
May 7, 2012
Have built a project and associated it with a Setup&Deployment Project. The S&D project needs to contain 2 main folders (under User's Desktop) with various formats of files (xmls, txts, dlls) inside them and several subfolders. How can i copy/import these 2 folders and there sub-files/folders into my s&d project?
When adding them in the usual way, they are copied and defined a source path onto the current pc. You can understand what errors this might create when an another targeted pc does not contain those files to the exact location. Is there any way to copy them locally or somehow import them?
View 5 Replies
Jun 21, 2010
My suggestion is how to use the setup/deployment project - and also how to add it/incorporate it into the project being built.
View 3 Replies
Oct 2, 2010
ive just completed my app and i created a setup and deployment project.Complier forced me to exclude wmp.dll
i get this error for about a second before the app launches. Losing my splash screen because of it
I thinks it has to do with the .dll, but ive no clue how to fix
View 4 Replies
Jul 7, 2010
setup and deployment project walkthru? creating a setup and deployment project in Vs2008
View 7 Replies
Apr 26, 2012
For my .Net desktop apps I usually create an MSI installer (I create a 2nd project in my solution, a Setup & Deployment project) and I zip the setup.exe file with the <appname>.msi files together and put them up for download on my site. The installer will go through the process of asking where they would like to install the application (it creates the needed shortcuts and everything).
Right now I'm looking at adding a feature to some of these programs where it'll periodically check it's corresponding xml file on my web server and see if there's a newer version of itself available. I have this portion working just fine, where I'm stuck is that I would like to have it download a separate msi installer to update itself.
The idea is that it would download this different msi file, execute it while the app closes itself. This msi would not ask any questions, it would simply update the needed files in whatever location the first msi installer put the app. When this updater msi is done, it would just re-start the application.How would I go about making an msi installer that doesn't have any prompts and installs the application where ever the first msi installer put it (where ever the user chose to install it to)?
View 8 Replies
Jun 30, 2010
I would like to add a choice of icons to the desktop shortcut I add in setup/deployment. I can add one icon, but when I run the project there is no option for changing it. The "change icon" button is greyed out. I've made a dll containing 3 icons and added it to the setup/deployment project (also added it to the test project).
View 1 Replies
Mar 5, 2010
Setup and deployment project template is missing in my installation
View 2 Replies
Jun 21, 2009
When i am creating a setup project and building it then i am getting a setup file using which if i install then it is getting installed to single user only i want the setup to build run for every user in that system and the users can access it.
View 1 Replies
Jan 21, 2009
I have a setup and deployment project that installs my application. During installation, I create a hierarchy of folders under the C: drive.
However, when I use add/remove programs to uninstall my application, I do NOT want this hierarchy of folders to be removed. How is this possible?
Also, when creating the folders, I set "AlwaysCreate" to True. If one of the folders already exists, will it be replaced with my new empty folder? If so, how can I prevent this.
View 8 Replies
Jul 8, 2009
I have a VB.NET Application and I am developing a deployment project in VS 2008.
I need to give the user the choice to allow the application to start when windows start (but this should be optional)
Then in my application there should be an option to remove the application from the windows start up folder.
View 3 Replies
Feb 8, 2009
how to add the creation of a scheduled task to the setup project of a solution so that it will install the main executable and also schedule it to run in windowsscheduled tasks. The project is in vb.net 2005?
View 6 Replies
Apr 27, 2009
I've been busy with work and other bits and bobs and not really had much time for programming... but anyway, I have just written a fairly simple windows service in VB.NET and although I can install it on my PCs/servers using the command line InstallUtil.exe component, this isnt ideal for other people that may need to install it without my assistance.
So basically I just need to know how to get a normal Setup and Deployment VS project to install this service itself... I thought it would be as simple as selecting the service assembly to include in the deployment project and building it, but unfortunately that seems to do naff all. Do I need to use a 'Custom Action' in the setup project (and if so, how/what do I do?)
View 6 Replies
Jun 22, 2010
Step-by-Step Process of Creating a Setup and Deployment Project for windows application
View 2 Replies
Jan 3, 2011
I have created an windows application in VB.NET 2008 ad want to create the setup but due to newer in VB.NET i could get expected result from the setup such as....
1.I want to deploy only those items which are highly needed.
2.I want to check the system requirement ie.version of framework,sql database,crystal report etc..
3.I want to set the automatic connection string to the databsase such wherever theaplication will be install it have to be run successfully.
View 1 Replies
Jan 14, 2008
I have VS 2008 VB project that I have created a Setup and Deployment project for.When the install starts, it give a message that .NET 3.5 is required and asks if the user wants to download.On the programs Advanced Compiler Settings, I have the Target Framework set to .NET 2.0, but the deployment still prompts to download .NET 3.5.
View 11 Replies
Jan 8, 2010
i have studied very recently that an exe file could be created using "Setup and deployment" project, then by adding the required file to it,thus we can create a 'setup.msi' and 'setup.exe' But i want to know whether, we can create the same exe file , COMPLETELY THROUGH CODING....for example, when i click a button , then an exe file should be created...
View 1 Replies
Nov 9, 2009
Maybe I'm just searching around for the wrong information, but are there any good tutorials on Deployment or setup projects? I can make the little auto wizard that VS2008 makes for you, but my app needs more custom options. For instance my app will set up SQLserver 2008 and create the tables in it, but I can't find any useful info about how to make a custom setup/msi app.
View 1 Replies
Oct 24, 2008
I want to make exe file of my project but i don't know how make.P
View 5 Replies
Aug 23, 2010
During the installation stage of VS programs, via setup and deployement, the end user is given an option to install to local settings or for all users. Where is this information saved?
View 8 Replies
Nov 15, 2010
i was developing Voice Chat Application in visual Basic .NET 2008 i try a lot methods to make installer for it :
1- i add Project Setup Project for my Project for Visual Studio 2008 Deploy & setup Type Projects and make it with output option and detect dependices
2- i try make it with Setup Factory 8.2.1
3- i try with MSI Factory 2.0
4 i try with Setup Factory 6.0
and after making installer copying it to my test virtual Machine or my friend lap and install it i get this error when try to run my application :
[Code]...
View 3 Replies
Apr 2, 2009
add serial number requirement to Setup & deployment > setup wizard for VB.net application
View 16 Replies
Jan 13, 2010
How to make a setup project
View 6 Replies
Aug 7, 2010
I'm working in a small project i want to know how to make setup file for my project ,to run the project in another computers i try to make setup file from ,, add new project/setup and i added (Source Files and Primy output) to the setup files ,but it is not working in the another pcs can any one tell me how to make correct setup file to work in another pcs
View 11 Replies
Jan 8, 2011
I do one project in visual basic 2010.In visual basic 6 project can be make Package and deployment (setup file or install file) file using Package and deployment wizard.But in visual basic 2010 express edition does not have Package and deployment wizard.how to make Package and deployment (setup file or install file) file in visual basic 2010 project?
View 4 Replies
Dec 9, 2009
I am trying out the Visual Studio 2008 Standard Edition Setup and Deployment - Setup Wizard on a very simple VB 2008 app which includes a simple SQL Express dB. The build works fine and it installs on the target system ok. But when I go to run the application and add a new record for example, I get a "read-only" error indicating that the sql db is read-only. Yet none of the files in the folder are read-only. What is odd is that the folder that it was installed into "acts" like it is read only, yet it is not identified as such. If I move the .exe and db files out of that folder, (onto the desktop for example) it works just fine. Should I set up a post build event or something to make
View 6 Replies
Nov 12, 2010
I need to make a setup file for my vb.net project. I use sql server 2005 & VS 2008. I want to make setup file which is write in CD and use any another system.
View 1 Replies
Feb 8, 2009
How to make my project as a exe or setup
View 4 Replies
Nov 5, 2011
How to make a setup file of VB project application
View 1 Replies