Step:

  1. Copy all "SetupPrerequisites" from build server. please make sure below items:
    1. Installshield version, current is 2014
    2. SetupPrerequisites is in path: "C:\Program Files (x86)\InstallShield\2014\SetupPrerequisites"
    3. the build server info: 10.222.**.***; build\administrator@******
  2. 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:
    1.  search build server merging moule from these folder
    2.  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

  3. 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的更多相关文章

  1. InstallShield Build错误:Internal build error 6041

    点击左侧菜单: Media-Release-选择release版本(例如Release1)-Build标签-   keey unused directories 改为no(默认为yes)

  2. InstallShield Build Error -1014: Cannot rename directory <PATH> to <PATH>\folder.Bak.

    InstallSheild执行Build结果错误: 错误详细信息: Cannot rename directory <PATH> to <PATH>\folder.Bak. W ...

  3. Creating Hyperv Agent Installer

    Creating Hyperv Agent Installer   Skip to end of metadata   Created by Anshul Gangwar, last modified ...

  4. 学习NAnt Build .CS+Solution+MSBuild+SVN+NUnit+NUnitReport

    NAnt help:http://nant.sourceforge.net/release/latest/help/tasks/NAntContrib help:http://nantcontrib. ...

  5. installshield 32位打包和64位打包的注意事项

    原文:installshield 32位打包和64位打包的注意事项 32/64位问题要把握几点:1. 明确你的产品是否需要区分32/64位2. 明确你的产品中是否有32/64位的服务注册3. 了解In ...

  6. 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 ...

  7. 乘风破浪,Java遇见OpenJDK GA(Build By Microsoft),即将晋升为Azure云管理服务默认JVM

    什么是Microsoft Build of OpenJDK Java Development Kit (JDK) 是Sun公司(已被Oracle收购)针对Java开发员的软件开发工具包.自从Java推 ...

  8. 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 ...

  9. Android模拟器使用教程

    Using the Emulator In this document Overview Android Virtual Devices and the Emulator Starting and S ...

随机推荐

  1. 图形用户界面(GUI)事件监听机制——窗体事件Frame

    窗体事件.Button的使用 本事例给出一个窗体的定义方法,基本属性设置,给窗体添加退出按钮,让按钮具备退出的功能.熟悉监听器的使用 按钮就是事件源. 那么选择哪一个监听器呢? 通过关闭窗体事例了解到 ...

  2. nodejs之入门

    一.安装: 去官网下载稳定版本,安装即可. 安装后执行node -v,显示node版本,然后输入node回车,然后输出console.log(111);,正常输出即可. 二.入门介绍: 1.nodej ...

  3. MySQL 及 SQL 注入与防范方法

    所谓SQL注入,就是通过把SQL命令插入到Web表单递交或输入域名或页面请求的查询字符串,最终达到欺骗服务器执行恶意的SQL命令. 我们永远不要信任用户的输入,我们必须认定用户输入的数据都是不安全的, ...

  4. MySQL存储过程入门教程

    存储过程介绍 存储过程是一组为了完成特定功能的SQL语句集,经编译后存储在数据库中.用户通过指定存储过程的名字并给出参数(如果该存储过程带有参数)来执行它.存储过程可由应用程序通过一个调用来执行,而且 ...

  5. Netty入门例子

    新建maven项目,添加依赖 <!-- https://mvnrepository.com/artifact/io.netty/netty-all --> <dependency&g ...

  6. Docker学习(三)

    查看docker daemon服务运行状态 service docker status

  7. 一个可以拖拽的div

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  8. python-socket2

    UDP,服务端 #! /usr/bin/env python #coding=utf-8 import socket #创建socket,指定ipv4,udp类型 s = socket.socket( ...

  9. Tomcat_异常_03_Tomcat日志(Logger)中文乱码

    一.异常现象 tomcat的日志中出现中文乱码 二.异常解决 2.1 修改catalina.sh文件 在 Tomcat安装目录下的bin目录中,修改catalina.sh文件,第229行. (1)修改 ...

  10. Oracle学习笔记_02_基本SQL

    1.select语句 (1)语法 SELECT *|{[DISTINCT] column|expression [alias],...} FROM table; (2)示例: 选择全部列 SELECT ...