setup-deployment

Visual Studio not finding my Azure subscriptions

独自空忆成欢 提交于 2019-11-27 03:52:22
问题 I have a working Azure account with various services already running. I receive monthly bills for these. Now, I created a workerrole in Visual Studio that I want to deploy. I get the "Publish Windows Azure Application" screen that asks me to sign in. After I sign in, I get the message that I don't have a subscription: "Sorry but we didn't find any Windows Azure Subscriptions associated with your account. You can sign in with a different account or sign up for a Windows Azure subscription".

Regarding silent installation using Setup.exe generated using Installshield 2013 (.issuite) project file

末鹿安然 提交于 2019-11-27 02:17:46
I have a setup.exe file generated using installshield suite project (.issuite) file. For an admin or a general user with sufficient privileges, one of our IT admin is able to do a silent installation using - setup.exe /silent However, when tried to push the installs using SCCM (System Center Configuration Manager) or using PSEXEC (both use System account to install), the install fails. The install exist with an exit code 3. I did some research around this and found out that system account needs a setup.iss (answer/response) file to write to / read from. Did not quite understand what it means.

Visual Studio Setup Project conditional if File Exists

五迷三道 提交于 2019-11-26 20:57:09
问题 I have a Setup/Deployment Project for my Application and it outputs certain files (*.dll, *.dat) to the Application Folder. I would like a condition to be set to check if a file currently exists or not. If it doesn't, write it but if it does, don't install it from the package. Is it possible? The file is called "database.dat" and under the Properties, I see a "Condition" attribute, but I'm not familiar with what to put in there. Any input is greatly appreciated. Thanks in advance. Edit:

Getting Application path during the installation

雨燕双飞 提交于 2019-11-26 18:24:33
问题 I'm deploying an application and during the installation after the user chooses where to install the app, I want to get that path; I'm in a custom action already but i don't know how to get the application path where it's going to be installed ! It's Windows Forms and I'm developing using Visual studio 2010 "C#". And I'm using the default deploying tool... Any idea? thanks in advance... 回答1: The class your custom action is in should inherit from System.Configuration.Installer.Installer. This

Windows Service not appearing in services list after install

房东的猫 提交于 2019-11-26 11:57:31
问题 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 in the article, and ran it... it installs my service to c:\\program files\\product etc.... however, it does not then appear in the services list.. What am i missing? 回答1: The most important part of the article you linked, is here To add a custom action to the setup project 1.In Solution Explorer,

Regarding silent installation using Setup.exe generated using Installshield 2013 (.issuite) project file

南楼画角 提交于 2019-11-26 09:04:29
问题 I have a setup.exe file generated using installshield suite project (.issuite) file. For an admin or a general user with sufficient privileges, one of our IT admin is able to do a silent installation using - setup.exe /silent However, when tried to push the installs using SCCM (System Center Configuration Manager) or using PSEXEC (both use System account to install), the install fails. The install exist with an exit code 3. I did some research around this and found out that system account