Best Practices for Application Packaging (Admin Studio)
I would like to know some best practices in packaging using Adminstudio.
Answers (7)
Start by installing any app you have to package on a CLEAN machine.
Then figure out what it is, what the current installation routine is. Then figure out if it fits into your system, if not, figure out how to make it fit into your system.
If it is already an MSI, just go for a silent install. If its a complicated MSI install, the Tuner tool might help you to find all the answers to installation questions.
If you find you have EXEs that need to be packaged into MSI format, first, do some practise packaging with 'simple' applications first.
Good luck
The books recommended from VBScab are the best ones to start with. If you are good with Windows Installer basics then you can easily understand the packaging concepts.
Some best practices followed by most of the packagers are below.
1. Remove Desktop shortcut and other help shortcuts.
2. Suppress Auto-update.
3. Validate ICE errors and fix them.
4. Suppress Auto-Reboot.
5. Follow component rules.
6. Remove junk files and registries that are not needed when creating a MSI through setup capture.
7. Remove windows update.log if captured.
8. Perform Setup capture in a clean machine.
9. Always do a manual review of the source before starting with the packaging part. Understand what is the requirement and then proceed.
CA's are reserved for things the MSI can't do.
I learnt recently how to fix a file association using the Extension table instead of pulling in REG files.
Read, Learn, Test
Thanks for the information. I will go through that book to understand more about it. :) - lgovindprakash 8 years ago