Questions tagged [setup-deployment]

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

API documentation

Related links

820 questions
7
votes
2 answers

Python: How to script virtual environment building and activation?

I would like to write a python script that does 3 things : build a virtual environment with python3 activate this new virtual env. ( bash: source myvirtenv/bin/acticate) install packages with a requirements.txt (bash: pip install -r ) In my…
Remi-007
  • 145
  • 1
  • 11
7
votes
2 answers

How to include INF driver install into VS Installer project

I use a Setup and Deploy project in Visual Studio 2008 to install my c# project. I have a USB driver that i can manually install by right clicking the .inf file and choosing Install. I think that if i had a .exe to install the driver, i could…
7
votes
1 answer

Where to find CabWiz.exe

I am resetting up my development machine and I cannot seem to remember where I got CabWiz.exe (used for creating installation cab files for windows mobile). Is that on MSDN Downloads in some package? Or somewhere else? Does anyone know? I…
Vaccano
  • 78,325
  • 149
  • 468
  • 850
7
votes
3 answers

How to make trial period for my python application?

I have made a desktop application in kivy and able to make single executable(.app) with pyinstaller. Now I wanted to give it to customers with the trial period of 10 days or so. The problem is how to make a trial version which stop working after 10…
Kumar Roshan Mehta
  • 3,078
  • 2
  • 27
  • 50
7
votes
5 answers

Installshield The specified File key not found in the File table

I've packaged my WinForms app with the Visual Studio Installshield Limited Edition wizard. When installing the app, I get this error during installation. Error 2715. The specified File key ('myappname.xml_serializa') not found in the File table Any…
Cameron Castillo
  • 2,712
  • 10
  • 47
  • 77
7
votes
5 answers

MSIEXEC not installing an MSI setup if /QUIET parameter is used to suppress the UI

I have an MSI installer that was created using Install Shield Limited Edition, I can install it normally by directly running it. I can also install it using MSIEXEC if I do not use the /QUIET parameter, but if I use the /QUIET parameter, the…
teenup
  • 7,459
  • 13
  • 63
  • 122
7
votes
2 answers

Failed to decrypt using provider 'RsaProtectedConfigurationProvider'?

In my windows application i am trying to encrypt connection string section of app.config file, connection string part of my app.config file is
Mogli
  • 1,972
  • 11
  • 34
  • 67
6
votes
1 answer

WPF Applicationdeployment.isnetworkdeployed is always return false

i used ClickOnce publish to deploy my WPF applicaiton when i try to update manually the ApplicationDeployment.IsNetworkDeployed is always return false so it doesnt check for the updated. it cant able to find the currentdeployment settings am using…
Spen D
  • 4,225
  • 9
  • 39
  • 47
6
votes
2 answers

How to package .NET Core 3 in Visual Studio Installer Project

So, I want to create an installer for my .NET Core 3 based C# project. I installed the Installer Projects extension for Visual Studio 2019 and created a new Installer project within my solution. After some trying around with different settings, I…
Andreas P.
  • 115
  • 2
  • 9
6
votes
2 answers

Create Event Log Source as part of installation - windows forms app, vs deployment project

I have a vb.net windows form app that I am deploying as using the visual studio deployment project. The app needs to write event logs to the application log in the event viewer. For reasons explained here I need to create the event source during…
6
votes
2 answers

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 it but i couldn't find much info. I have…
SubniC
  • 9,807
  • 4
  • 26
  • 33
6
votes
1 answer

Visual Studio Deployment Project: Conditional Files Depending on Build Configuration

I wonder if it is possible to build different installers which include different files for one deployment projects purely depending on the build configuration (Debug/Release)? I want to do this because: During debug stage, we'd like to install some…
6
votes
2 answers

Can I use Heroku buildpacks to deploy to my own local server?

I really like the deployment architecture of Heroku. Is it possible to take one of Heroku's buildpacks (e.g. Heroku's buildpack for Ruby) to deploy my app to my own server (local Linux or EC2 running Ubuntu), using the familiar command linux> git…
Jay Godse
  • 15,163
  • 16
  • 84
  • 131
6
votes
2 answers

How to include dependencies in Setup and Deployment Project?

I have a solution that consists of 3 projects. I've created a deployment project it is only including the dependencies from one of the projects in my solution. What I've done so far is in my Setup and Deployment project, I right-clicked…
5
votes
2 answers

Deploy and execute something with Java on UNIX

I have a Java process (daemon) which is running. This process is used like a service. With that service I can download a signed zip archive from a trusted server. After I unpack the ZIP archive I want to execute a binary in the "unpacked"…
alexvetter
  • 1,998
  • 2
  • 16
  • 42
1 2
3
54 55