|
-
Mar 2nd, 2001, 12:20 PM
#1
Thread Starter
New Member
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]
-
Mar 3rd, 2001, 12:21 AM
#2
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.
-
Mar 10th, 2001, 12:46 AM
#3
Thread Starter
New Member
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.
-
Mar 10th, 2001, 06:59 PM
#4
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 ........
-
Mar 15th, 2001, 08:33 AM
#5
Fanatic Member
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]
-
Mar 24th, 2001, 12:50 AM
#6
Thread Starter
New Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|