I'm a new user of XYPlorer and would like to use it to fully replace Windows Explorer. When I press Windows Key-E to launch Explorer, I'd like XYPlorer to come up instead. How can I accomplish this?
Thanks!
Joe N9OK
Explorer replacement?
-
robin_joe
- Posts: 1
- Joined: 28 Mar 2012 03:59
- Location: Woodstock, IL
- Contact:
-
j_c_hallgren
- XY Blog Master
- Posts: 5826
- Joined: 02 Jan 2006 19:34
- Location: So. Chatham MA/Clearwater FL
- Contact:
Re: Explorer replacement?
Hi and welcome to the XY forums!robin_joe wrote:I'm a new user of XYPlorer and would like to use it to fully replace Windows Explorer.
I'd point you to http://www.xyplorer.com/faq.php item #1 for a start to this...
But be aware that you just cannot fully replace WE because, being a M$ product, it has some special abilities that any non-M$ FM can't access or do...and I believe that Win+E is one of those things...there's been prior threads about this and i'd suggest/request you always attempt to do a forum search first before beginning a new thread in future.
Many of us just leave XY active all the time so the need for a special key combo to start XY is avoided.
There is a 'tweak' available that also relates:
Code: Select all
; Tweak: one char (A-Z, 0-9) used for hotkey Win+[ ] to show app
HotKeyShowApp=X
See this http://www.xyplorer.com/xyfc/viewtopic.php?f=10&t=3543 for 'how to tweak'.
Update; A couple of prior threads about same topic:
http://www.xyplorer.com/xyfc/viewtopic. ... it=win+key
http://www.xyplorer.com/xyfc/viewtopic.php?f=3&t=7700
and this which says some of what i said above: http://www.xyplorer.com/xyfc/viewtopic.php?f=2&t=668
Still spending WAY TOO much time here! But it's such a pleasure helping XY be a treasure!
(XP on laptop with touchpad and thus NO mouse!) Using latest beta vers when possible.
(XP on laptop with touchpad and thus NO mouse!) Using latest beta vers when possible.
-
admin
- Site Admin
- Posts: 66360
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Explorer replacement?
Yes, but this will only show the XY window if it's minimized or in the back. It will not start XYplorer. For that (e.g. Win+E) you would have to change the registry, and I don't know in which way. Does anybody know?j_c_hallgren wrote:There is a 'tweak' available that also relates:Which I've set so that Win+X = XYCode: Select all
; Tweak: one char (A-Z, 0-9) used for hotkey Win+[ ] to show app HotKeyShowApp=X
FAQ | XY News RSS | XY X
-
j_c_hallgren
- XY Blog Master
- Posts: 5826
- Joined: 02 Jan 2006 19:34
- Location: So. Chatham MA/Clearwater FL
- Contact:
Re: Explorer replacement?
Agreed and that's why I said it only relates and that best is to just keep XY active to avoid having to start it.admin wrote:Yes, but this will only show the XY window if it's minimized or in the back. It will not start XYplorer.
I'm not aware that anyone here ever solved that and thus suspect it's buried internally in Windows.For that (e.g. Win+E) you would have to change the registry, and I don't know in which way. Does anybody know?
Still spending WAY TOO much time here! But it's such a pleasure helping XY be a treasure!
(XP on laptop with touchpad and thus NO mouse!) Using latest beta vers when possible.
(XP on laptop with touchpad and thus NO mouse!) Using latest beta vers when possible.
-
Borut
- Posts: 1472
- Joined: 19 Oct 2010 19:29
- Location: Win10 Pro 64b 22H2, @120DPI (125%)
Re: Explorer replacement?
Here is an explanation about how a free open-source helper tool AutoHotkey could be used to achieve that (i.e. not by changing the registry but most probably by intercepting the key combination):admin wrote:It will not start XYplorer. For that (e.g. Win+E) you would have to change the registry, and I don't know in which way. Does anybody know?
http://www.techrepublic.com/blog/window ... -want/1188
However, I have not tried that myself.
Win 10 Pro 64bit
-
stayer
- Posts: 3
- Joined: 28 Mar 2012 00:38
Re: Explorer replacement?
You can simply download AutoHotKey, create new ahk script (text file with .ahk extension), paste this code, save anr run it. I use it everyday for several applications.
Remeber to change path to your xyplorer in first line.
If You want to add other apps, duplicate first line and customize it with your shortcut and path.

Above script may not work properly if XY help is opened but can be easily customized to your needs.
Remeber to change path to your xyplorer in first line.
Code: Select all
#e::RunOrActivate("Full/relative path to your xyplorer")
; ===========================================================================
; Run a program or switch to it if already running.
; Target - Program to run. E.g. Calc.exe or C:\Progs\Bobo.exe
; WinTitle - Optional title of the window to activate. Programs like
; MS Outlook might have multiple windows open (main window and email
; windows). This parm allows activating a specific window.
; ===========================================================================
RunOrActivate(Target, WinTitle = "")
{
; Get the filename without a path
SplitPath, Target, TargetNameOnly
Process, Exist, %TargetNameOnly%
If ErrorLevel > 0
PID = %ErrorLevel%
Else
Run, %Target%, , , PID
; At least one app (Seapine TestTrack wouldn't always become the active
; window after using Run), so we always force a window activate.
; Activate by title if given, otherwise use PID.
If WinTitle <>
{
SetTitleMatchMode, 2
WinWait, %WinTitle%, , 3
TrayTip, , Activating Window Title "%WinTitle%" (%TargetNameOnly%)
WinActivate, %WinTitle%
}
Else
{
WinWait, ahk_pid %PID%, , 3
TrayTip, , Activating PID %PID% (%TargetNameOnly%)
WinActivate, ahk_pid %PID%
}
} I use few AutoHotKey scripts and many hotkeys all the time. It's as great as XYplorerQuick guide:
# - Win Key
^ - Control Key
! - Alt Key
+ - Shift Key
^+c = Ctrl+Shift+c
^#z = Ctrl+Win+z
etc...
Above script may not work properly if XY help is opened but can be easily customized to your needs.
-
cadu
- Posts: 287
- Joined: 18 Mar 2012 21:50
Re: Explorer replacement?
You can place XY in task bar. Then:
[Win+1...9=> Switch to application in position N on taskbar (or launch pinned application)]
I have XY in place 1! Also, this shortcut is useful to fast restore XY whether you are in other application.
Other tips about Windows shortcut in=> http://www.shortcutworld.com/en/win/Windows_7.html
[Win+1...9=> Switch to application in position N on taskbar (or launch pinned application)]
I have XY in place 1! Also, this shortcut is useful to fast restore XY whether you are in other application.
Other tips about Windows shortcut in=> http://www.shortcutworld.com/en/win/Windows_7.html
-
prino
- Posts: 358
- Joined: 18 Mar 2012 21:14
- Location: Vilnius, Lithuania
- Contact:
Re: Explorer replacement?
Right click on XY's desktop icon, click properties, and assign your own shortcut key combination. Ctrl-Shift-X (on a UK keyboard) is my shortcut.
Robert AH Prins
robert.ah.prins @ the.17+Gb.Google thingy (& W7-64 Pro @ 100%)
At last, a tiny bit of programming here...
robert.ah.prins @ the.17+Gb.Google thingy (& W7-64 Pro @ 100%)
At last, a tiny bit of programming here...
-
Twisten
- Posts: 204
- Joined: 27 Apr 2008 10:30
Re: Explorer replacement?
It might be worth noting that it will only work if you set the keyboard combo in the properties of a desktop or start-menu shortcut.
Edit:
Meaning it will only launch XYplorer if the shortcut is in those locations, if its already running it'll work to switch to it.
Unless the shortcut is in the quick launch toolbar.
Edit:
Meaning it will only launch XYplorer if the shortcut is in those locations, if its already running it'll work to switch to it.
Unless the shortcut is in the quick launch toolbar.
XYplorer Beta Club