Log inRegister
You are here: Boossy » Software » SwMouseKeyboard » AutoHotkey

Howto redirect Win+e?

Make use of an AutoHotkey script:

#e:: ;; Win+e
{
;; Run C:\WINDOWS\explorer.exe /n`, /root`, F:\
 Run C:\WINDOWS\explorer.exe F:\
}
return

Or using the CLSID pointing to OneDrive:

#e:: ;; Win+e
{
;; Run C:\WINDOWS\explorer.exe /n`, /root`, ::{018D5C66-4533-4307-9B53-224DE2ED1FE6}
Run C:\WINDOWS\explorer.exe ::{018D5C66-4533-4307-9B53-224DE2ED1FE6}
}
return

An overview of all available CLSID's can be found here: https://www.tenforums.com/tutorials/3123-clsid-key-guid-shortcuts-list-windows-10-a.html

Save the script wherever you want, but put a shortcut to the script in a startup folder:
  • current user: %appdata%\Microsoft\Windows\Start Menu\Programs\Startup
  • all users: %programdata%\Microsoft\Windows\Start Menu\Programs\Startup
If you don't want to use AutoHotKey, have a look here: Win10OverrideWinE | Boossy | Foswiki.

tags

hotkeys - remap
This site is powered by FoswikiCopyright © by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding Foswiki? Send feedback
This page was cached on 27 Feb 2024 - 10:52.