Questions about silent application installation
hi there is a application in which app owner wants the application as following way
1-Must be able to install in the SYSTEM context,
2. Must be a fully automated installation,,
3. Must be completely silent
4. Must not popup windows or dialog boxes,,
5. Must not issue a system reboot,,
6. Must be on the local Distribution Point of the site receiving the application.
how w e can do it? i know for complete silent installation the switch used is qn, but what abt rest of the requirements?
Answers (3)
Assuming that you're talking about a vendor supplied MSI then:
1.SYSTEM context - this is down to your deployment method, generally MSI installers don't have an issue installing in this context.
2. Must be a fully automated installation - Create a response transforms (MST) to answer any installation prompts with your packaging tool.
3. Must be completely silent - assuming the vendor hasn't put any weird custom actions in that cause pop-ups /qn should cover it.
4. Must not popup windows or dialog boxes - if it's by vendor design then there isn't much you can do about this, unless you want to delve deep to work out why they are there and perform the same action by other silent means.
5. Must not issue a system reboot - add REBOOT=ReallySuppress to your MST.
6. Must be on the local Distribution Point of the site receiving the application - This is down to your deployment method, SCCM could handle this action as required.
If it is not a vendor MSI, then create your installer with your desired options.
Thanks,
Dunnpy
INWikipedia: The word in is an English word, which may act as a preposition, an adverb or an adjective or a noun. →
Comments:
-
thanks dunnpy thats very important information - shilesh1982 12 years ago
-
one more question dunnpy what is the difference between vendor supplied msi and regular msi? each time i am confused when i have given a msi. - shilesh1982 12 years ago
-
A vendor MSI has been created by a software vendor and provided to install their software. The other type of MSI is one that you've created using your packaging toolset (Wise, InstallShield).
You don't modify a vendor MSI - you use an MST to customise the installation, but if you've created the MSI you can modify it to your hearts content. - dunnpy 12 years ago
Comments:
-
hi jagdish i am not the sccm guy but they want the application to be according to OSD standards which are mentioned above... - shilesh1982 12 years ago