msi
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
msi [2011/03/07 14:35] – [Adobe Reader] skip | msi [2020/12/27 20:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== MSI - Microsoft Installer ===== | ||
+ | Msi Installers are mainly needed to install Software in a network remotely, per Group Policy Objects. See the article about [[remote_installation]] for details. | ||
+ | |||
+ | |||
+ | |||
+ | ==== Howto create ==== | ||
+ | |||
+ | Free Software [[http:// | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ==== Adobe Reader ==== | ||
+ | |||
+ | |||
+ | |||
+ | ==get msi== | ||
+ | |||
+ | |||
+ | |||
+ | [[ ftp:// | ||
+ | |||
+ | |||
+ | |||
+ | If there is no ready msi installer avaiable, then you can unpack an Adobe-Reader .exe File, to get an .msi File, which is necessary to deploy using GPO.\\ | ||
+ | |||
+ | -nos_o is the extraction Folder Parameter\\ | ||
+ | |||
+ | -nos_ne is the no-execution-after-unpacking Parameter | ||
+ | |||
+ | < | ||
+ | |||
+ | …\..\AdbeRdr1001_de_DE.exe -nos_o" | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | ==patch msi using an msp file== | ||
+ | |||
+ | Often Adobe has only the Patch files in msp format on its Server. This means that we have to slipstream the patch into the msi Package. | ||
+ | |||
+ | < | ||
+ | |||
+ | msiexec.exe /a AcroRead.msi /p AdbeRdrUpd1001_Tier1.msp | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | ==disabling auto updates== | ||
+ | |||
+ | [[Here | http:// |