Manual Deployment and Undeployment scip

Home Page Forums BizTalk 2004 – BizTalk 2010 Manual Deployment and Undeployment scip

Viewing 1 reply thread
  • Author
    Posts
    • #13256

      Hi,
      I have been facing lot of risk to deploy and undeploy the orchestration.
      When ever i did small change in schemas its became big work to undeploy and deploy.

      Is there any scipt to write a batch file which needs to do the
      1. Stop ( unenlishit) of Orchestration
      2. Undeploy the Assembly

      same way need for deployment as well..

      Pls help me..

      bye
      Prasad

    • #13257

      you can write an WMI script or can download 3rd party tools to do this

      • #13258

        A cheap-trick for schemas is that you can usually just recompile them and copy the .DLL directly to the GAC (as long as you don’t change critical fields like the root element and the target namespace).

        But to answer your questions:

        1. To stop orchestration – see sample:
        \”c:\\Program Files\\Microsoft BizTalk Server 2004\\SDK\\Samples\\Admin\\WMI\\Stop Orchestration\\VBScript\\StopOrch.vbs\”

        2. To undeploy, create a .bat or .cmd file with statements something like this:

        BTSDEPLOY REMOVE SERVER=\”YOURSQLSERVER\” DATABASE=\”BiztalkMgmtDb\” NAME=\”Compassion.Biztalk.Pipelines.Common.dll\”

        It’s not too hard to write a VBScript to generate the .cmd file for you.
        Undeploy is weird to me, you must specify either the assembly path (the fully qualified .DLL name) or the assembly \”name\” (without the .dll suffix) and version number.

        See this page of Biztalk Help:
        ms-help://BTS_2004/Deploying/htm/ebiz_asdepl_howto_lwlp.htm

        You can also run the Deployment wizard one time, and on the last screen it will show you the syntax. You can copy/paste it into a text file for creating your .bat/.cmd file.

        Neal Walters
        http://Biztalk-Training.com

Viewing 1 reply thread
  • The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.