topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday April 18, 2024, 8:34 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Sorryformyen [ switch to compact view ]

Pages: [1]
1
Post New Requests Here / Re: Windows Launcher by Only One Key
« on: March 19, 2020, 09:02 PM »
I'm really using MaxLauncher in the absence of something like the one suggested in my original post. However, the fact that its keys are fixed makes visual agility and customization limited.

I am grateful for the other suggestions, they are very interesting and arouse some unexpected ideas, but they will certainly be useful for those who have preferences different from mine. I'm following with MaxLauncher now, still encountering some problem with performance, the launcher doesn't appear whenever requested. But this is what is there for now.

I really hope that the developer of the SiteLauncher addon will take a look here or someone who can emulate it on the desktop ... even if it looks like something it shouldn't look like

2
There don't seem to be many alternatives that do what Desktop Coral does (or try to do), but the output can be a combination with Autohotkey (here you'll have to use the help of the AHK forum to get your ideal code) or an alternative to Workspace Utilities.

3
Post New Requests Here / Re: Hide Taskbar on Desktop
« on: February 17, 2020, 12:05 PM »
I don't know SmarTaskbar, but using Autohotkey (AHK) you can get 3 behaviors for the Windows taskbar, one of which may be what you expect.

1º - AHK Code for hide/show the Taskbar with a key combination
!t::     ;"!" is Alt key and "t" is T key 
   WinExist("ahk_class Shell_TrayWnd")
   t := !t
   If (t = "1") {
      WinHide, ahk_class Shell_TrayWnd     ;hiding Taskbar
      WinHide, Start ahk_class Button     ;hiding Start button
   } Else {
      WinShow, ahk_class Shell_TrayWnd     ;unhiding Taskbar
      WinShow, Start ahk_class Button     ;unhiding Start button
   }
return

2º - AHK Code for keep the Taskbar hiden if your program is active.
Loop
{
IfWinActive, SmartTaskbar.exe     ;I guessed the EXE name, but you will have to make sure of that.
WinHide, ahk_class Shell_TrayWnd     ;hiding Taskbar
WinHide, ahk_class Shell_TrayWnd     ;hiding Taskbar
}
Return

3º - AHK Code for keep the Taskbar displayed if any other program is active, except yours.
Loop
{
IfWinNotActive, SmartTaskbar.exe     ;I guessed the EXE name, but you will have to make sure of that.
WinShow, ahk_class Shell_TrayWnd     ;displaying Taskbar
WinShow, ahk_class Shell_TrayWnd     ;displaying Taskbar
}
Return

4
Post New Requests Here / Re: Windows Launcher by Only One Key
« on: February 16, 2020, 07:30 PM »
BGM,
I've been using ClassicShell for about 8 years and I just haven't upgraded to OpenShell yet out of sheer laziness. In addition, ClassicShell works incredibly well for my needs. In any case, menus do not serve the true quick launch function. I use them only when I need to search the computer's content faster than if I wanted to go through the folder path. With real launchers, the initial visual mess goes over time giving way to memorizing where things are without many clicks or with as little as possible.

wraith808,
That's what I thought when I started using SiteLauncher in 2009, since then I need to keep adapting the code to each version of the browser :D

4wd,
This seems to have more functions than I would be able to use in one lifetime, less a very important function for me: visual customization, or at least as far as I could see.

Thank you all for the feedback!

5
Post New Requests Here / Windows Launcher by Only One Key
« on: February 16, 2020, 10:22 AM »
Hi,

Does anyone develop or know any launcher for Windows that is as similar as possible to the SiteLauncher add-on for Firefox and Google Chrome browsers?

Since I don't want to launch websites but folders, files and applications, what I found closest to now was Madproton's MaxLauncher, but unfortunately it has a limited number of keys and little visual customization.

Besides, I was hoping for something like this...

6
Sorryformyen, if you have found, or created, a .reg file with the MoveTo ability, please share.  Hugely important function.

MoveTo ability, meaning we can define the specific folders WHERE to move things to beforehand, ideally in a context menu that can appear via right-clicking on in Explorer.

I use FileMenu Tools for that purpose all the time, every day.  Would be great if there were a free way to do it, though, for others out there desiring it.

[attachthumb=#1[ Invalid Attachment ]]

What I have is this...
Spoiler
CopyTo

Windows Registry Editor Version 5.00

;for files

[HKEY_CLASSES_ROOT\*\shell\zCopyTo]
"SubCommands"=""
"MUIVerb"="Copy to"
"Icon"="%SystemRoot%\\System32\\ieframe.dll,100"
"SeparatorBefore"=""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell]

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\00]
"MUIVerb"="Desktop"
"Icon"="%SystemRoot%\\System32\\SHELL32.dll,34"
"CommandFlags"=dword:00000040

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\00\command]
@="cmd /c xcopy /a /j \"%1\" \"C:\\Users\\user\\Desktop\""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\01]
"MUIVerb"="1 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\01\command]
@="cmd /c xcopy /a /j \"%1\" \"D:\\1 - Directory\""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\02]
"MUIVerb"="2 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\02\command]
@="cmd /c xcopy /a /j \"%1\" \"D:\\2 - Directory\""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\03]
"MUIVerb"="3 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\03\command]
@="cmd /c xcopy /a /j \"%1\" \"D:\\3 - Directory\""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\04]
"MUIVerb"="4 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\04\command]
@="cmd /c xcopy /a /j \"%1\" \"D:\\4 - Directory\""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\05]
"MUIVerb"="5 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"
"CommandFlags"=dword:00000040

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\05\command]
@="cmd /c xcopy /a /j \"%1\" \"D:\\5 - Directory\""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\C]
"MUIVerb"="Drive (C:)"
"Icon"="C:\\Windows\\System32\\imageres.dll,32"

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\C\command]
@="explorer.exe \\"

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\D]
"MUIVerb"="Drive (D:)"
"Icon"="C:\\Windows\\System32\\imageres.dll,31"
"SubCommands"=""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\D\shell]

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\D\shell\D00]
"MUIVerb"="LIBRARY"
"CommandFlags"=dword:00000040
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\D\shell\D00\command]
@="cmd /c xcopy /a /j \"%1\" \"D:\\1 - Directory\\LIBRARY\""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\D\shell\D01]
"MUIVerb"="1 - Books"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\D\shell\D01\command]
@="cmd /c xcopy /a /j \"%1\" \"D:\\1 - Directory\\LIBRARY\\1 - Books\""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\D\shell\D02]
"MUIVerb"="2 - Videos"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\D\shell\D02\command]
@="cmd /c xcopy /a /j \"%1\" \"D:\\1 - Directory\\LIBRARY\\2 - Videos\""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\D\shell\D03]
"MUIVerb"="3 - Documents"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\D\shell\D03\command]
@="cmd /c xcopy /a /j \"%1\" \"D:\\1 - Directory\\LIBRARY\\3 - Documents\""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\D\shell\D04]
"MUIVerb"="4 - Apps"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\D\shell\D04\command]
@="cmd /c xcopy /a /j \"%1\" \"D:\\1 - Directory\\LIBRARY\\4 - Apps\""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\E]
"MUIVerb"="Drive (E:)"
"Icon"="C:\\Windows\\System32\\imageres.dll,31"
"SubCommands"=""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\E\command]
@="cmd /c xcopy /a /j \"%1\" \"E:\""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\E\shell]

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\E\shell\E01]
"MUIVerb"="slave"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\E\shell\E01\command]
@="cmd /c xcopy /a /j \"%1\" \"E:\\slave\""

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\USB]
"MUIVerb"="USB (G:)"
"Icon"="C:\\Windows\\System32\\usbui.dll"

[HKEY_CLASSES_ROOT\*\shell\zCopyTo\shell\USB\command]
@="cmd /c xcopy /a /j \"%1\" \"G:\""

;for folders

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo]
"SubCommands"=""
"MUIVerb"="Copy to"
"Icon"="%SystemRoot%\\System32\\ieframe.dll,100"
"SeparatorBefore"=""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell]

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\00]
"MUIVerb"="Desktop"
"Icon"="%SystemRoot%\\System32\\SHELL32.dll,34"
"CommandFlags"=dword:00000040

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\00\command]
@="cmd /c xcopy /e /i \"%1\" \"C:\\Users\\user\\Desktop\""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\01]
"MUIVerb"="1 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\01\command]
@="cmd /c xcopy /e /i \"%1\" \"D:\\1 - Directory\""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\02]
"MUIVerb"="2 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\02\command]
@="cmd /c xcopy /e /i \"%1\" \"D:\\2 - Directory\""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\03]
"MUIVerb"="3 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\03\command]
@="cmd /c xcopy /e /i \"%1\" \"D:\\3 - Directory\""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\04]
"MUIVerb"="4 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\04\command]
@="cmd /c xcopy /e /i \"%1\" \"D:\\4 - Directory\""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\05]
"MUIVerb"="5 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"
"CommandFlags"=dword:00000040

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\05\command]
@="cmd /c xcopy /e /i \"%1\" \"D:\\5 - Directory\""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\C]
"MUIVerb"="Drive (C:)"
"Icon"="C:\\Windows\\System32\\imageres.dll,32"

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\C\command]
@="explorer.exe \\"

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\D]
"MUIVerb"="Drive (D:)"
"Icon"="C:\\Windows\\System32\\imageres.dll,31"
"SubCommands"=""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\D\shell]

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\D\shell\D00]
"MUIVerb"="LIBRARY"
"CommandFlags"=dword:00000040
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\D\shell\D00\command]
@="cmd /c xcopy /e /i \"%1\" \"D:\\1 - Directory\\LIBRARY\""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\D\shell\D01]
"MUIVerb"="1 - Books"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\D\shell\D01\command]
@="cmd /c xcopy /e /i \"%1\" \"D:\\1 - Directory\\LIBRARY\\1 - Books\""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\D\shell\D02]
"MUIVerb"="2 - Videos"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\D\shell\D02\command]
@="cmd /c xcopy /e /i \"%1\" \"D:\\1 - Directory\\LIBRARY\\2 - Videos\""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\D\shell\D03]
"MUIVerb"="3 - Documents"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\D\shell\D03\command]
@="cmd /c xcopy /e /i \"%1\" \"D:\\1 - Directory\\LIBRARY\\3 - Documents\""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\D\shell\D04]
"MUIVerb"="4 - Apps"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\D\shell\D04\command]
@="cmd /c xcopy /e /i \"%1\" \"D:\\1 - Directory\\LIBRARY\\4 - Apps\""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\E]
"MUIVerb"="Drive (E:)"
"Icon"="C:\\Windows\\System32\\imageres.dll,31"
"SubCommands"=""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\E\command]
@="cmd /c xcopy /e /i \"%1\" \"E:\""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\E\shell]

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\E\shell\E01]
"MUIVerb"="slave"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\E\shell\E01\command]
@="cmd /c xcopy /e /i \"%1\" \"E:\\slave\""

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\USB]
"MUIVerb"="USB (G:)"
"Icon"="C:\\Windows\\System32\\usbui.dll"

[HKEY_CLASSES_ROOT\Directory\shell\zCopyTo\shell\USB\command]
@="cmd /c xcopy /e /i \"%1\" \"G:\""

Spoiler
MoveTo

Windows Registry Editor Version 5.00

;for files

[HKEY_CLASSES_ROOT\*\shell\zMoveTo]
"SubCommands"=""
"MUIVerb"="Move to"
"Icon"="%SystemRoot%\\System32\\netshell.dll,97"
"SeparatorAfter"=""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell]

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\00]
"MUIVerb"="Desktop"
"Icon"="%SystemRoot%\\System32\\SHELL32.dll,34"
"CommandFlags"=dword:00000040

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\00\command]
@="cmd /c move \"%1\" \"C:\\Users\\user\\Desktop\""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\01]
"MUIVerb"="1 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\01\command]
@="cmd /c move \"%1\" \"D:\\1 - Directory\""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\02]
"MUIVerb"="2 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\02\command]
@="cmd /c move \"%1\" \"D:\\2 - Directory\""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\03]
"MUIVerb"="3 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\03\command]
@="cmd /c move \"%1\" \"D:\\3 - Directory\""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\04]
"MUIVerb"="4 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\04\command]
@="cmd /c move \"%1\" \"D:\\4 - Directory\""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\05]
"MUIVerb"="5 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"
"CommandFlags"=dword:00000040

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\05\command]
@="cmd /c move \"%1\" \"D:\\5 - Directory\""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\C]
"MUIVerb"="Drive (C:)"
"Icon"="C:\\Windows\\System32\\imageres.dll,32"

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\C\command]
@="explorer.exe \\"

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\D]
"MUIVerb"="Drive (D:)"
"Icon"="C:\\Windows\\System32\\imageres.dll,31"
"SubCommands"=""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\D\shell]

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\D\shell\D00]
"MUIVerb"="LIBRARY"
"CommandFlags"=dword:00000040
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\D\shell\D00\command]
@="cmd /c move \"%1\" \"D:\\1 - Directory\\LIBRARY\""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\D\shell\D01]
"MUIVerb"="1 - Books"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\D\shell\D01\command]
@="cmd /c move \"%1\" \"D:\\1 - Directory\\LIBRARY\\1 - Books\""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\D\shell\D02]
"MUIVerb"="2 - Videos"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\D\shell\D02\command]
@="cmd /c move \"%1\" \"D:\\1 - Directory\\LIBRARY\\2 - Videos\""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\D\shell\D03]
"MUIVerb"="3 - Documents"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\D\shell\D03\command]
@="cmd /c move \"%1\" \"D:\\1 - Directory\\LIBRARY\\3 - Documents\""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\D\shell\D04]
"MUIVerb"="4 - Apps"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\D\shell\D04\command]
@="cmd /c move \"%1\" \"D:\\1 - Directory\\LIBRARY\\4 - Apps\""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\E]
"MUIVerb"="Drive (E:)"
"Icon"="C:\\Windows\\System32\\imageres.dll,31"
"SubCommands"=""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\E\command]
@="cmd /c move \"%1\" \"E:\""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\E\shell]

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\E\shell\E01]
"MUIVerb"="slave"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\E\shell\E01\command]
@="cmd /c move \"%1\" \"E:\\slave\""

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\USB]
"MUIVerb"="USB (G:)"
"Icon"="C:\\Windows\\System32\\usbui.dll"

[HKEY_CLASSES_ROOT\*\shell\zMoveTo\shell\USB\command]
@="cmd /c move \"%1\" \"G:\""

;for folders

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo]
"SubCommands"=""
"MUIVerb"="Move to"
"Icon"="%SystemRoot%\\System32\\netshell.dll,97"
"SeparatorAfter"=""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell]

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\00]
"MUIVerb"="Desktop"
"Icon"="%SystemRoot%\\System32\\SHELL32.dll,34"
"CommandFlags"=dword:00000040

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\00\command]
@="cmd /c robocopy /move /s /e \"%1\" \"C:\\Users\\user\\Desktop\""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\01]
"MUIVerb"="1 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\01\command]
@="cmd /c robocopy /move /s /e \"%1\" \"D:\\1 - Directory\""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\02]
"MUIVerb"="2 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\02\command]
@="cmd /c robocopy /move /s /e \"%1\" \"D:\\2 - Directory\""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\03]
"MUIVerb"="3 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\03\command]
@="cmd /c robocopy /move /s /e \"%1\" \"D:\\3 - Directory\""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\04]
"MUIVerb"="4 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\04\command]
@="cmd /c robocopy /move /s /e \"%1\" \"D:\\4 - Directory\""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\05]
"MUIVerb"="5 - Directory"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"
"CommandFlags"=dword:00000040

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\05\command]
@="cmd /c robocopy /move /s /e \"%1\" \"D:\\5 - Directory\""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\C]
"MUIVerb"="Drive (C:)"
"Icon"="C:\\Windows\\System32\\imageres.dll,32"

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\C\command]
@="explorer.exe \\"

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\D]
"MUIVerb"="Drive (D:)"
"Icon"="C:\\Windows\\System32\\imageres.dll,31"
"SubCommands"=""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\D\shell]

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\D\shell\D00]
"MUIVerb"="LIBRARY"
"CommandFlags"=dword:00000040
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\D\shell\D00\command]
@="cmd /c robocopy /move /s /e \"%1\" \"D:\\1 - Directory\\LIBRARY\""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\D\shell\D01]
"MUIVerb"="1 - Books"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\D\shell\D01\command]
@="cmd /c robocopy /move /s /e \"%1\" \"D:\\1 - Directory\\LIBRARY\\1 - Books\""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\D\shell\D02]
"MUIVerb"="2 - Videos"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\D\shell\D02\command]
@="cmd /c robocopy /move /s /e \"%1\" \"D:\\1 - Directory\\LIBRARY\\2 - Videos\""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\D\shell\D03]
"MUIVerb"="3 - Documents"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\D\shell\D03\command]
@="cmd /c robocopy /move /s /e \"%1\" \"D:\\1 - Directory\\LIBRARY\\3 - Documents\""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\D\shell\D04]
"MUIVerb"="4 - Apps"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\D\shell\D04\command]
@="cmd /c robocopy /move /s /e \"%1\" \"D:\\1 - Directory\\LIBRARY\\4 - Apps\""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\E]
"MUIVerb"="Drive (E:)"
"Icon"="C:\\Windows\\System32\\imageres.dll,31"
"SubCommands"=""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\E\command]
@="cmd /c robocopy /move /s /e \"%1\" \"E:\""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\E\shell]

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\E\shell\E01]
"MUIVerb"="slave"
"Icon"="%SystemRoot%\\System32\\shell32.dll,4"

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\E\shell\E01\command]
@="cmd /c robocopy /move /s /e \"%1\" \"E:\\slave\""

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\USB]
"MUIVerb"="USB (G:)"
"Icon"="C:\\Windows\\System32\\usbui.dll"

[HKEY_CLASSES_ROOT\Directory\shell\zMoveTo\shell\USB\command]
@="cmd /c robocopy /move /s /e \"%1\" \"G:\""

... which does this...
zMoveTo.png zCopyTo.png

Known limitations:
- Selecting a folder and trying to move it only moves its internal contents with the whole structure except the parent folder, ie its contents is played loose on the target.
- You can not add more than 5 items in the second submenu without the items in the first submenu being deleted from the base.
- Drive C: is protected: "access denied".

7
If you want v6.6 for the Move To functionality, it's still available on uptodown.
Windows Defender accused malicious software for this version 6.6, perhaps a false-positive. Interestingly I had an old version 6.3 that I used for a two or three years without alarms, but that now Windows 10 also accuses. I forced the installation of this FMT version and when configuring it the system crashed.

8
Thanks again, but I got a reg file with the function. Even so I'll see how this version 6.6 was.

9
Thanks for the tip, 4wd.
I would be happy to buy it when it is better developed. Currently there are a lot of free programs that offer the same FMT pre-defined commands. And even so-called "custom commands" are only accessible by those who have advanced knowledge of programming syntax and could create their own registry keys in a note pad. They did not even bother to put a list of possible codes for manipulating menu items, just the environment variables and paths. Anyway, FMT seems to me still an unfinished tool to cost what it supposes, but promising.

10
I know it's an old discussion, but what version of FileMenuTools are you using?
In current 7.5, the custom folders in MoveTo command is only unlocked by purchasing the license.

Pages: [1]