Tagged Questions

0
votes
1answer
19 views

How to include SqlExpresss 2008 (conveniently)

When I make a setup project in VS 2008, and select <Setup Project>, Properties, PreRequisites then i can select SqlExpress2005 to be automatically included. What I am looking for is a …
0
votes
1answer
42 views

Silent install installer with prerequisites

Is there a way to install silently (/s) an InstallShield (non-MSI) installer that requires its own prerequisites? In my case the prerequisite is Microsoft Visual C++ 2008 Redistributable. Its UI …
0
votes
1answer
53 views

Is there a way to require .NET 3.5 SP1 as a prerequisite for ClickOnce applications?

I have a ClickOnce application that won't run unless the client machine has .NET 3.5 SP1. When Stop() gets called on the Storyboard I'm running it crashes. After I installed SP1 on my client virtual …
0
votes
1answer
138 views

SQL Server as Prerequisite in VS Setup Project error in Windows Vista

Hello. I'm having problems installing SQL Server as prerequisite on my Visual Studio Setup application on Windows Vista. I' able to install it if I install Microsoft Visual C++ 2008 SP1 …
1
vote
1answer
98 views

Mathematics textbook for program analysis

Im going to do a course on program analyis (dataflow analysis, abstract interpretation etc). What mathematics textbook will cover all the prerequisite math for this topic?
3
votes
3answers
115 views

.Net 2.0 Prerequisite Installer

What is the best way to ensure that a user who wants to install my application has .Net 2.0 installed on their computer? I don't really want to use a normal setup project created using Visual Studio, …
7
votes
5answers
792 views

clickonce deployment issues

I'm working on a project deployed with clickonce, and i'm running through several issues. There are 2 components in my software solution : a desktop client which needs .Net framework 3.5 to run, and …
1
vote
3answers
992 views

Visual Studio Setup & Deployment: Adding Pre Requisits

Hi guys, 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... …
4
votes
2answers
1k views

Wix and .NET Framework (Pre-requisites)

How can I have my Wix package to download the required .NET Framework when it's not yet installed in the client's machine? I already have the condition to check for the installed .NET version but I'm …
1
vote
1answer
473 views

.NET Framework 3.5 SP1 Language Pack ClickOnce package

Visual Studio 2008 SP1 doesn't provide any language pack prerequisite for the .NET Framework 3.5 SP1. My research results are: it should be easy to create a custom bootstrapper package that installs …
4
votes
4answers
964 views

chained msi’s/Bootstrapper/prerequisite?

I have a few component msi packages that need to installed together to form the end application. The problem is: the components that make up the package can be updated and the component relaunched …
0
votes
2answers
1k views

How can I programmatically determine if the Visual C++ Runtime 8.0 is installed?

I have an InstallShield installation that uses custom actions that depends on the Visual C++ Runtime 8.0 sp1. In the past, I was able to install the runtime using the merge module provided by …
0
votes
4answers
500 views

Installing .NET Framework with my app using MSI

I have created a setup project in VS2008. My WinForms app uses .NET 2.0, so I chose .NET 2.0 Prerequisity and built the setup project. When I run my Setup.msi on a clean PC, it correctly detects that …
0
votes
3answers
676 views

Pre-requisite and Launch condition

Hi, Iam having a small problem regarding pre-requisites and launch condition for setup. Example, my setup is having one launch condition for "Software1" and one pre-requisite for "Software2". So, if …
1
vote
2answers
737 views

Specifying a VC++ Redistributable version for ClickOnce prerequisite

My ClickOnce application uses a third party tool that requires the Visual C++ 2005 redistributable. The third party tool will not work if only the VC++ 2008 redistributable is installed. However, in …