AutoPlay integration: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
This article describe how handle inserted media types by Total Commander.
This article describes how certain inserted media types are handled by Total Commander.


* A new file with .REG extension must be created in your system, then you have to paste the text wrote below:
* The text below must be pasted into a new plain-text file on your system which must then be saved with a .REG extension.


* The last line point to Total Commander main executable. You should adapt it to your real location in your system.
* The last line points to the Total Commander main executable. You should adapt it to the actual location of TOTALCMD.EXE on your system.


* If you wish to change how it is opened in TC - different panel, new tab, etc. - give a glance to [[Command line parameters]]
* If you want to change the way the inserted media opens in TC, e.g. different panel, new tab, etc., have a look at the command-line parameters (Help, Section 4.a).  ([[Command-line parameters]])


* After your adaptation, you must do double click in your <newfile.REG> or import from regedit.exe
* After saving the file, perhaps with your alterations, you must double click <newfile.REG> or import it from regedit.exe to incorporate it into the registry.
 
* Alternative, you can try this unofficial script that automates the process: http://totalcmd.net/plugring/TCM_Send_Receive.html


   
   
Line 34: Line 36:
   
   
  [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\ShowPicturesOnArrival]
  [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\ShowPicturesOnArrival]
"TOTALCMD_AUTOPLAY"=""
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\AutoplayHandlers\EventHandlers\UnknownContentOnArrival]
  "TOTALCMD_AUTOPLAY"=""
  "TOTALCMD_AUTOPLAY"=""
   
   

Latest revision as of 20:25, 31 May 2021

This article describes how certain inserted media types are handled by Total Commander.

  • The text below must be pasted into a new plain-text file on your system which must then be saved with a .REG extension.
  • The last line points to the Total Commander main executable. You should adapt it to the actual location of TOTALCMD.EXE on your system.
  • If you want to change the way the inserted media opens in TC, e.g. different panel, new tab, etc., have a look at the command-line parameters (Help, Section 4.a). (Command-line parameters)
  • After saving the file, perhaps with your alterations, you must double click <newfile.REG> or import it from regedit.exe to incorporate it into the registry.


Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\AutorunINFLegacyArrival]
"TOTALCMD_AUTOPLAY"=""

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\IomegaHipZipArrival]
"TOTALCMD_AUTOPLAY"=""

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\MixedContentOnArrival]
"TOTALCMD_AUTOPLAY"=""

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayCDAudioOnArrival]
"TOTALCMD_AUTOPLAY"=""

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayDVDMovieOnArrival]
"TOTALCMD_AUTOPLAY"=""

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayMusicFilesOnArrival]
"TOTALCMD_AUTOPLAY"=""

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\PlayVideoFilesOnArrival]
"TOTALCMD_AUTOPLAY"=""

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\EventHandlers\ShowPicturesOnArrival]
"TOTALCMD_AUTOPLAY"=""

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\AutoplayHandlers\EventHandlers\UnknownContentOnArrival]
"TOTALCMD_AUTOPLAY"=""

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\Handlers\TOTALCMD_AUTOPLAY]
"Action"="Browse with Total Commander"
"DefaultIcon"="C:\\Totalcmd\\totalcmd.exe,0"
"InvokeProgID"="TOTALCMD_AUTOPLAY\\AutoPlay"
"InvokeVerb"="open"
"Provider"="Total Commander"

[HKEY_CLASSES_ROOT\TOTALCMD_AUTOPLAY\AutoPlay\shell\Open\command]
@="C:\\Totalcmd\\totalcmd.exe /O /S /T /L=\"%1\""




Back to Configuration