1

We have a C# 4.0 (VS2010) application that requires installation of a MYSQL (driver) Connector)... We don't want the user to manually install it.. Is there a way to do this programmatically? through a DLL COM Registration etc?

What are the possible solutions?

2 Answers 2

3

According to the official MySQL site, there is a zip package available, which includes the source files of their installer. You should be able to include that installer in a WiX project and build a convenient solution by installing it via the WiX toolset programatically.

You could also use the MySQL conector.msi which can be installed in unattended mode via the commandline switch /quiet:

msiexec /package conector-net.msi /quiet
Sign up to request clarification or add additional context in comments.

Comments

0

why not create a regular install for that? you can create setup project with Visual Studio or maybe use NSIS setup tool.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.