Hi,
Thanks for your attention on this. I have reviewed the article and it explains the way of publishing the package.
I would like to know if there is a tool to create these packages.
Thank you.
Main Topics
Browse All TopicsOur requirement is to install softwares on multiple computers with different hardware configurations. These computers are spread across different locations and we can't push the software using WDS or SMS.
1) Is there any other tool which helps us to create a package for the softwares ( With or without MSI switches enabled) ?
2) Is there any other tool which helps us to push it and install it from a remote location?
This question is in progress.
Our experts are working on an answer right now.
Sign up for immediate access to the solution once it becomes available.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Here is a free one to create MSI's http://www.advancedinstall
And here is the tutorial for it: http://www.advancedinstall
> Is there any other tool which helps us to create a package for the softwares ( With or without MSI switches enabled) ?
Generally speaking, you can deploy software only using some method already known to the target computer, such as active directory, or windowsupdate, or installed SMS client, and so on. Otherwise, every virus would be able to get installed on it. So, the answer to your question should start from finding out the deployment methods known to your target computers.
Obviously your best option is to consider a good configuration management solution, however you could make you installer files available from a server location, and create a batch file calling your installer/s with silent switches, if you have multiple installers to process I would use the start /wait command.
start \wait appname.exe /silent
You can then call the bat file as a start up script.
If money is a concern, I would recommend the following:
1) MAKEMSI: http://www.appdeploy.com/t
2) Deploy MSI via Group Policies.
3) As far as the Switches go, that is simply a part of the commandline for MSIEXEC.
A) To install App without any User Interface: MSIEXEC.exe /I "%PATHTOMSI%\%MSINAME%" /QN (/QN = Quiet with No User Interface)
B) To install App without User Dialogs, but display Progress Bar, sinly use the "/Passive" instead of "/QN".
Tons of switches, you can use with MSIEXEC. Simply run "MSIEXEC /?" from your [START] - [RUN] to see the options.
Business Accounts
Answer for Membership
by: demazterPosted on 2009-06-10 at 00:35:56ID: 24588715
You could try using Group Policies?
om/kb/8161 02
Here is a microsoft document explaining the process http://support.microsoft.c