setup-project

Create setup that run without admin privileges using VS 2015 Professional

穿精又带淫゛_ 提交于 2021-02-16 18:25:09
问题 I'm trying to create a setup file (MSI) that runs without admin privileges. for that, I've tried the bellow option. I've set InstallAlluser property to false as bellow. Also set InstallAllUsersVisible to false I've also changed Default location with [AppDataFolder] After changes above properties It still required Administrator permission to execute MSI file that created using Setup project. Can you please help me to resolve this issue. Thanks in Advance. 回答1: When you open your MSI with Orca

What is the simplest way to reboot after a Setup Project installation completes?

本秂侑毒 提交于 2021-02-08 15:47:06
问题 I hate to ask this question as I am aware that there are plenty of questions about it already, some coming very close to what I am wanting to do: Reboot system from Setup project prompt to reboot computer after installation completed The first one seems to suggest that it is impossible without external software but the second question gives an answer that seems exactly what I want. But I don't really understand what it's referring to when it's suggested to set REBOOT=Force . I read through

How to “combine” two static libraries?

浪子不回头ぞ 提交于 2021-02-08 09:54:38
问题 so I know that you can't depend a static library to another one but i was wondering if there is something that lets me combine them together. I am trying to setup a game engine project file in vstudio 2019 and i want to compile it as a static library. I need in some way to combine it with SDL 2 library because I want create some systems using SDL. Is there a way I can do that? Thanks for the help. 回答1: When creating a library, you can specify "Additional dependencies" in the "Librarian"

Use .wid files with Visual Studio 2017

风格不统一 提交于 2021-02-08 03:06:04
问题 I have created a Setup Project with Visual Studio 2017 Professional ( .vdproj file ). I would like to use a Password Dialog as suggested in this page: https://www.codeproject.com/Tips/659367/Password-Dialog-for-Visual-Studio-Deployment-Proje This tutorial has been written for Visual Studio 2012 and it's working great, putting the file VsdUsernamePasswordDlg.wid into this folder: "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\Deployment\VsdDialogs\1033" But I can't find the

Use .wid files with Visual Studio 2017

橙三吉。 提交于 2021-02-08 03:05:52
问题 I have created a Setup Project with Visual Studio 2017 Professional ( .vdproj file ). I would like to use a Password Dialog as suggested in this page: https://www.codeproject.com/Tips/659367/Password-Dialog-for-Visual-Studio-Deployment-Proje This tutorial has been written for Visual Studio 2012 and it's working great, putting the file VsdUsernamePasswordDlg.wid into this folder: "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools\Deployment\VsdDialogs\1033" But I can't find the

setup file failing debugging enabled

折月煮酒 提交于 2021-02-05 12:07:36
问题 I have used Setup Project before with no issue the project did not have SQLite DB as a dependency I am now trying to make a EXE or msi file for a project that has SQLite included as System.Data.SQLite.Core and the project is a WinForms with a WPF TextBox with this code below Public Sub LoadTB() Dim tb As Windows.Controls.TextBox = New Windows.Controls.TextBox() ElementHost1.Child = tb tb.SpellCheck.IsEnabled = True AddHandler tb.TextChanged, AddressOf tb_TextChanged tb.TextWrapping = Windows

setup file failing debugging enabled

允我心安 提交于 2021-02-05 12:07:17
问题 I have used Setup Project before with no issue the project did not have SQLite DB as a dependency I am now trying to make a EXE or msi file for a project that has SQLite included as System.Data.SQLite.Core and the project is a WinForms with a WPF TextBox with this code below Public Sub LoadTB() Dim tb As Windows.Controls.TextBox = New Windows.Controls.TextBox() ElementHost1.Child = tb tb.SpellCheck.IsEnabled = True AddHandler tb.TextChanged, AddressOf tb_TextChanged tb.TextWrapping = Windows

setup file failing debugging enabled

假如想象 提交于 2021-02-05 12:07:06
问题 I have used Setup Project before with no issue the project did not have SQLite DB as a dependency I am now trying to make a EXE or msi file for a project that has SQLite included as System.Data.SQLite.Core and the project is a WinForms with a WPF TextBox with this code below Public Sub LoadTB() Dim tb As Windows.Controls.TextBox = New Windows.Controls.TextBox() ElementHost1.Child = tb tb.SpellCheck.IsEnabled = True AddHandler tb.TextChanged, AddressOf tb_TextChanged tb.TextWrapping = Windows

Creating a Setup Project for multiple applications in Visual Studio

感情迁移 提交于 2021-01-28 12:05:22
问题 Suppose I have two application - App A and App B which are already created and are working fine. Now I want to create a new setup project which can be used to create a setup file for both of the applications. Can this be possible of creating a setup file for installing both apps? Also I want to perform the installation in such a way that - once the App A is installed then only the installation of App B should begin. Thanks. 回答1: With VS setup projects you can create one setup (I assume you

How Can I Create a Setup File for multiple applications in Visual Studio?

回眸只為那壹抹淺笑 提交于 2021-01-28 06:06:51
问题 I have a C# application and I have some applications like MySQL, MariaDB etc. that I use with my C# application.I want to make a SETUP file that contains my C# application's EXE file and other applications' (MySQL, MariaDB ..) setup files in one setup file.That setup file will install all of these applications with one setup file. I have tried with Visual Studio Setup Wizard but I can't manage.Can I do that in Visual Studio?If I can, How can I do that?Should I download a visual studio