Explorer integration: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
Line 47: Line 47:
  [-HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\shell\]
  [-HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\shell\]
  @=""
  @=""


{{translated|Ordner_im_TC_statt_im_Explorer_%C3%B6ffnen|Configuration}}
{{translated|Ordner_im_TC_statt_im_Explorer_%C3%B6ffnen|Configuration}}

Revision as of 16:56, 6 December 2007

This article describes how to add a context menu entry "Total Commander" to be able to open folders in Total Commander.

  • Create a new text file with a .REG extension (Windows Registry Script), e.g. TC.REG. Paste the following text into it:
REGEDIT4

;[HKEY_CLASSES_ROOT\Folder\shell] 
;@="Total_Commander"

[HKEY_CLASSES_ROOT\Folder\shell\Total_Commander] 
@="Total Commander"

[HKEY_CLASSES_ROOT\Folder\shell\Total_Commander\command] 
@="\"C:\\Program files\\Total Commander\\TOTALCMD.EXE\" /O \"%1\""
  • Adapt the path in the last line to the real path to Total Commander. You can miss the /O parameter, in this example it is used to open the selected folder in an existing instance.
  • If you want to have folders open in TC by default when double-clicking, remove the semicolons.
  • Double-click this file in the TC or Explorer. You should see the messagebox about successfull importing of the registry script.


  • If you want to reset to default Windows operation, import this regfile instead:
REGEDIT4

[HKEY_CLASSES_ROOT\Folder\shell]
@=""

[-HKEY_CLASSES_ROOT\Folder\shell\Total_Commander]


Recycle Bin Integration

  • If you want to open the Recycle Bin in Total Commander:
REGEDIT4

[HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\shell\open\command]
@="\"C:\\TOTALCMD\\totalcmd.exe\" /O /T \"C:\\RECYCLER\\S-1-5-21-606747145-162531612-682003330-1003\\\""


  • For reset to default Windows behaviour of Recycle Bin:
REGEDIT4

[-HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\shell\]
@=""



Back to Configuration