shell 静默安装mysql,如何静默安装SQL Server 2012本地数据库

I know you people are all updated like me, wants to work with visual studio 2012 and there is passion in your heart for better performance in size and time.

But the problem arise with sql server 2008 express , it is very slow in installation and Microsoft created sql local db 2012 for local databases on end user computers to be very fast in installation.

So what now?

The problem is vs 2010 is not supporting new prerequisites, So which installer can install this msi package. i searched 7 days for this. nothing! they just install sql server 2012 express that is so big and bad for user.

So i find a way to instal it by system.process, but it can't be instal silently and that's because license, i tried so much, without any result, can anyone help me here?

my code:public bool fncInstal32(string sMSIPath)

{

try

{

Console.WriteLine("Starting to install application");

Process process = new Process();

process.StartInfo.FileName = "msiexec.exe";

process.StartInfo.Arguments = string.Format("/qf /i \"{0}\" ALLUSERS=1 IACCEPTSQLNCLILICENSETERMS=YES", sMSIPath);

process.Start();

process.WaitForExit();

Console.WriteLine("Application installed successfully!");

return true; //Return True if process ended successfully

}

catch

{

Console.WriteLine("There was a problem installing the application!");

return false; //Return False if process ended unsuccessfully

}

}

When i change qf to qb it won't install silently!! why?

qf= full gui

qb= silent mode

解决方案ProcessStartInfo inf = new ProcessStartInfo("SqlLocalDB.msi", "/qn IACCEPTSQLLOCALDBLICENSETERMS=YES") { UseShellExecute = true, WindowStyle = ProcessWindowStyle.Normal };

System.Diagnostics.Process.Start(inf);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值