Questions tagged [setup-deployment]

Microsoft Setup and Deployment Wizard for Visual Studio or the .NET framework

API documentation

Related links

820 questions
0
votes
1 answer

Install two setup in one click

I have two setup files i want to make them in one set up that user click on one setup 2nd one run automatically... like I have setup1.exe and setup2.exe how to create a setup which will run both of them setup one after one in one setup…
Saad Sheikh
  • 29
  • 1
  • 7
0
votes
1 answer

Changing the connection String in App.config after Installing an Application & application should accept the changes mande in config file

Question: After publish and installed an windows application i would like to change the connection string present in the App.config file ( 3 Tire-Architecture). the changed connection string should be understood by already installed application. How…
Rahul Uttarkar
  • 3,367
  • 3
  • 35
  • 40
0
votes
1 answer

how to setup drupal site locally and then move to production server....

My client have hosting services that has low bandwidth allocation, so He wants me to setup Drupal website to my local machine and after finalize, move to server. As I'm not that much familiar with drupal database structure and how to move drupal…
0
votes
4 answers

Visual Studio 2008 + Windows 7: Setup Projects hanging

We have Visual Studio 2008 Team System (SP1) installed on Windows 7 on a 64-bit desktop machine. Our solutions contain setup and deployment projects (vdproj). When Visual Studio loads, it hangs trying to load the setup projects. This also happens…
Russell
  • 17,481
  • 23
  • 81
  • 125
0
votes
1 answer

Reusing InstallShield prerequisites

I'm looking to have a release layout with multiple installers but with a single source for prerequisites, in the following structure: \Product1\setup.exe \Product2\setup.exe \Product3\setup.exe \Redist The goal is to launch each prerequisite from…
0
votes
1 answer

Create Setup from more one project

I have project which is combination of 3 projects.one project is main and other are for plugin etc.Project is created in VS2010 with `VC++. Want to create the setup for this project. How it can be done so that all the other project are also…
Dee Raghav
  • 39
  • 1
  • 8
0
votes
1 answer

Windows form Setup unable to load dll

I have an windows application which uses third party dll Velleman.dll it works fine. when i created setup file even it works fine. but when the setup file run in other system (then one in build) it throws the exception : Unable to load DLL…
Suchith
  • 1,276
  • 17
  • 39
0
votes
0 answers

How to check any condition before installation process takes place?

I am making a setup of windows application. In setup process i added a screen using user interface dialog properties and taking some input from user and want to put condition like this: if(value_is_correct) { Continue_setup; } else { …
Mogli
  • 1,972
  • 11
  • 34
  • 67
0
votes
2 answers

How to check other software is installed when installing my software

I want to create a setup to deploy software.My first window of installation is to check master software(other software) is installed in that computer,because i need to add a supporting file to master software's installation folder. Is that possible…
Nikhil K S
  • 806
  • 1
  • 13
  • 27
0
votes
1 answer

How can i call a dll that import another dll using NSIS system plugin

I am newbie of NSIS installer. I gotta say NSIS deployment is awesome . but lately I am encountered a problem. I am using NSIS script to call let's say A.dll which compiled using Visual C++ and export some C functions. and A.dll import B.dll. So I…
fr33m4n
  • 542
  • 2
  • 13
  • 31
0
votes
1 answer

setup and installation issue

how to resume installation after restarting pc in c# in Setup and Deployment project?
0
votes
1 answer

How to reduce the size of winform installer setup file?

I am working with win form C# application. My application required prerequisites like 1.Dot net framework 4.0 =48 MB 2.Sql server Express =186 MB 3.Microsoft sync framework -20 MB And Application installer size =8 MB Now,installer size is 270 MB…
0
votes
1 answer

"Error in saving file". Exception thrown while running the EXE

I have developed a C# windows application. It reads data from an excel file and writes to a new excel work book. Created an EXE for this WinApp. If i run the application or EXE from the local machine, its working fine. Saving the new excel into my C…
Venil
  • 83
  • 2
  • 4
  • 9
0
votes
1 answer

How to embed ODP.NET Oracle Data Client with Windows Setup

Is there anyway to embed System.Data.OracleClient on Client Machine after running setup? I tried to add file after signing it yet gives error: System.Data.OracleClient requires Oracle client software version 8.1.7 or greater It is not practical…
Volatil3
  • 14,253
  • 38
  • 134
  • 263
0
votes
1 answer

How to prevent uninstall when the application is running ?

I want to stop uninstall an application when it is running. I want to do it by visual studio setup and deployment. I have added the below code in installer class and call then in action list but it is not working. public static bool…