Dan Kap wrote:
> after one of the Windows XP updates, the Address Window was no longer
> available in the Task Bar.
Um, so what does that address bar disappearance from the Windows taskbar
have to do with the Address Bar in Internet Explorer, the topic of THIS
newsgroup? You're asking about the wrong address bar. Because of WHERE you
asked, readers would assume that you were asking about the address bar in
*Internet Explorer*. Look at the name of THIS newsgroup again.
The Addresstoolbar in the Windows taskbar is a completely separate issue.
It is NOT an issue with Internet Explorer (again, see the title of THIS
newsgroup?). The Address toolbar option disappears when you apply service
pack 3 to Windows XP.
> Next time you're on a friend's computer that has 7 or Vista, give it a try
> and you'll see what I mean.
I don't have to. What you *meant* is NOT what you asked. You asked about
the disappears of the Address Bar. You asked in a newsgroup that discusses
Internet Explorer. You did NOT ask in a newsgroup that discusses general
topics on Windows XP.
Below is my canned response for someone asking about the missing Address
toolbar - and in the Windows taskbar - and by asking in the corrent
newsgroup, especially when they don't identify WHERE is the missing address
toolbar. I didn't back to verify all steps are accurate across all
perceivable XP setups but it worked for me on several hosts. Otherwise, you
could Google on the *correct* topic, for example:
http://www.google.com/search?q=%2B"windows+xp"+%2B"service+pack"+%2B"add ress+toolbar"+%2Btaskbar+missing
This search might turn up the vendor that came out with a replacement
Address toolbar rather than trying to restore the old one from Windows. I
can't recall it's product name right now.
_Missing Address toolbar in Windows taskbar after applying Service Pack 3 to
Windows XP_
After installing Service Pack 3 to Windows XP, the Address toolbar is no
longer available in the Windows taskbar. The quick answer to restoring the
Address toolbar in the taskbar is:
In %windir%\system32, replace the SP-3 version of browseui.dll with the
SP-2 version.
Unfortunately, Windows File Protection gets in the way (and so does
explorer.exe for the Windows desktop and some other processes). The
workaround is to use the PendingFileRenameOperations key in the registry.
Values under this key specify which files to move, replace, or delete when
Windows starts up. Get the PendMoves.zip file from SysInternals
(
http://www.sysinternals.com) which contains the pendmoves.exe and
movefile.exe utilities. pendmoves tells you what is already in that
registry key to get renamed on the next Windows startup (afterwhich this key
gets cleared). movefile lets you add entries to this registry key.
- If you haven't yet installed SP-3, save a copy of the file:
md c:\backup
copy "%windir%\system32\browseui.dll" c:\temp\
- If you have already installed SP-3, you will have to get a copy of
browseui.dl_ (ends with the underscore character) from your backups, from a
Windows SP-2 install CD, from another of your hosts still running Windows XP
SP-2, or from a friend that you really trust. If you get the compressed
browseui.dl_ file, decompress it:
expand [drive:[path]]browseui.dl_ c:\backup\browseui.dll
Now that you have the old version of the browseui.dll file, you need to
replace the SP-3 version with the old version. Run the following command in
a DOS shell:
copy c:\windows\system32\browseui.dll c:\windows\system32\browseui_sp3.dll
copy c:\backup\browseui.dll c:\backup\browseui-2.dll
movefile c:\backup\browseui.dll c:\windows\system32\dllcache\browseui.dll
movefile c:\backup\browseui-2.dll c:\windows\system32\browseui.dll
<reboot>
Each 'copy' and 'movefile' command are on one line (be careful of any line
wrapping in your newsreader). Assumptions: movefile.exe is in the current
directory or found by the PATH environment variable and that you saved the
old version of browseui.dll under c:\backup. Do NOT use
"%windir%\system32\browseui.dll" for the destination since the windir
environment variable won't be defined when the move operation is performed
during Windows startup. In the above, I save a copy of the SP-3 version of
browseui.dll just in case it is found later that using the old version
causes problems and I have to revert back to using the SP-3 version along
with having to sacrifice the Address toolbar. I also created 2 copies of
the old version of browseui.dll. That is because it gets moved (not copied)
into the destination. So the first move will work but then the source file
won't exist for the second move.
While this procedure gets you back to the prior version of the browseui.dll
file to get back the Address toolbar in the Windows taskbar, the
browseui.dll is used by Windows for lots of other functionality. It is
possible the old version will cause problems with expected new functionality
in the new version of this file. That is why I suggest to save a copy of
the new version of the file in case you find other problems and need to swap
it back using a procedure similar to above.