[BTS] Deploy Command

BizTalkDeploymentTools.AddResource.bat

@Echo OFF

SET ApplicationName=%~1
SET ComponentType=%~2
SET ComponentName=%~3
Echo.
Echo.
Echo ##################################################################
Echo.
Echo.      Deploying the fllowing Assembly...
Echo       %ComponentName%
Echo.
Echo ##################################################################
Echo.
Echo.
BTSTask AddResource -ApplicationName:%ApplicationName% -Type:"System.BizTalk:%ComponentType%" -Overwrite -Options:GacOnAdd,GacOnInstall,GacOnImport -Source:"%ComponentName%"
Echo.
Echo.

BizTalkDeploymentTools.Install.bat

@Echo OFF

CLS

COLOR 0A

@Title BizTalk Deployment Tools V1.0

Echo.
Echo.
Echo.
Echo ##################################################################
Echo.
Echo.      CNABB BizTalk Deployment Tools V1.1
Echo.
Echo.
Echo ##################################################################

SET BizTalkApplicationName=MyBizTalkApplicationSET BizTalkAssembliesFile=BizTalkDeploymentTools.Assemblies.txt

FOR /F "delims=: tokens=1,2*" %%i IN (%BizTalkAssembliesFile%) DO @CALL BizTalkDeploymentTools.AddResource %BizTalkApplicationName% %%i %%j

Echo.
Echo.
Echo ##################################################################
Echo.
Echo       Deploy was completed.
Echo.
Echo       Please config the account, password, folder path and SAP in BizTalk Management Tools.
Echo.
Echo ##################################################################
Echo.
Echo.

time /t

PAUSE

BizTalkDeploymentTools.Assemblies.txt

Assembly:Integration.Biztalk.Pipelines.EncodingDecoder.dll
Assembly:Integration.CScot.Functions.dll
Assembly:Integration.Pol.Functions.dll
BizTalkAssembly:Integration.Sap.Schemas.dll
BizTalkAssembly:Integration.Cscot.Schemas.dll
BizTalkAssembly:Integration.Pol.Schemas.dll
BizTalkAssembly:Integration.Cscot.Maps.dll
BizTalkAssembly:Integration.Pol.Maps.dll
BizTalkAssembly:Integration.Cscot.Pipelines.dll
BizTalkAssembly:Integration.Pol.Pipelines.dll
BizTalkAssembly:Integration.Cscot.Orchestrations.dll
BizTalkAssembly:Integration.Bam.Orchestrations.dll
BizTalkAssembly:Integration.Pol.Orchestrations.dll
BizTalkAssembly:Integration.CScot.SyncData.dll

Guideline:

1.Config the txt file for list all components for deploy to BizTalk server.

2.Edit BizTalkDeploymentTools.Install.bat for change the BizTalk Application Name.

3.Run BizTalkDeploymentTools.Install.bat.

时间: 2024-08-08 05:39:04

[BTS] Deploy Command的相关文章

一步步创建第一个Docker App —— 1. 背景介绍

原文:https://docs.docker.com/engine/getstarted-voting-app/#/docker-stacks-and-services 你将会学习什么 本文创建了一个基于web的投票voting应用,会收集,匹配,并返回投票结果(你选择的是cats,dogs还是其他).这个投票app包括多个服务,每个都在独自的container容器中运行. 我们会将app部署为一个stack,从而介绍一些在Compose Version 3中的新概念,并且使用swarm mod

Spark internal - 多样化的运行模式 (下)

Spark的各种运行模式虽然启动方式,运行位置,调度手段有所不同,但它们所要完成的任务基本都是一致的,就是在合适的位置安全可靠的根据用户的配置和Job的需要管理和运行Task,这里粗略的列举一下在运行调度过程中各种需要考虑的问题 环境变量的传递 Jar包和各种依赖文件的分发 Task的管理和序列化等 用户参数配置 用户及权限控制 环境变量的传递 Spark的运行参数有很大一部分是通过环境变量来设置的,例如Executor的内存设置,Library路径等等.Local模式当然不存在环境变量的传递问

Docker3之Swarm

Make sure you have published the friendlyhello image you created by pushing it to a registry. We'll be using that shared image here. Be sure your image works as a deployed container. Run this command, slotting in your info for username, repo, and tag

SVN+Ansible搭建自动化提交代码

一.基本的SVN的服务配置 查看可使用的 svn 命令: [[email protected] ~]# svn svn svndumpfilter svnrdump svnsync svnadmin svnlook svnserve svnversion 1.新建一个目录用于存储SVN所有文件 [[email protected] ~]# mkdir /home/svn 2.新建一个版本仓库 [[email protected] ~]# svnadmin create /home/svn/pro

Docker:Service

Prerequisites Install Docker version 1.13 or higher. Get Docker Compose. On Docker for Mac and Docker for Windows it's pre-installed, so you're good-to-go. On Linux systems you need to install it directly. On pre Windows 10 systems without Hyper-V, u

Deploy Django in Windows

? 配置 安装目录 D:\PythonWebSW\(免安装) d:\Program Files\ (安装版) 工作目录 E:/PythonWeb/code 项目名称 voith_sales Installation Python2.7.3 http://www.python.org/getit/releases/2.7.3/ http://www.python.org/download/ Windows x86 MSI Installer (2.7.3) (sig) 安装 安装路径: D:\Py

How to Deploy Exchange 2016 CU2

How to Deploy Exchange 2016 CU2 Hybrid with Office 3651. install exchange 2016 CU21) Prepare Windows Feature:Install-WindowsFeature AS-HTTP-Activation, Desktop-Experience,NET-Framework-45-Features, RPC-over-HTTP-proxy, RSAT-Clustering,RSAT-Clustering

Deploy Ceph and start using it:simple librados cli

This part of the tutorial describes how to setup a simple Ceph client using librados (for C++). The only information that the client requires for the cephx authentication is Endpoint of the monitor node Keyring containing the pre-shared secret (we wi

How to create a Maven web app and deploy to Tomcat - fast

原文地址: http://www.blogjava.net/sealyu/archive/2010/01/08/308706.html Procedure Prerequisites and Assumptions Step One - Prepare the Tomcat Manager application Step Two - Create a New Web App Using Maven Step Three - Define Your Tomcat Server in Maven