我想使用C#创建一个SQL Server实例。我需要能够编写C#代码来执行此操作。
答案 0 :(得分:1)
是即可。但是你需要使用安装程序的command prompt options。
来实现使用System.Diagnostics.Process.Start(String, String)
方法启动安装程序,将相应路径传递给安装文件和正确的命令行参数:
var installer = System.Diagnostics.Process.Start(@"d:\setup.exe", "/q ....."); installer.WaitForExit();