Results 1 to 6 of 6

Thread: How to pack MsAgent in set up program!!

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 2000
    Posts
    12

    Red face

    I have developed an application using MSAGENT (Merlin). I want to make a set up (installation)program of that application but wonder how to pack MS AGENT & speech engine through set up program so that it automatically install on user's computer. I 'll appreciate your reply at
    [email protected]

  2. #2
    Guest
    If you use Packaging and Deployment Wizard it will examine all dependencies and include the files in the package your end users require to use the agent.

  3. #3

    Thread Starter
    New Member
    Join Date
    Jul 2000
    Posts
    12

    Angry Not working!

    Thanks for your reply but it is not working. I need to pack it up in a manner in which it install MSAGENT1.exe also.

  4. #4
    Guest
    OK, try this. Include msagent1.exe in your setup when asked if you want to distribute any extra files. Then once the package is created edit setup.lst at the bootstrap section and add an extra line in there to install msagent1.exe. The bootstrap section of setup.lst installs anything your package requires to work, so hopefully that will do the business for you ........

  5. #5
    Fanatic Member crispin's Avatar
    Join Date
    Aug 2000
    Location
    2 clicks west of a Quirkafleeg...Cornwall, England
    Posts
    754
    To do what you want do the following:

    Go to to the Wizards/PDWizard/Setup1 directory in your VB install directory, open the setup1.vbp project.

    open the code for frmSetup1


    look for the line of code that says:

    ShowWelcomeForm

    in the procedure you could put this code:

    Code:
    Dim dblShell1 As Double
        dblShell1 = Shell("msagent /Q:A /R:I", vbMinimizedNoFocus)
    this will do a silent install of the msagent software, you can use the same principle to install the character as well.

    for more info on modifying the P&D Wizard go to www.vbsquare.com the article is pretty good...
    Crispin
    VB6 ENT SP5
    VB.NET
    W2K ADV SVR SP3
    WWW.BLOCKSOFT.CO.UK

    [Microsoft Basic: 1976-2001, RIP]

  6. #6

    Thread Starter
    New Member
    Join Date
    Jul 2000
    Posts
    12

    Smile

    Thanks MadWorm & Crispin for your replies. I appreciate it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width