C#系统安装程序.doc_第1页
C#系统安装程序.doc_第2页
C#系统安装程序.doc_第3页
C#系统安装程序.doc_第4页
C#系统安装程序.doc_第5页
已阅读5页,还剩8页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

DotNet(C# )系统安装程序制作StepByStep(包括FrameWork安装和数据库安装配置)2007年11月25日 星期日 16:14首先需要把你要建立的数据库表结构导出来,使用slqserver的导出向导导出表结构,先保存到db.sql文件中吧。 可选步骤:安装Framework引导程序插件。安装了这个插件你制作的安装包就通过 Microsoft Visual Studio .NET 2003 引导程序插件,您可以轻而易举地创建安装程序,将 .NET Framework 1.1随您的应用程序一起重新分发。引导程序插件 PluginInstaller.msi 的下在地址: /downloads/details.aspx?FamilyID=627921a0-d9e7-43d6-a293-72f9c370bd19&displaylang=zh-cn第一步:创建部署项目 1. 在“文件”菜单上指向“添加项目”,然后选择“新建项目”。 2. 在“添加新项目”对话框中,选择“项目类型”窗格中的“安装和部署项目”,然后选择“模板”窗格中的“安装项目”。在“名称”框中键入 Setup。 3. 单击“确定”关闭对话框。 4. 项目被添加到解决方案资源管理器中,并且文件系统编辑器打开。第二步:创建安装程序类 1. 在“文件”菜单上指向“新建”,然后选择“项目”。 2. 在“新建项目”对话框中,选择“项目类型”窗格中的“项目”,然后选择“模板”窗格中的“类库”。在“名称”框中键入 DBCustomAction。 3. 单击“打开”关闭对话框。 4. 从“项目”菜单中选择“添加新项”。 5. 在“添加新项”对话框中选择“安装程序类”。在“名称”框中键入 DBCustomAction。 6. 单击“确定”关闭对话框。(代码附后)第三步:将项目的输出添加到部署项目中 1. 在“文件系统编辑器”中,选择“应用程序”文件夹。在“操作”菜单上,指向“添加”,然后选择“项目输出”。 2. 在“添加项目输出组”对话框中,选择“项目”下拉列表中你的项目。 3. 单击“确定”关闭对话框。 4. 从列表中选择“主输出”,然后单击“确定”。第四步:创建自定义安装对话框 1. 在解决方案资源管理器中选择“Setup”项目。在“视图”菜单上指向“编辑器”,然后选择“用户界面”。 2. 在用户界面编辑器中,选择“安装”下的“启动”节点。在“操作”菜单上,选择“添加对话框”。 3. 在“添加对话框”对话框中,选择“许可协议”对话框,然后单击“确定”关闭对话框。 4. 在“添加对话框”对话框中,选择“文本框 (A)”对话框,然后单击“确定”关闭对话框。 5. 在“操作”菜单上,选择“上移”。重复此步骤,直到“文本框 (A)”对话框位于“安装文件夹”节点之上。 6. 在“属性”窗口中,选择 BannerText 属性并键入:安装数据库.。 7. 选择 BodyText 属性并键入:安装程序将在目标机器上安装数据库。 8. 选择 Edit1Label 属性并键入:数据库名称:。 9. 选择 Edit1Property 属性并键入 CUSTOMTEXTA1。 10. 选择 Edit1Value 属性并键入:GsCrm。 11. 选择 Edit2Label 属性并键入:服务器名:。 12. 选择 Edit2Property 属性并键入 CUSTOMTEXTA2。 13. 选择 Edit2Value 属性并键入:(local)。 14. 选择 Edit3Label 属性并键入:用户名:。 15. 选择 Edit3Value 属性并键入:sa。 16. 选择 Edit3Property 属性并键入 CUSTOMTEXTA3。 17. 选择 Edit4Label 属性并键入:sa用户密码:。 18. 选择 Edit4Property 属性并键入 CUSTOMTEXTA4。第五步:创建自定义操作 1. 在解决方案资源管理器中选择“Setup”项目。在“视图”菜单上指向“编辑器”,然后选择“自定义操作”。 2. 在自定义操作编辑器中选择“安装”节点。在“操作”菜单上,选择“添加自定义操作”。 3. 在“选择项目中的项”对话框中,双击“应用程序文件夹”。 4. 选择“主输出来自 DBCustomAction(活动)”项,然后单击“确定”关闭对话框。 5. 在“属性”窗口中,选择 CustomActionData 属性并键入 /dbname=CUSTOMTEXTA1 /server=CUSTOMTEXTA2 /user=CUSTOMTEXTA3 /pwd=CUSTOMTEXTA4 /targetdir=TARGETDIR。附/targetdir=targetdir是安装后的目标路径,为了在dbcustomaction类中获得安装后的路径,我们设置此参数。另外,安装后的路径也可以通过Reflection得到:Dim Asm As System.Reflection.Assembly = _System.Reflection.Assembly.GetExecutingAssemblyMsgBox(Asm.Location)第六步:添加db.sql以及你需要的其他文件到项目中,然后就可以打包了。还 有最重要的一个问题,当时困扰了我三个多小时,就是用.net这个程序打包的程序,安装过程用户所选择的安装路径中是不能含有空格的。为什么呢?原来是 sql server的osql的执行命令行方式的时候,如果你的安装路径中含有空格的话,那个命令行是不能正确的执行的。“osql -U userId -P password -d dbname -i c:testdb.sql”另外安装的时候也可以直接修改安装后的app.config来完成你的配置,李洪根的文章中有相关介绍。DBCustomAction.csusing System;using System.Data.SqlClient;using System.Collections;using System.ComponentModel;using System.Configuration.Install;namespace DBCustomAction/ / DBCustomAction 的摘要说明。/ RunInstaller(true)public class DBCustomAction : System.Configuration.Install.Installer / / 必需的设计器变量。 / private System.ComponentModel.Container components = null; public DBCustomAction() / 该调用是设计器所必需的。 InitializeComponent(); / TODO: 在 InitializeComponent 调用后添加任何初始化 / / 清理所有正在使用的资源。 / protected override void Dispose( bool disposing ) if( disposing ) if(components != null) components.Dispose(); base.Dispose( disposing ); #region 组件设计器生成的代码 / / 设计器支持所需的方法 - 不要使用代码编辑器修改 / 此方法的内容。 / private void InitializeComponent() components = new System.ComponentModel.Container(); #endregion private void ExecuteSql(string connStr,string DatabaseName, string Sql) SqlConnection conn = new SqlConnection(connStr); SqlCommand cmd = new SqlCommand(Sql, conn); conn.Open(); conn.ChangeDatabase(DatabaseName); try cmd.ExecuteNonQuery(); finally conn.Close(); public override void Install(System.Collections.IDictionary stateSaver) base.Install(stateSaver); try /-建立数据库- string connStr = string.Format(data source=0;user id=1;password=2;persist security info=false;packet size=4096, this.Context.Parametersserver, this.Context.Parametersuser, this.Context.Parameterspwd); ExecuteSql(connStr, master, CREATE DATABASE + this.Context.Parametersdbname); System.Diagnostics.Process sqlProcess = new System.Diagnostics.Process(); sqlProcess.StartInfo.FileName = osql.exe; sqlProcess.StartInfo.Arguments = string.Format( -U 0 -P 1 -d 2 -i 3db.sql, this.Context.Parametersuser, this.Context.Parameterspwd, this.Context.Parametersdbname, this.Context.Parameterstargetdir); sqlProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; sqlProcess.Start(); sqlProcess.WaitForExit(); /等待执行 catch(Exception e) Console.Write(e.ToString(); finally 第六步:添加db.sql以及你需要的其他文件到项目中,然后就可以打包了。还 有最重要的一个问题,当时困扰了我三个多小时,就是用.net这个程序打包的程序,安装过程用户所选择的安装路径中是不能含有空格的。为什么呢?原来是 sql server的osql的执行命令行方式的时候,如果你的安装路径中含有空格的话,那个命令行是不能正确的执行的。“osql -U userId -P password -d dbname -i c:testdb.sql”另外安装的时候也可以直接修改安装后的app.config来完成你的配置,李洪根的文章中有相关介绍。DBCustomAction.csusing System;using System.Data.SqlClient;using System.Collections;using System.ComponentModel;using System.Configuration.Install;namespace DBCustomAction/ / DBCustomAction 的摘要说明。/ RunInstaller(true)public class DBCustomAction : System.Configuration.Install.Installer / / 必需的设计器变量。 / private System.ComponentModel.Container components = null; public DBCustomAction() / 该调用是设计器所必需的。 InitializeComponent(); / TODO: 在 InitializeComponent 调用后添加任何初始化 / / 清理所有正在使用的资源。 / protected override void Dispose( bool disposing ) if( disposing ) if(components != null) components.Dispose(); base.Dispose( disposing ); #region 组件设计器生成的代码 / / 设计器支持所需的方法 - 不要使用代码编辑器修改 / 此方法的内容。 / private void InitializeComponent() components = new System.ComponentModel.Container(); #endregion private void ExecuteSql(string connStr,string DatabaseName, string Sql) SqlConnection conn = new SqlConnection(connStr); SqlCommand cmd = new SqlCommand(Sql, conn); conn.Open(); conn.ChangeDatabase(DatabaseName); try cmd.ExecuteNonQuery(); finally conn.Close(); public override void Install(System.Collections.IDictionary stateSaver) base.Install(stateSaver); try /-建立数据库- string connStr = string.Format(data source=0;user id=1;password=2;persist security info=false;packet size=4096, this.Context.Parametersserver, this.Context.Parametersuser, this.Context.Parameterspwd); ExecuteSql(connStr, master, CREATE DATABASE + this.Context.Parametersdbname); System.Diagnostics.Process sqlProcess = new System.Diagnostics.Process(); sqlProcess.StartInfo.FileName = osql.exe; sqlProcess.StartInfo.Arguments = string.Format( -U 0 -P 1 -d 2 -i 3db.sql, this.Context.Parametersuser, this.Context.Parameterspwd, this.Context.Parametersdbname, this.Context.Parameterstargetdir); sqlProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; sqlProcess.Start(); sqlProcess.WaitForExit(); /等待执行 catch(Exception e) Console.Write(e.ToString(); finally C#安装项目文件,自动读取参数的安装类(自动安装SQL SERVER数据库)using System;using System.Collections;using System.ComponentModel;using System.Configuration.Install;using System.IO;using System.Data.SqlClient;using System.Reflection;namespace DBCustomAction/ / DBCustomAction 的摘要说明。/ RunInstaller(true)public class DBCustomAction : System.Configuration.Install.Installer/ / 必需的设计器变量。/ private System.ComponentModel.Container components = null;private string strPass = ;public DBCustomAction()/ 该调用是设计器所必需的。InitializeComponent();/ TODO: 在 InitComponent 调用后添加任何初始化#region Component Designer generated code/ / 设计器支持所需的方法 - 不要使用代码编辑器修改/ 此方法的内容。/ private void InitializeComponent()#endregionpublic override void Install(System.Collections.IDictionary stateSaver)/入口strPass = this.Context.ParametersstrPass;AddDBTable(RequestSys);/RequestSys为数据库名称private string GetSql(string strName)try/ Get the current assembly.Assembly Asm = Assembly.GetExecutingAssembly();/ Resources are named using a fully qualified nameStream strm = Asm.GetManifestResourceStream(Asm.GetName().Name + . + strName);/Read the contents of the embedded

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论