Installshield build all installer in development computer
Step:
- Copy all "SetupPrerequisites" from build server. please make sure below items:
- Installshield version, current is 2014
- SetupPrerequisites is in path: "C:\Program Files (x86)\InstallShield\2014\SetupPrerequisites"
- the build server info: 10.222.**.***; build\administrator@******
- Copy the needs “merging module” from build server. If installshield cannot find the merging module or the right version, it will popup the error "
Error -4075: File not found. An error occurred merging module <MODULENAME> for feature <FEATURENAME>." please make sure the below items:
search build server merging moule from these folder
Copy the build server module replace to local computer. detail see this link: https://flexeracommunity.force.com/customer/articles/en_US/ERRDOC/Build-Error-4075-Pro-Premier

- Create bat file and run the bat command, please replace the build number if need.
C:\Windows\system32\cmd.exe /s /c ""C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" Service\***\sp**erf\***.sln /p:Configuration=Release&&"C:\Program Files (x86)\InstallShield\2014\System\IsCmdBld.exe" -r "SINGLE_EXE_IMAGE" -p Service\***\install\***.ism -y "5.0.000.427"&&"C:\Program Files (x86)\InstallShield\2014\System\IsCmdBld.exe" -r "SINGLE_EXE_IMAGE" -p Service\***\install\Walkie-Talkie.ism -y "5.0.000.427"&&"C:\Program Files (x86)\InstallShield\2014\System\IsCmdBld.exe" -r "SINGLE_EXE_IMAGE" -p Service\***\install\Sp***erf.ism -y "5.0.000.427"&&del ***\config.js 2>nul&&"C:\Program Files (x86)\InstallShield\2014\System\IsCmdBld.exe" -r "SINGLE_EXE_IMAGE" -p Service\***\install\FileSe***rver.ism -y "5.0.000.427"" pause
Installshield build all installer in development computer的更多相关文章
- InstallShield Build错误:Internal build error 6041
点击左侧菜单: Media-Release-选择release版本(例如Release1)-Build标签- keey unused directories 改为no(默认为yes)
- InstallShield Build Error -1014: Cannot rename directory <PATH> to <PATH>\folder.Bak.
InstallSheild执行Build结果错误: 错误详细信息: Cannot rename directory <PATH> to <PATH>\folder.Bak. W ...
- Creating Hyperv Agent Installer
Creating Hyperv Agent Installer Skip to end of metadata Created by Anshul Gangwar, last modified ...
- 学习NAnt Build .CS+Solution+MSBuild+SVN+NUnit+NUnitReport
NAnt help:http://nant.sourceforge.net/release/latest/help/tasks/NAntContrib help:http://nantcontrib. ...
- installshield 32位打包和64位打包的注意事项
原文:installshield 32位打包和64位打包的注意事项 32/64位问题要把握几点:1. 明确你的产品是否需要区分32/64位2. 明确你的产品中是否有32/64位的服务注册3. 了解In ...
- web-based installer and executable installer in python 3 ,what is the difference between them?
Welcome to Python! This applies to all programs, not just python: An executable installer has every ...
- 乘风破浪,Java遇见OpenJDK GA(Build By Microsoft),即将晋升为Azure云管理服务默认JVM
什么是Microsoft Build of OpenJDK Java Development Kit (JDK) 是Sun公司(已被Oracle收购)针对Java开发员的软件开发工具包.自从Java推 ...
- How to create Web Deployment Package and install the package
Create Web Deployment Package To configure settings on the Connection tab In the Publish method drop ...
- Android模拟器使用教程
Using the Emulator In this document Overview Android Virtual Devices and the Emulator Starting and S ...
随机推荐
- Python 注释和中文乱码
Python 注释分为三种: 1.单行注释:# 2.多行注释:前后3个单引号,或者三个双引号: 如:''' 多行注释 ''', """或者 多行注释 '"&qu ...
- java深入探究02
web前端 html javascript Dom,BOM xml css Bootstrap
- GVM管理Go版本
1.为什么要安装GVM 1.1什么是GVM GVM是一个golang虚拟环境配置工具,其允许一台机器上安装多个golang版本,gvm是第三方开发的Go多版本管理工具,类似ruby里面的rvm工具.使 ...
- JavaUtil_02_二维码的生成与解析
1.引入jar包 zxing-core-1.7.jar : http://viralpatel.net/blogs/download/jar/zxing-core-1.7.jar zxing-j ...
- tomcat使用JDNI配置信息和使用信息。用于JDBC连接池
JNDI: JNDI(java Naming and Directory Interface),java命名和目录接口.JNDI的作用就是:在服务器上配置资源,然后通过统一的方式来获取配置的资源 在t ...
- 201621123014《JAVA程序设计》第2周学习总结
1. 本周学习总结 引用数据类型:JAVA定义字符串实际上是创建字符串的引用,将引用指向需要的字符串. 字符串常量池:直接对引用赋值时,会先在字符串中搜索是否有这个对象,已有则不创建直接指向它. St ...
- codeforces 459D D. Pashmak and Parmida's problem(离散化+线段树或树状数组求逆序对)
题目链接: D. Pashmak and Parmida's problem time limit per test 3 seconds memory limit per test 256 megab ...
- cocos2d-x 中 xml 文件读取
实现类 CXmlParse 啥也不说了 直接上硬货 believe yourself 一看就明白 CXmlParse.h #ifndef __C_XML_PARSE__ #define __C ...
- Link-cut-tree 学习记录 & hdu4010
网上的lct一抓一大把,所以我也不再写什么讲解了,只写一写自己的看法. Link-cut-tree 是用于维护动态树的一种数据结构 所谓动态树就是一片存在边的添加与删除的森林中的一棵树 所以我们要快速 ...
- 洛谷 P1379 八数码难题
题目描述 在3×3的棋盘上,摆有八个棋子,每个棋子上标有1至8的某一数字.棋盘中留有一个空格,空格用0来表示.空格周围的棋子可以移到空格中.要求解的问题是:给出一种初始布局(初始状态)和目标布局(为了 ...