R rommel New member Local time Tomorrow, 04:05 Joined Apr 22, 2009 Messages 5 Apr 23, 2009 #1 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?
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?
B ByteMyzer AWF VIP Local time Today, 13:05 Joined May 3, 2004 Messages 1,409 Apr 23, 2009 #2 Why do you need to install SQL Server without using the installer?
R rommel New member Local time Tomorrow, 04:05 Joined Apr 22, 2009 Messages 5 Apr 23, 2009 #3 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.
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.
B ByteMyzer AWF VIP Local time Today, 13:05 Joined May 3, 2004 Messages 1,409 Apr 23, 2009 #4 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"
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"