|
If anyone wants a quick & dirty script to install this patch, I knocked up the following batch file.
1) unzip the patch into say c:\temp
(so you will have c:\temp\BBdecorator & c:\temp\BBDistiller)
2) copy the script below into a new file c:\temp\runme.bat
3) click on runme.bat
4) It will prompt OK 6 times,
- The first 3 unregister the old dlls, the last 3 register the new dlls
5) Make sure they all say "success".
For quiet mode, add a /s after all 6 regsvr32 (i.e. regsvr32 /s .....)
It stops & starts the relevant services.
-------------------------------------------------
Net stop "Blackberry Dispatcher"
net stop "Blackberry Attachment Service"
regsvr32 /u "%ProgramFiles%\Research In Motion\BlackBerry Enterprise Server\AttachServer\BBDecorator\BBrenderingdecorat or.dll"
regsvr32 /u "%ProgramFiles%\Research In Motion\BlackBerry Enterprise Server\AttachServer\BBDecorator\BBXrenderingdecora tor.dll"
regsvr32 /u "%ProgramFiles%\Research In Motion\BlackBerry Enterprise Server\AttachServer\BBDistiller\BBDM_Pdf.dll"
copy ".\BBDecorator\BBrenderingdecorator.dll" "%ProgramFiles%\Research In Motion\BlackBerry Enterprise Server\AttachServer\BBDecorator\"
copy ".\BBDecorator\BBXrenderingdecorator.dll" "%ProgramFiles%\Research In Motion\BlackBerry Enterprise Server\AttachServer\BBDecorator\"
copy ".\BBDistiller\BBDM_Pdf.dll" "%ProgramFiles%\Research In Motion\BlackBerry Enterprise Server\AttachServer\BBDistiller\"
regsvr32 "%ProgramFiles%\Research In Motion\BlackBerry Enterprise Server\AttachServer\BBDecorator\BBrenderingdecorat or.dll"
regsvr32 "%ProgramFiles%\Research In Motion\BlackBerry Enterprise Server\AttachServer\BBDecorator\BBXrenderingdecora tor.dll"
regsvr32 "%ProgramFiles%\Research In Motion\BlackBerry Enterprise Server\AttachServer\BBDistiller\BBDM_Pdf.dll"
Net start "Blackberry Dispatcher"
net start "Blackberry Attachment Service"
|