View Single Post
  #7 (permalink)  
Old 22-07-2008, 10:28 AM
supabrudda supabrudda is online now
BES Administrator
 
Join Date: Apr 2008
Posts: 134
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"
Reply With Quote