Link to home
Start Free TrialLog in
Avatar of colins121
colins121

asked on

How do I customize the Office 2007 QuickAccessToolbar for deploying it consistently across the enterprise?

How can I create multiple customized QuickAccessToolbars for Office 2007.  I'm familiar with the OCT and customizing Office installations.  I've created /deployed custom Office installs for my company for Office XP, 2003, and 2007.  I've created multiple .MSPs for deploying Office 2007 but have not been able to create customized QuickAccessToolbar(s) or been able to figure out how to deploy anything other than the default QAT buttons.  I know how to customize the QAT on individual PCs but need to do so company-wide.  
Avatar of colins121
colins121

ASKER

Simply copying the .qat files to each PC isn't going to work unless there is a way to replicate to all users profile on the all PCs.  I've customized them on my PC but need to deploy them with Office when it gets deployed.  One option is to copy it to the "default user" profile but that will only affect users that haven't logged onto the PC before.
ASKER CERTIFIED SOLUTION
Avatar of enzogoy
enzogoy

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
The links that you provided are helpful.  I ended up going doing this via Group Policy using a crude script (batch file) that verifies if Office 2007 (or any of its components) is installed, the OS version, and checks to see if each of the .qat that we need on our users' systems exist. If not, the individual .qat are copied to the users profiles.

Doing this via Group Policy worked out well since the combined size of all the .qat files is a whopping 8K!  The batch file itself is 2K.  It runs pretty quickly too.  We dont use roaming profiles so I didnt have to do any logoff script.  Remote users have to deal with any lag the script and file copy cause but based on their geography (Bay Area) my user base has a good percentage high-speed access.

Below is the script that I used.

@echo OFF
if not exist "%PROGRAMFILES%\Microsoft Office\Office12\" goto END


ver | find "Version 5.1"
if errorlevel 1 goto NotXP
if exist "%userprofile%\Local Settings\Application Data\Microsoft\OFFICE\excel.qat" goto OLKItem
xcopy "Excel.qat" "%userprofile%\Local Settings\Application Data\Microsoft\OFFICE\" /Y

:OLKItem
if exist "%userprofile%\Local Settings\Application Data\Microsoft\OFFICE\olkmailitem.qat" goto OLKRead
xcopy "olkmailitem.qat" "%userprofile%\Local Settings\Application Data\Microsoft\OFFICE\" /Y

:OLKRead
if exist "%userprofile%\Local Settings\Application Data\Microsoft\OFFICE\olkmailread.qat" goto PPT
xcopy "olkmailread.qat" "%userprofile%\Local Settings\Application Data\Microsoft\OFFICE\" /Y

:PPT
if exist "%userprofile%\Local Settings\Application Data\Microsoft\OFFICE\PowerPoint.qat" goto WORD
xcopy "PowerPoint.qat" "%userprofile%\Local Settings\Application Data\Microsoft\OFFICE\" /Y

:WORD
if exist "%userprofile%\Local Settings\Application Data\Microsoft\OFFICE\Word.qat" goto END
xcopy "Word.qat" "%userprofile%\Local Settings\Application Data\Microsoft\OFFICE\" /Y
goto END



:NotXP
ver | find "Version 6.0"
if errorlevel 1 goto END
if exist "%USERPROFILE%\AppData\Local\Microsoft\office\Excel.qat" goto OLKItemV
xcopy "Excel.qat" "%USERPROFILE%\AppData\Local\Microsoft\office\" /Y

:OLKItemV
if exist "%USERPROFILE%\AppData\Local\Microsoft\office\olkmailitem.qat" goto OLKReadV
xcopy "olkmailitem.qat" "%USERPROFILE%\AppData\Local\Microsoft\office\" /Y

:OLKReadV
if exist "%USERPROFILE%\AppData\Local\Microsoft\office\olkmailread.qat" goto PPTV
xcopy "olkmailread.qat" "%USERPROFILE%\AppData\Local\Microsoft\office\" /Y

:PPTV
if exist "%USERPROFILE%\AppData\Local\Microsoft\office\PowerPoint.qat" goto WORDV
xcopy "PowerPoint.qat" "%USERPROFILE%\AppData\Local\Microsoft\office\" /Y

:WORDV
if exist "%USERPROFILE%\AppData\Local\Microsoft\office\Word.qat" goto END
xcopy "Word.qat" "%USERPROFILE%\AppData\Local\Microsoft\office\" /Y
goto END

:END