Another day, another Adobe related software update. Today I recieved a security bulletin notifying me of a critical update to the Adobe Flash player software. When this happens, I usually have a handful of days to prepare the update for mass deployment through ConfigMgr. The new version (10.1.53.64) is available through the Adobe website, and if you have applied for a distribution license, you can grab the MSI right now!
Unfortunately, Adobe still have not taken the time to create a reliable MSI installer, so we are still left with having to workaround the little annoyances. The main issue I face is getting Adobe Flash Player to disable its automatic update feature, since we do not want our clients going out to the big bad interwebs and pulling down all sorts of untested updates.
To remedy this, I create a text file named mms.cfg, which needs to be placed into %windir%\System32\Macromed\Flash. The cfg file only needs to contain one line, shown below.
AutoUpdateDisable=1
Now we have the config file created, all that’s left is to create a transform file (MST) based on the downloaded MSI, which drops the config file into the location above during install. For those of you who aren’t familiar with transforming a MSI file, you can execute the following command to do so.
msiexec.exe /i "install.msi" TRANSFORMS="transform.mst" /qb RebootYesNo="No" Reboot="ReallySuppress"
Comments.
Jon says:
How did you make the transform file? Orca? And what was in it / fields / keys ?
Cheers.
Ryan Steele says:
Hey Jon, I found some discussion about creating a transform to do this on AppDeploy.com:
http://www.appdeploy.com/messageboards/tm.asp?m=24199&mpage=1&key=庇
I’ve decided for myself to use the startup script approach Tom mentions in the update linked to at the top of the post.
Tom says:
@Ryan
Glad you found the site useful. Appdeploy is a fantastic resource for software packaging, and is one I use very often! A great place to start when configuring software for enterprise deployment!
@Jon
There are many tools available for creating transforms. Some free, most expensive. I personally use Wise Package Studio. Although I do actually prefer InstallShield Admin Studio. Both are available on 30 day trials I believe.
Leave a comment.