• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
BeyondTechnology
博客园    首页    新随笔    联系   管理    订阅  订阅
2010年10月14日
如何选择InstallShield工程类型
摘要: 熟悉InstallShield用户清楚有Basic MSI,InstallScript和InstallScript MSI三种工程类型可选择,如果你初次使用InstallShield,你可能面临一个问题,哪一种工程类型适合你?有些InstallShield使用很久的开发人员,也可能依然存在这样的疑惑。这个答案取决于你的安装打包经验和项目需求。下面,我们通过InstallScript,Basic M... 阅读全文
posted @ 2010-10-14 22:37 BeyondTechnology 阅读(592) 评论(0) 推荐(0)
更多资料
摘要: 1.原厂的技术论坛http://community.flexerasoftware.com/2.原厂的知识库http://kb.flexerasoftware.com/3.installsitehttp://www.installsite.org/pages/en/isp_ext.htm4.Kevin Wanwww.cnblogs.com/installshield5.Stefan Krueger... 阅读全文
posted @ 2010-10-14 22:11 BeyondTechnology 阅读(233) 评论(0) 推荐(0)
How to:如何在调用外部文件时调试文件路径(常见于使用LaunchAppAndWait和LaunchApp函数)
摘要: IS里调用外部文件的时候,一般都是用LaunchAppAndWait函数,比如if(LaunchAppAndWait (SRCDISK^"jdk\\jdk-6u4-windows-i586-p.exe","", LAAW_OPTION_WAIT)<0)then MessageBox ("You haven't installed JDK 1.6.0_04 yet! ", INFORMATIO... 阅读全文
posted @ 2010-10-14 21:40 BeyondTechnology 阅读(3056) 评论(0) 推荐(0)
InstallSield更新包快速入门文档
摘要: 简述本文主要描述安装程序更新包的创建制作更新包的主要属性在给出升级包类型之前,首先说明几个概念:1、Package code:从字面上理解就是包的代码,在IS中每构建一个包的时候都会给其赋予一个package code,而且是唯一的。2、ProductVersion:产品版本,当将开发过后的系统文件打包为一个.exe文件(或者CD—ROM格式包)后,就成为发布产品并可以进行上线使用了。... 阅读全文
posted @ 2010-10-14 21:38 BeyondTechnology 阅读(851) 评论(0) 推荐(0)
How to:Installshield判断操作系统是否为64位,并且为操作注册表进行设置
摘要: IS脚本操作注册表在64位平台下必须有特殊的设置if (SYSINFO.bIsWow64) then //如果为64位操作系统 REGDB_OPTIONS = REGDB_OPTION_WOW64_64KEY ; //则为注册表操作进行64位特殊设置endif;/**底下照常操作注册表即可*/ 阅读全文
posted @ 2010-10-14 21:31 BeyondTechnology 阅读(2637) 评论(1) 推荐(1)
installshield卸载时提示重启动的原因以及解决办法
摘要: 有时候卸载installshield安装的程序,卸载完会提示是否重启电脑以完成所有卸载,产生这个提示的常见原因有如下几种:1. 卸载时,程序正处于运行状态2. 卸载时,程序文件夹处于打开状态3. 卸载时,有文件被别的进程调用,或者在进程中,常见情况如dll在进程中一般来说解决办法是针对第三种情况的,解决办法是卸载时强制杀进程,比如在OnMaintUIBefore或者OnUninstall里写上强制... 阅读全文
posted @ 2010-10-14 21:22 BeyondTechnology 阅读(2809) 评论(0) 推荐(0)
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... 阅读全文
posted @ 2010-10-14 21:13 BeyondTechnology 阅读(444) 评论(0) 推荐(0)
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... 阅读全文
posted @ 2010-10-14 20:53 BeyondTechnology 阅读(820) 评论(0) 推荐(0)
关于使用 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... 阅读全文
posted @ 2010-10-14 20:47 BeyondTechnology 阅读(491) 评论(0) 推荐(0)
使用 InstallShield 安装和卸载SQL Server 数据库
摘要: 本文主要介绍使用Installshield 进行数据库的安装和卸载,并在InstallShield 11.5 Premier Edition 和Installshield 12 Premier Edition 环境中测试通过。1、打开“SQL Scripts view”,如图1                图1. 打开SQL Script View 视图2、建立一个连接,... 阅读全文
posted @ 2010-10-14 20:22 BeyondTechnology 阅读(2491) 评论(0) 推荐(0)
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... 阅读全文
posted @ 2010-10-14 20:07 BeyondTechnology 阅读(399) 评论(0) 推荐(0)
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3