For a limited time, go grab it! http://dottech.org/freebies/22187
P.S. No, it doesn’t come with the WinPE 3 bootdisk 🙁
– Soli Deo Gloria
There are 10 types of people in the world: those are understand binary and those who do not.
For a limited time, go grab it! http://dottech.org/freebies/22187
P.S. No, it doesn’t come with the WinPE 3 bootdisk 🙁
– Soli Deo Gloria
Yet another pesky problem caused by going from Office 2003 to Office 2007. We had some Access databases lying around with shortcuts with command lines like “C:Program FilesMicrosoft OfficeOFFICE11msaccess.exe Z:BillyBobDatabase.mdb”. Obviously, these will break after the upgrade, but I noticed during the install the Office 2007 installer was actually deleting the icons completely! Direct links to MDB files were not affected, just those that specifically contained C:Program FilesMicrosoft OfficeOFFICE11msaccess.exe in the command line.
The problem lies in the fact that the icon could be placed on the user’s desktop or in all users’ desktop. Some PCs are multi-user, so you could have the icon on several profile desktops. What to do?
I found this VBScript that was originally designed to do a recursive file delete. I changed it to do a recursive file replace instead:
This is a very “expensive” script that will hit about every file in all user’s profiles. That means that if you have 20,000+ files in Internet caches, multiple user profiles and a slow PC, it could take 30+ minutes for the script to finish. Since I was running this script off hours, I didn’t care about I/O or CPU time.
The last part of the script is designed for 64-bit machines. If C:Program Files (x86) exists, we are on a x64 machine and therefore we copy the x64 version of the icon.
– Soli Deo Gloria