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 ...
随机推荐
- static_class
<?php class MyObject { public static $myStaticVar = 0; function myMethod() { self::$myStaticVar + ...
- 【LeetCode】【动态规划】Generate Parentheses(括号匹配问题)
描述 Given n pairs of parentheses, write a function to generate all combinations of well-formed parent ...
- 《python基础教程(第二版)》学习笔记 列表/元组(第2章)
<python基础教程(第二版)>学习笔记 列表/元组(第2章)序列中的下标从0开始x='ABC' ==> x[0]='A', x[1]='B', x[2]='C'负数索引从右边开始 ...
- 遇到“拒绝了对对象的 EXECUTE 权限”和“无法作为数据库主体执行,因为主体 "dbo" 不存在、无法模拟这种类型的主体,或您没有所需的权限”的问题
在将数据库从sqlserver2000迁移到2005后,原有的用户名TDS在执行存储过程是报错:“拒绝了对对象的 EXECUTE 权限”. 如网上所说,在使用的数据库的属性页->权限中给TDS添 ...
- 源码分享-纯CSS3实现齿轮加载动画
纯CSS3实现齿轮加载动画是一款可以用来做Loading动画的CSS3特效代码. 有兴趣的朋友可以下载下来试试:http://www.huiyi8.com/sc/8398.html
- 程序以html形式发送邮件注意问题
1.样式要写在内部,不要单独定义样式 2.div 使用背景图片在有些浏览器中出不来这时候需要用: <table style="width: 640px" cellpaddin ...
- Redis-benchmark使用总结
Redis-benchmark为Redis性能测试工具. 指令说明: Usage: redis-benchmark [-h <host>] [-p <port>] [-c &l ...
- Java企业微信开发_13_异常:com.qq.weixin.mp.aes.AesException: 解密后得到的buffer非法
一.异常信息 方法:POST@ echostr是否存在 :false java.lang.IllegalArgumentException: 20 > -367029533 at java.ut ...
- windows下安装 postgresql
1. 下载PostgreSQL的源代码.解压. 2. 在Windows平台下编译需要跳过一个权限的检测,否则在编译的时候可能会出现错误. 在\src\backend\main\main.c文件中将 ...
- linux命令学习笔记( 7 ) : mv 命令
mv命令是move的缩写,可以用来移动文件或者将文件改名(move (rename) files),是Linux系统下常用的命令, 经常用来备份文件或者目录. .命令格式: mv [选项] 源文件或目 ...