how to work with sql

rommel

New member
Local time
Tomorrow, 04:26
Joined
Apr 22, 2009
Messages
5
hello. I am new in this forum. I dont know much about sql server. I would like to know if there is a way to install sql server without going to its installer?
 
Why do you need to install SQL Server without using the installer?
 
for convenience purposes of the one that will install the program.

I want to know how quickbooks install their server during the process of installation of their program. If this is also possible in access. thanks.
 
You should do a search on MSI installations from Visual Basic, something like the following example:
Code:
[COLOR="Navy"]Dim[/COLOR] oMSI [COLOR="navy"]As Object

Set[/COLOR] oMSI = CreateObject("WindowsInstaller.Installer")

oMSI.UILevel = 3 [COLOR="DarkGreen"]' Basic UI[/COLOR]
oMSI.InstallProduct "C:\MyInstallFolder\SQLServer2005_SSMSEE.msi"
 

Users who are viewing this thread

Back
Top Bottom