Problem
You want to see an entry that opens cmder.exe in Windows Explorer at the location where you use it.
Approach
Create or download the Windows registry key that enables to open CMDER on right-click with the parameters of the Directory that you are in passed.
Solution
As Code:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder]
@="Open in Cmder"
"Icon"="D:\\cmder\\Cmder.exe,0"
[HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder\command]
@="\"D:\\cmder\\Cmder.exe\" \"%V\""
[HKEY_CLASSES_ROOT\Directory\shell\Cmder]
@="Open in Cmder"
"Icon"="D:\\cmder\\Cmder.exe,0"
[HKEY_CLASSES_ROOT\Directory\shell\Cmder\command]
@="\"D:\\cmder\\Cmder.exe\" \"%1\""
or download it here.