Jeff Vandehey said:
It works fine if everyone's account has admin privileges, but word crashes
on launch for non-admins.
Interesting... Repairing permissions doesn't help ??? It seems that
there is something fishy in the install.
Deleting the Carbon Reg Database fixes this
problem as well.
Very interesting indeed!!!
How about creating an AppleScript that first deletes the CRD, then launches
Word?
I use a Terminal script that deletes my CRD and move my plug-ins from an
inactive folder to the active Word Startup folder and then launches
Word. Then another one that deletes the CRD again and moves the plugins
back to the inactive folder. Finally a last one that simply deletes the
CRD.
All scripts are in my AppleScript menu fo convenience.
This is a quick and dirty script adapted to my setup and the location I
chose for the files but if someone wants to use them and adapot them to
their needs...
CRD-Cleanup.command
#!/bin/tcsh
rm ~/Library/Preferences/Microsoft/Carbon\ Registration\ Database
echo "OK"
This one should be Universal. You can use it.
Word+EndNote.command
#!/bin/tcsh
mv -f ~/Applications/Microsoft\ Office\ X/Office/Startup/Word\
\(d*sactiv*s\)/EndNote6\ CWYW\ * ~/Applications/Microsoft\ Office\
X/Office/Startup/Word/
rm -f ~/Library/Preferences/Microsoft/Carbon\ Registration\ Database
open ~/Applications/Microsoft\ Office\ X/Microsoft\ Word
Word_WITHOUT_EndNote.command
#!/bin/tcsh
mv -f ~/Applications/Microsoft\ Office\ X/Office/Startup/Word/EndNote6\
CWYW\ * ~/Applications/Microsoft\ Office\ X/Office/D*marre/Word\
\(disabled\)/
rm -f ~/Library/Preferences/Microsoft/Carbon\ Registration\ Database
open ~/Applications/Microsoft\ Office\ X/Microsoft\ Word
The scripts must be text files with Unix carriage returns , end with
..command and have execute permissions
Be careful about the carriage returns introduced in posts.
I didn't want to make "universal scripts" because, beside the complexity
of dealing with custom locations, it also needs to be adapted for
localized versions that have locations with different names (eg: Démarre
instead of Startup).
E-mail me if ever you want any of these scripts to play with them (or
the CRD script that should just work).
Corentin