程序打包

Visual Studio Installer

VS2010程序打包操作

InstallShield

InstallShield使用完全教程

探索InstallShield——制作一个完整的应用程序安装实例

一个完整的Installshield安装程序实例

从Visual Studio 2012开始,微软就把自家原来的安装与部署工具彻底废掉了,转而让大家去安装使用第三方的打包工具“InstallShield Limited Edition for Visual Studio”,注意这个版本是免费的,只需要邮件注册下,就会有要注册码。

Visual Studio InstallShield

Visual Studio InstallShield

Inno

Inno setup 简单打包教程

官网上下载的不能新建中文项目,所以还是到网上找汉化版的吧。

"ISCC.exe" "%~dp0..\Inno Setup\PeriodicalEditor.iss"

语言包列表

http://www.jrsoftware.org/files/istrans/

自定义安装目录:

DefaultDirName={code:GetPath}

[Code]
//获取安装路径
function GetPath(Param: String): String;
var
strPath: String;
begin
  strPath := ExpandConstant('{pf}\{#MyAppName}');  
  if 
  RegQueryStringValue(HKEY_LOCAL_MACHINE,'Software\Microsoft\Windows\CurrentVersion\App Paths\XSX.exe', 'Path', strPath)
  then
  begin
  //MsgBox('安装路径为: ' + strPath, mbInformation, MB_OK)
  strPath:=strPath+'\Plugins\PeriodicalEditor\' 
  //strPath := ExtractFilePath(strPath);
  end;
Result := strPath;
end;

advanced installer

Advanced Installer汉化版教程

NSIS

NSIS简介

使用NSIS制作安装包

NSIS安装制作基础教程[初级篇]

NIS Edit

NSIS: Nullsoft Scriptable Install System

http://www.nsisfans.com/

NSIS UI 美化类插件分享

www.aceui.cn-nsSkinEngine

nsSkinEngine_NSIS_demo

牛牛安装包界面美化控件 [nsNiuniuSkin]

http://www.ggniu.cn/download.htm

WixToolSet

http://wixtoolset.org/

http://wixtoolset.org/releases/

https://www.firegiant.com/wix/tutorial/

WIX安装图文并茂简易说明

http://www.cnblogs.com/stoneniqiu/category/522235.html

https://www.firegiant.com/wix/tutorial/getting-started/the-files-inside/

http://wixtoolset.org/documentation/manual/v3/

你可能感兴趣的:(程序打包)