Tagged Questions
The setup-deployment tag has no wiki summary.
15
votes
8answers
4k views
How to get started deploying PHP applications from a subversion repository?
I've heard the phrase "deploying applications" which sounds much better/easier/more reliable than uploading individual changed files to a server, but I don't know where to begin.
I have a Zend ...
9
votes
3answers
234 views
.Net Installer - Diff between .exe and .msi
I am deploying my application using the installer that i create using the Setup and Deployment project in visual studio. When i build the setup project i get a .exe and a .msi file.
I would like to ...
8
votes
4answers
2k views
Programmatically access All Users Start Menu
Does anyone know how to programmatically access the "All Users" Startup Menu?
In XP, located here:
C:\Documents and Settings\All Users\Start Menu\Programs\Startup
And in Windows 7, located here:
...
8
votes
4answers
7k views
c# Windows Service not appearing in services list after install
I've created a windows service in c#, using Visual Studio 2008
I pretty much followed this:
http://www.codeproject.com/KB/dotnet/simplewindowsservice.aspx
I created a setup project, as instructed to ...
7
votes
2answers
209 views
How to fix: MsTest-Subproject executes [DeploymentItem] only in Projectscope but not in Solutionscope
I have a vs2010-solution with 7 MsTest-Subprojects/Assemblies
One of the MsTest-Subprojects/Assemblies need a file "ReportEngine.config" and a directory "Report Files" to run
[TestClass]
...
7
votes
4answers
5k views
Visual Studio Deployment Project - Create shortcut to deployed executable
I realize there is likely a simple method to do this but how does one create a desktop shortcut to the executable deployed by an MSI built using a Visual Studio Deployment project?
I imagine I need ...
5
votes
4answers
110 views
How to ship winform application to client without .net?
I'm a total newbie in programming. I have question about the deployment of winform application. I have created a winform application. But I'm not sure if the users have installed .Net version 4. I ...
5
votes
2answers
652 views
Deploy MySQL server with VisualStudio 2005 application
I have a Visual Studio 2005 project (C#) that uses MySQL as a data storage engine, i would like to create a MSI package that install the app, and after install MySQL silently. I have been looking into ...
5
votes
1answer
194 views
How do I create a shortcut with the name set to [PRODUCTNAME] in a VS Setup and Deployment project?
In my VS Setup & Deployment project, I want to create a desktop shortcut whose name is set to the [ProductName] property. Instead of using the property, the setup program simply treats ...
5
votes
3answers
4k views
C# - windows service installer not registering service
I'm trying to use an installer for a Windows service, and would like to avoid using InstallUtil.exe. The installer appears to work correctly (the executable and dlls are in the correct directory), ...
4
votes
1answer
140 views
Windows Installer Bootstrappers - permissions
I have custom bootstrappers for SQL Server 2008 R2, .NET Framework 3.5, .NET Framework 4, etc. I am using Visual STudio 2010's Deployment project to deploy a .NET 4 application. I know these are going ...
4
votes
2answers
2k views
How do I change the .net framework bootstrapper package?
I have a C# project that I previously had targeting .Net 4.0 and now I want to target .Net 3.5, but I am getting this warning:
The version of the .NET Framework launch condition '.NET Framework 3.5' ...
4
votes
1answer
148 views
Localize installer with VS setup and deployment project?
I want to localize my installer but in Visual Studio 2008, Localization Property drop down does not contain the language. I think we could use code page but if users don't want to change locale in ...
4
votes
1answer
986 views
Getting Application path during the installation
im deploying an application and during the installation after the user choose where to install the app i want to get that path , im in a custom action already but i dont know how to get the ...
4
votes
2answers
1k views
How should a QA Environment be setup?
I am currently at a loss. We are moving from Dev-owned testing environment to a QA-owned one. I have worked in a QA-owned testing environment before. But I have never set one up from scratch. I ...
4
votes
5answers
4k views
Installing SQL Server and .NET Framework from a visual studio setup project
I have to do four things install .net framework 3.5 ,install SQL Server 2005 and run my sql script on the server and create the database and install my application how to do it in a single setup ...
4
votes
2answers
497 views
Vista Schedule Task From Setup
I'm deploying a C# application using the Setup Wizard project in Visual Studio 2008.
What is the simplest way for me to have Windows schedule my application to run at regular intervals (e.g. every ...
4
votes
4answers
3k views
Visual Studio Setup and Deployment build fails with no errors
I have a setup and deployment project that, on our build server, reports the following in the summary:
========== Rebuild All: 25 succeeded, 2 failed, 0 skipped ==========
I don't know what the ...
3
votes
2answers
75 views
github php project deployment
I have a project which has the codes in github (a private repo), I am looking for a good way to deployments for this.
I know capistrano, but not sure whether there are any better solutions, wanting ...
3
votes
3answers
47 views
Deployment kit suggestions [closed]
I wrote some application under .Net 4.0 and I am looking a way to deploy it.
I am after some kit that will be able to:
Put my files in some predefined folder,
Create all needed short cuts
Insert ...
3
votes
2answers
353 views
Can Visual Studio 2010 Setup and Deploy MSI installer work for .Net 4.0 Full applications over client?
My application requires (unfortunately) the Full 4.0 .Net framework. It appears there is no way through the VS Setup and Deploy projects to create and post a single file that ensures end users will ...
3
votes
1answer
571 views
Execute an script/application after installing (using VS Setup Project)
I need to execute a Console Application script after installing my application. Depending on the Windows version, it adds some data to the Registry.
How can I do this using a Visual Studio Setup ...
3
votes
1answer
502 views
How to deploy my compact edition database file (.sdf) in AppData folder and how to set the connection string?
Actually the first part of the question should be, where is the best place to deploy the .sdf file? If the user has selected Default at "User Account Control Settings" then if the compact edition ...
3
votes
1answer
1k views
How do we set Product name, Company name, etc. in Setup and Deployment Projects?
In my Windows application I set the Title, Product Name and Company Name in the assembly.
I added a setup and deployment project to the solution and added the primary output of the Windows ...
3
votes
2answers
988 views
HRESULT = '80004005' in Visual Studio 2008 Setup Project
When I try to build my setup project, I get the following error: "An error occurred while validating. HRESULT = '80004005'" (And Microsoft wins an award to clarity.)
I Google to find that a small ...
3
votes
1answer
461 views
How to create a runnable setup out of bootstrapper packages?
I would like to install a .NET 4.0 application on the user's machine that does not meet certain prerequisites.
I need to be able to define the installation order of these prerequisites in my ...
3
votes
1answer
564 views
Change userSettings during MSI installation
I am trying to modify the userSettings section (Properties.MyApp.Default) in the MyApp.exe.config file during the installatio of my WPF application using an MSI installer.
I basically implemented it ...
3
votes
0answers
645 views
Visual Studio Setup and Deployment - Installation Folder Selection
I have a VS2005 Setup & Deployment project and I've run into an issue that I would like assistance with.
Here is my issue:
The 'DefaultLocation' for my application is set to ...
3
votes
4answers
262 views
Is there an auto-upgrade library / framework available for windows that has similar features as the ones Sparkle for Mac OSX provides?
Our app is built using Qt and I would like to use a framework similar to Sparkle in our Windows version, to replace our custom solution. Is there anything like this ?
3
votes
1answer
5k views
Error 1001 in my Windows Service app setup project
I'm trying to install my Windows Service app using Visual Studio 2008 Setup and Deployment project. I have created a user account that has "Run as a Service" right and have set the ...
3
votes
2answers
3k views
Visual Studio Setup & Deployment: Adding Pre Requisits
How can I add into Setup & Deployment project that I want to the client has more components, like:
Microsoft Chart Controls
Microsoft SQL 2008 Express Edition (not 2005)
etc...
This options ...
3
votes
2answers
3k views
pre compile website in Setup & Deployment
Every time I use Setup & Deployment to create a new Web Setup, and run it (after edit all the nice things in the properties), the output is always a copy of the Web Site project...
How can I ...
2
votes
1answer
56 views
VS2010 Deployment Project - Prevent Reboot after installing .NET Framework
I'm using a Visual Studio 2010 Deployment Project for installing my utility. It has a prerequisite of the .NET 4 Client Framework. I'm using the iexpress tool to combine my setup.exe and MSI package ...
2
votes
2answers
173 views
Self-installer for Delphi win32 application
Are there any components or 3rd party software to create the self-installer Delphi application?
I want to make some kind of one-click installer which will copy the main exe file and few other files ...
2
votes
1answer
53 views
How to make the sql database installer setup in visual studio use Windows Authentication?
I have been following this tutorial to install the database script using a setup. But it only works for the SQL login credentials.
Walkthrough: Using a Custom Action to Create a Database at ...
2
votes
4answers
43 views
Two Setups For Same Project (visual studio 2008 , c#)
I have a Visual Studio project written in C#.
I want to have 2 different setups for different languages. For example, setup-en for step to be in English and setup-es for a Spanish installer.
I want ...
2
votes
1answer
73 views
Optional User's Desktop shortcut issue
(Using VS 2010 with a Visual Studio Installer project.)
I have added a 'Checkboxes(A)' dialog to the 'User Interface' under the 'Start | Welcome' dialog and set a checkbox with the property set to ...
2
votes
1answer
69 views
Visual Studio Setup Project - exclude web.config file if exist
How can I exclude web.config (or app.config) file in visual studio installer if it already exist on target machine (and folder)?
Normally, web.config and app.config file contains configuration ...
2
votes
4answers
59 views
Publishing Windows Form Application on Other Computer's IIS
I am trying to publish my Windows Form Application using ClickOnce on the IIS of other Computer (in the network) as my computer do not have IIS installed.
But while publishing it gives me error
...
2
votes
1answer
59 views
.Net Setup Project/Upgrades and maintaining separate versioned folders
I've seen several articles online where people show how to create windows setup projects, and then subsequently use the same setup project to deploy updates as in: Updates to setup projects. When ...
2
votes
1answer
43 views
Executable not requesting elevated when part of deployment project
I've created an executable that's called by another app for processes that require UAC elevated privileges. If I build this project with the below manifest it requests UAC fine, if I add this projects ...
2
votes
2answers
526 views
Free deployment for Visual Basic 2010 Express application that requires admin rights
I'm using VB.Net and Visual Basic Express 2010. I'm looking to create a single .exe install file to distribute my application. But in order for my application to work, I need to mark my app. as ...
2
votes
1answer
132 views
How does the Chrome Setup.exe work under the hood on a Windows PC?
Chrome has a very smooth installation process and I would like to imitate this setup behavior in my own application.
How can I leverage this in .NET? What are the limitations?
Is there any ...
2
votes
2answers
427 views
Inno Setup Execute a batch file before [Files] section
Currently my batch file is in [Run] section. I need my batch file to execute before the [Files] section. Is there a way to do this in Inno Setup? Currently the [Run] section always execute after ...
2
votes
2answers
89 views
Recognizing files with an application
After I save a file in a folder with correct extension, when I go back and look at it, the file is unrecognizable to the application. The file association appears to be lost.
I want Windows to be ...
2
votes
1answer
196 views
How do I add launch condition for Windows 7 and above in setup project (VS 2010)
I am creating a Setup project using VS 2010, where I want that setup should run only if it is running on Windows 7 or above operating system.
How can I add a launch condition for this in setup and ...
2
votes
4answers
88 views
combine c# program and stuff in just 1 program
I have pictures, gifs, textfiles, console applications needed by my c# program. They are all in the same directory with my c# program.
If they downloaded my program, it should be in a single ...
2
votes
4answers
82 views
Where can I put files such that they can be edited by non-administrators and accessed by all users?
I'm developing a Windows application that has a silent updater, so the executable needs to be able to be overwritten.
The application also loads some .dlls
I tried putting the executable and dlls in ...
2
votes
0answers
111 views
How can i remove files from File Editor in a project that was upgraded from VS2008 to VS2010?
I'm used VS2008 to create a setup and deployment project that installed files to certain folders.
i recently started using VS2010 and pulled this project into VS2010 and tried to continue working on ...
2
votes
1answer
116 views
Set ‘Allow service to interact with Desktop’ for a newly created windows service at install time
When using VS setup and deployment project for creating windows installer database file, how to set a windows service to ‘Allow service to interact with Desktop’. I am using ...