Solved Move the address bar below the menu bar in Windows Explorer

Also, the window border thing seems to have a few issues too. Whenever I navigate to a new folder, the border seems to disappear, and some folders don't have it at all when I open them. But great work!
Needs resize after setting the attribute. Try something like ShellFolderFix who automatically resizes all Explorer windows (and remembers their positions). I use it anyway. Alternatively I can add a command to resize by 1 px after each attribute change.
 

My Computer My Computer

At a glance

Windows 7
Computer type
PC/Desktop
OS
Windows 7
Needs resize after setting the attribute. Try something like ShellFolderFix who automatically resizes all Explorer windows (and remembers their positions). I use it anyway. Alternatively I can add a command to resize by 1 px after each attribute change.
Ok, works for new windows that don't have it, but it doesn't seem to work when I navigate to a new folder.
 

My Computer My Computer

At a glance

Windows 7 Professional x64Intel Core i7-4510U CPU8 GB RAMIntel(R) HD Graphics (I so wish I could upgra...
Computer type
Laptop
Computer Manufacturer/Model Number
Dell Inspiron 15 7000 Series
OS
Windows 7 Professional x64
CPU
Intel Core i7-4510U CPU
Memory
8 GB RAM
Graphics Card(s)
Intel(R) HD Graphics (I so wish I could upgrade this)
Screen Resolution
1920x1080
Keyboard
Laptop keyboard
Mouse
Microsoft Mouse
Internet Speed
Nothing to write home about
Antivirus
Malwarebytes Anti Malware
Browser
Pale Moon (Firefox fork)
Other Info
My primary laptop has Windows 10 on it, and my shared desktop (which is actually a laptop being used as a desktop) has Windows 7 Professional on it. I still use both, but I would say I use my laptop a bit more now.
Address Bar remover (not usable):
 

Attachments

My Computer My Computer

At a glance

Windows 7
Computer type
PC/Desktop
OS
Windows 7
Yeah, I open folders in the same window, so I bet that's it.
 

My Computer My Computer

At a glance

Windows 7 Professional x64Intel Core i7-4510U CPU8 GB RAMIntel(R) HD Graphics (I so wish I could upgra...
Computer type
Laptop
Computer Manufacturer/Model Number
Dell Inspiron 15 7000 Series
OS
Windows 7 Professional x64
CPU
Intel Core i7-4510U CPU
Memory
8 GB RAM
Graphics Card(s)
Intel(R) HD Graphics (I so wish I could upgrade this)
Screen Resolution
1920x1080
Keyboard
Laptop keyboard
Mouse
Microsoft Mouse
Internet Speed
Nothing to write home about
Antivirus
Malwarebytes Anti Malware
Browser
Pale Moon (Firefox fork)
Other Info
My primary laptop has Windows 10 on it, and my shared desktop (which is actually a laptop being used as a desktop) has Windows 7 Professional on it. I still use both, but I would say I use my laptop a bit more now.
Try to reboot. After reboot I even cannot reproduce this problem no matter how I try. Maybe the contents of some windows is cached.
 

My Computer My Computer

At a glance

Windows 7
Computer type
PC/Desktop
OS
Windows 7
Hmm, maybe. This was a problem I had with Zero Dump as well, so that could be it. I'll post back when I find out.
 

My Computer My Computer

At a glance

Windows 7 Professional x64Intel Core i7-4510U CPU8 GB RAMIntel(R) HD Graphics (I so wish I could upgra...
Computer type
Laptop
Computer Manufacturer/Model Number
Dell Inspiron 15 7000 Series
OS
Windows 7 Professional x64
CPU
Intel Core i7-4510U CPU
Memory
8 GB RAM
Graphics Card(s)
Intel(R) HD Graphics (I so wish I could upgrade this)
Screen Resolution
1920x1080
Keyboard
Laptop keyboard
Mouse
Microsoft Mouse
Internet Speed
Nothing to write home about
Antivirus
Malwarebytes Anti Malware
Browser
Pale Moon (Firefox fork)
Other Info
My primary laptop has Windows 10 on it, and my shared desktop (which is actually a laptop being used as a desktop) has Windows 7 Professional on it. I still use both, but I would say I use my laptop a bit more now.
Hey Anixx, is there any chance you could post up the source of those AutoHotKey scripts?
 

My Computer My Computer

At a glance

Windows 7 Professional x64Intel Core i7-4510U CPU8 GB RAMIntel(R) HD Graphics (I so wish I could upgra...
Computer type
Laptop
Computer Manufacturer/Model Number
Dell Inspiron 15 7000 Series
OS
Windows 7 Professional x64
CPU
Intel Core i7-4510U CPU
Memory
8 GB RAM
Graphics Card(s)
Intel(R) HD Graphics (I so wish I could upgrade this)
Screen Resolution
1920x1080
Keyboard
Laptop keyboard
Mouse
Microsoft Mouse
Internet Speed
Nothing to write home about
Antivirus
Malwarebytes Anti Malware
Browser
Pale Moon (Firefox fork)
Other Info
My primary laptop has Windows 10 on it, and my shared desktop (which is actually a laptop being used as a desktop) has Windows 7 Professional on it. I still use both, but I would say I use my laptop a bit more now.
borderfix.ahk

Code:
#NoTrayIcon
#NoEnv
Gui +LastFound
hWnd := WinExist()
 
DllCall( "RegisterShellHookWindow", UInt,hWnd )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )
Return
 
ShellMessage(wParam,lParam) {
   If (wParam = 1) ;  HSHELL_WINDOWCREATED := 1
   {
WinGetClass, WinClass, ahk_id %lParam%
if (WinClass = "CabinetWClass") {
Control, ExStyle, ^0x200, FolderView, ahk_id %lParam%
   }
   }
}
addressbar.ahk

Code:
#NoEnv
#NoTrayIcon
 
SetControlDelay, -1
Gui +LastFound
hWnd := WinExist()
 
DllCall( "RegisterShellHookWindow", UInt,hWnd )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )
Return

ShellMessage(wParam, lParam) {

WinGet, id, list, ahk_class CabinetWClass

Loop, %id%
{
WinGetClass, WinClass, % "ahk_id " id%A_Index%
ControlGetPos, ,y1,,,ReBarWindow321, % "ahk_id " id%A_Index%

Control, Hide,, WorkerW1, % "ahk_id " id%A_Index%
Control, Hide,, ReBarWindow321, % "ahk_id " id%A_Index%
Control, Hide,, Address Band Root1, % "ahk_id " id%A_Index%
Control, Hide,, ToolBarWindow321, % "ahk_id " id%A_Index%

ControlGetPos,,y2,,h1,ShellTabWindowClass1, % "ahk_id " id%A_Index%
ControlMove, ShellTabWindowClass1,, y1,,(y2-y1)+h1, % "ahk_id " id%A_Index%

}
  
}
 
Last edited:

My Computer My Computer

At a glance

Windows 7
Computer type
PC/Desktop
OS
Windows 7
Thanks.

Regarding the border issue, rebooting didn't seem to work. You say you're not getting the problem at all then? And you are opening folders in the same window? I wonder why it's not working for me. Like I said, whenever I open a new folder in the same window, the border just disappears.
 

My Computer My Computer

At a glance

Windows 7 Professional x64Intel Core i7-4510U CPU8 GB RAMIntel(R) HD Graphics (I so wish I could upgra...
Computer type
Laptop
Computer Manufacturer/Model Number
Dell Inspiron 15 7000 Series
OS
Windows 7 Professional x64
CPU
Intel Core i7-4510U CPU
Memory
8 GB RAM
Graphics Card(s)
Intel(R) HD Graphics (I so wish I could upgrade this)
Screen Resolution
1920x1080
Keyboard
Laptop keyboard
Mouse
Microsoft Mouse
Internet Speed
Nothing to write home about
Antivirus
Malwarebytes Anti Malware
Browser
Pale Moon (Firefox fork)
Other Info
My primary laptop has Windows 10 on it, and my shared desktop (which is actually a laptop being used as a desktop) has Windows 7 Professional on it. I still use both, but I would say I use my laptop a bit more now.
Thanks.

Regarding the border issue, rebooting didn't seem to work. You say you're not getting the problem at all then? And you are opening folders in the same window? I wonder why it's not working for me. Like I said, whenever I open a new folder in the same window, the border just disappears.
I open the folders in different windows. That's why it works for me and covers my needs.
 

My Computer My Computer

At a glance

Windows 7
Computer type
PC/Desktop
OS
Windows 7
Ah ok, right. Do you think there's any way to fix it?

One thing I've also noticed, if you use the address bar hider and you resize the window, and then open a new folder in the same window, the address bar will hide again. I've noticed the address bar quickly popping up when switching between windows, so I wonder if that might have anything to do with it becoming (partially) visible when resizing windows.
 

My Computer My Computer

At a glance

Windows 7 Professional x64Intel Core i7-4510U CPU8 GB RAMIntel(R) HD Graphics (I so wish I could upgra...
Computer type
Laptop
Computer Manufacturer/Model Number
Dell Inspiron 15 7000 Series
OS
Windows 7 Professional x64
CPU
Intel Core i7-4510U CPU
Memory
8 GB RAM
Graphics Card(s)
Intel(R) HD Graphics (I so wish I could upgrade this)
Screen Resolution
1920x1080
Keyboard
Laptop keyboard
Mouse
Microsoft Mouse
Internet Speed
Nothing to write home about
Antivirus
Malwarebytes Anti Malware
Browser
Pale Moon (Firefox fork)
Other Info
My primary laptop has Windows 10 on it, and my shared desktop (which is actually a laptop being used as a desktop) has Windows 7 Professional on it. I still use both, but I would say I use my laptop a bit more now.
This script should work in your case:

Code:
#NoTrayIcon
#NoEnv
Gui +LastFound
hWnd := WinExist()
SetBatchLines -1
SetControlDelay, -1

DllCall( "RegisterShellHookWindow", UInt,hWnd )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )
Return
 
ShellMessage(wParam,lParam) {
   If (wParam = 1 or wParam = 6) ;  HSHELL_WINDOWCREATED := 1
   {
WinGetClass, WinClass, ahk_id %lParam%

if (WinClass = "CabinetWClass") {
Sleep, 100
Control, ExStyle, ^0x200, FolderView, ahk_id %lParam%

WinSet, Redraw,, ahk_id %lParam%
WinGetPos, , , , h, ahk_id %lParam%
WinMove, ahk_id %lParam%,,,,,h-1
WinMove, ahk_id %lParam%,,,,,h
   }
   }
}
 

My Computer My Computer

At a glance

Windows 7
Computer type
PC/Desktop
OS
Windows 7
Hey, that works! Thanks.

Explorer looks so much better now!
 
Last edited:

My Computer My Computer

At a glance

Windows 7 Professional x64Intel Core i7-4510U CPU8 GB RAMIntel(R) HD Graphics (I so wish I could upgra...
Computer type
Laptop
Computer Manufacturer/Model Number
Dell Inspiron 15 7000 Series
OS
Windows 7 Professional x64
CPU
Intel Core i7-4510U CPU
Memory
8 GB RAM
Graphics Card(s)
Intel(R) HD Graphics (I so wish I could upgrade this)
Screen Resolution
1920x1080
Keyboard
Laptop keyboard
Mouse
Microsoft Mouse
Internet Speed
Nothing to write home about
Antivirus
Malwarebytes Anti Malware
Browser
Pale Moon (Firefox fork)
Other Info
My primary laptop has Windows 10 on it, and my shared desktop (which is actually a laptop being used as a desktop) has Windows 7 Professional on it. I still use both, but I would say I use my laptop a bit more now.
Try this:
1.) Have the address bar remover enabled
2.) Resize the window so the address bar re-appears
3.) Right-click on the title bar
 

My Computer My Computer

At a glance

Windows 7 Professional x64Intel Core i7-4510U CPU8 GB RAMIntel(R) HD Graphics (I so wish I could upgra...
Computer type
Laptop
Computer Manufacturer/Model Number
Dell Inspiron 15 7000 Series
OS
Windows 7 Professional x64
CPU
Intel Core i7-4510U CPU
Memory
8 GB RAM
Graphics Card(s)
Intel(R) HD Graphics (I so wish I could upgrade this)
Screen Resolution
1920x1080
Keyboard
Laptop keyboard
Mouse
Microsoft Mouse
Internet Speed
Nothing to write home about
Antivirus
Malwarebytes Anti Malware
Browser
Pale Moon (Firefox fork)
Other Info
My primary laptop has Windows 10 on it, and my shared desktop (which is actually a laptop being used as a desktop) has Windows 7 Professional on it. I still use both, but I would say I use my laptop a bit more now.
It will disappear, I think. Any shell event makes it disappear again.
 

My Computer My Computer

At a glance

Windows 7
Computer type
PC/Desktop
OS
Windows 7
Yes, that is the same result I got.

Also, I would love to help you out with this. Do you think you can send me a link to an AutoHotKey scripting tutorial/help site? I'll try to learn this stuff, and then I'll do what I can to help you out with this.
 

My Computer My Computer

At a glance

Windows 7 Professional x64Intel Core i7-4510U CPU8 GB RAMIntel(R) HD Graphics (I so wish I could upgra...
Computer type
Laptop
Computer Manufacturer/Model Number
Dell Inspiron 15 7000 Series
OS
Windows 7 Professional x64
CPU
Intel Core i7-4510U CPU
Memory
8 GB RAM
Graphics Card(s)
Intel(R) HD Graphics (I so wish I could upgrade this)
Screen Resolution
1920x1080
Keyboard
Laptop keyboard
Mouse
Microsoft Mouse
Internet Speed
Nothing to write home about
Antivirus
Malwarebytes Anti Malware
Browser
Pale Moon (Firefox fork)
Other Info
My primary laptop has Windows 10 on it, and my shared desktop (which is actually a laptop being used as a desktop) has Windows 7 Professional on it. I still use both, but I would say I use my laptop a bit more now.
Yes, that is the same result I got.

Also, I would love to help you out with this. Do you think you can send me a link to an AutoHotKey scripting tutorial/help site? I'll try to learn this stuff, and then I'll do what I can to help you out with this.
Sorry, I mostly used the help file coming with AHK. Actually one can do the same using other programming languages, say, Visual Basic.
 

My Computer My Computer

At a glance

Windows 7
Computer type
PC/Desktop
OS
Windows 7
Oh ok. I'll take a look at those help files then.
 

My Computer My Computer

At a glance

Windows 7 Professional x64Intel Core i7-4510U CPU8 GB RAMIntel(R) HD Graphics (I so wish I could upgra...
Computer type
Laptop
Computer Manufacturer/Model Number
Dell Inspiron 15 7000 Series
OS
Windows 7 Professional x64
CPU
Intel Core i7-4510U CPU
Memory
8 GB RAM
Graphics Card(s)
Intel(R) HD Graphics (I so wish I could upgrade this)
Screen Resolution
1920x1080
Keyboard
Laptop keyboard
Mouse
Microsoft Mouse
Internet Speed
Nothing to write home about
Antivirus
Malwarebytes Anti Malware
Browser
Pale Moon (Firefox fork)
Other Info
My primary laptop has Windows 10 on it, and my shared desktop (which is actually a laptop being used as a desktop) has Windows 7 Professional on it. I still use both, but I would say I use my laptop a bit more now.
The method can be used to fix the appearace of Internet Explorer as well.

h_1417137791_6756175_ab974527b0.png


I have not include and polish the featere because I do not use IE as of now (my layout switcher makes IE crash).
 

My Computer My Computer

At a glance

Windows 7
Computer type
PC/Desktop
OS
Windows 7
Back
Top