随笔- 182
文章- 1
评论- 28
阅读-
57万
随笔分类 - InstallShield2008
安装包制作工具
installshield卸载时提示重启动的原因以及解决办法
摘要:有时候卸载installshield安装的程序,卸载完会提示是否重启电脑以完成所有卸载,产生这个提示的常见原因有如下几种:1. 卸载时,程序正处于运行状态2. 卸载时,程序文件夹处于打开状态3. 卸载时,有文件被别的进程调用,或者在进程中,常见情况如dll在进程中一般来说解决办法是针对第三种情况的,解决办法是卸载时强制杀进程,比如在OnMaintUIBefore或者OnUninstall里写上强制...
阅读全文
The coding gentleman's guide to detecting the .NET Framework
摘要:原帖地址http://www.codeproject.com/KB/dotnet/DetectDotNet.aspxA C++ class that will detect and enumerate the active CLR versions on a machineOverviewThe CDetectDotNet class detects whether the .NET Framew...
阅读全文
Installing .NET Framework 2.0 Applications with InstallShield
摘要:原帖地址http://www.codeproject.com/KB/install/installdotnet2.aspxIntroductionThis article describes my attempts at deploying a .NET Framework 2.0 application using InstallShield X. I'm not really happy wi...
阅读全文
关于使用 Installshield 部署 .NET Framework
摘要:使用 Installshield部署 .NET Framework 1.1/2.0 时需要注意以下几点:(本文使用的环境是InstallShield 11.5 Premier Edition 和 Installshield 12 Premier Edition )对于 MSI 类型的项目1、若要部署.NET Framework,Installshield 的项目类型最好选择MSI类型的,如 Bas...
阅读全文
使用 InstallShield 安装和卸载SQL Server 数据库
摘要:本文主要介绍使用Installshield 进行数据库的安装和卸载,并在InstallShield 11.5 Premier Edition 和Installshield 12 Premier Edition 环境中测试通过。1、打开“SQL Scripts view”,如图1 图1. 打开SQL Script View 视图2、建立一个连接,...
阅读全文
Installshield在安装结束时刷新系统
摘要:在OnEnd里添加代码,两种解决方案方案一:#include "ifx.h" //Call to Windows used in the "OnEnd" function to refresh the desktop prototype Shell32.SHChangeNotify(LONG, LONG, POINTER, POINTER);// -- Add the following to t...
阅读全文
DLL简介
摘要:Windows世界中,有无数块活动的大陆,它们都有一个共同的名字——动态链接库。现在就走进这些神奇的活动大陆,找出它们隐藏已久的秘密吧! 初窥门径:Windows的基石 随便打开一个系统目录,一眼望去就能看到很多扩展名DLL的文件,这些就是经常说的“动态链接库”,DLL是Dynamic Link Library(即“动态链接库&rdquo...
阅读全文
装软件为何还要重启?软件安装过程全回放
摘要:安装软件的过程,其实就是文件解压和复制的过程。拷贝文件袋额过程中,大部分软件都开发自己独特的功能,这些功能多以DLL动态链接库的形式出现,随安装程序包一起提供。有的软件把这些DLL文件放在自身安装的目录下,另外不少软件则把这些DLL文件拷贝到系统目录下,一般为"\Windows\System"(98系统) "\Winnt\System32"(2000/2003系统)或"\Windows\Syste...
阅读全文
Basic MSI,InstallScript,InstallScript MSI和Inscript Object工程的基本区别
摘要:User Interface-DialogBasic MSI有BehaviorInstallScript,InstallScript MSI和Inscript Object没有Basic MSI,InstallScript MSI:Behavior and Logic-InstallScript-Customer Action and Sequences-Support Files-System ...
阅读全文
函数及执行顺序
摘要:Before Move Data OnBeginBefore Move Data OnFirstUIBeforeBefore Move Data OnMaintUIBeforeMove Data OnMovedAfter Move Data OnFirstUIAfterAfter Move Data OnMaintUIAfter函数...
阅读全文