TC as the default file manager under Windows 10
Moderators: Hacker, petermad, Stefan2, white
-
- Junior Member
- Posts: 3
- Joined: 2022-06-12, 12:23 UTC
TC as the default file manager under Windows 10
Is there a way to make total commender the default file manager under Windows 10? The topic was raised some years ago and the answer was NO. I wonder if this option I consider highly desired, has been made available.
Re: TC as the default file manager under Windows 10
This Registry file makes it for most functions.
By design not for Control panel and My PC.
Be carefull if you edit it.
Each "\" has to be doubled "\\"
By design not for Control panel and My PC.
Be carefull if you edit it.
Each "\" has to be doubled "\\"
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Drive\shell]
@="open"
[HKEY_CLASSES_ROOT\Drive\shell\open]
[HKEY_CLASSES_ROOT\Drive\shell\open\command]
@="c:\\tools\\wincmd\\TOTALCMD64.EXE /O \"%1\""
[HKEY_CLASSES_ROOT\Directory\shell]
@="open"
[HKEY_CLASSES_ROOT\Directory\shell\open]
[HKEY_CLASSES_ROOT\Directory\shell\open\command]
@="c:\\tools\\wincmd\\TOTALCMD64.EXE /O \"%1\""
Windows 11 Home, Version 24H2 (OS Build 26100.3915)
TC 11.55 RC1 x64 / x86
Everything 1.5.0.1391a (x64), Everything Toolbar 1.5.2.0, Listary Pro 6.3.2.88
QAP 11.6.4.2.1 x64
TC 11.55 RC1 x64 / x86
Everything 1.5.0.1391a (x64), Everything Toolbar 1.5.2.0, Listary Pro 6.3.2.88
QAP 11.6.4.2.1 x64
- ghisler(Author)
- Site Admin
- Posts: 50486
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
Re: TC as the default file manager under Windows 10
I cannot recommend this. Many programs expect that the Explorer is the default file manager, and will misbehave otherwise.
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
Re: TC as the default file manager under Windows 10
2Christian,ghisler(Author) wrote: 2022-06-13, 08:47 UTC I cannot recommend this. Many programs expect that the Explorer is the default file manager, and will misbehave otherwise.
there is no problem at all with this.
I use it since more than 15 years in many systems without any problem.
TC is only used if programs use the official API for opening folders.
If programs expect Explorer they most of the time have hardcoded calls to Explorer.exe.
Btw. a lot of other file managers have official settings for replacing Explorer with themselfs.
They do this since many years and I see no problems in all the forums I'm reading.
Windows 11 Home, Version 24H2 (OS Build 26100.3915)
TC 11.55 RC1 x64 / x86
Everything 1.5.0.1391a (x64), Everything Toolbar 1.5.2.0, Listary Pro 6.3.2.88
QAP 11.6.4.2.1 x64
TC 11.55 RC1 x64 / x86
Everything 1.5.0.1391a (x64), Everything Toolbar 1.5.2.0, Listary Pro 6.3.2.88
QAP 11.6.4.2.1 x64
Re: TC as the default file manager under Windows 10
I tend to agree with Horst.Epp. I've also replaced it and it works flawlessly. There are a handful of programs that call explorer.exe directly (which is a shame) and it won't work in these specific cases, but it doesn't cause issues.
Re: TC as the default file manager under Windows 10
what is the the default file manager? if you call explorer, it will run explorer.
if you launch TC, it will run TC.
where is the default?
if the default browser opens when execute "http://" , what i have to do to run "default" file manager, and why i can't "just" run TC or explorer
if you launch TC, it will run TC.
where is the default?
if the default browser opens when execute "http://" , what i have to do to run "default" file manager, and why i can't "just" run TC or explorer
-
- Junior Member
- Posts: 8
- Joined: 2023-03-24, 08:29 UTC
Re: TC as the default file manager under Windows 10
I just used your code and boom when i click to "open file location" says "app not found!!!"
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Drive\shell]
@="open"
[HKEY_CLASSES_ROOT\Drive\shell\open]
[HKEY_CLASSES_ROOT\Drive\shell\open\command]
@="c:\\tools\\wincmd\\TOTALCMD64.EXE /O \"%1\""
[HKEY_CLASSES_ROOT\Directory\shell]
@="open"
[HKEY_CLASSES_ROOT\Directory\shell\open]
[HKEY_CLASSES_ROOT\Directory\shell\open\command]
@="c:\\tools\\wincmd\\TOTALCMD64.EXE /O \"%1\""
Re: TC as the default file manager under Windows 10
Do you have your TOTALCMD64.EXE in "c:\tools\wincmd\" ?ciftciemir wrote: 2023-03-24, 08:30 UTC I just used your code and boom when i click to "open file location" says "app not found!!!"
-
- Junior Member
- Posts: 8
- Joined: 2023-03-24, 08:29 UTC
Re: TC as the default file manager under Windows 10
No
Code: Select all
@="c:\Program Files\totalcmd\TOTALCMD64.EXE"
-
- Junior Member
- Posts: 8
- Joined: 2023-03-24, 08:29 UTC
Re: TC as the default file manager under Windows 10
Just created a folder directory to "c:\tools\wincmd\" and pasted TOTALCMD64.EXE shortcut inside and no luck
-
- Junior Member
- Posts: 8
- Joined: 2023-03-24, 08:29 UTC
Re: TC as the default file manager under Windows 10
Now how can I revert it?
Re: TC as the default file manager under Windows 10
An shortcut? no no no
Adjust the example code from:
@="c:\\tools\\wincmd\\TOTALCMD64.EXE /O \"%1\""
in the *.reg file to match your environment:
@="\"c:\\Program Files\\totalcmd\\TOTALCMD64.EXE\" /O \"%1\""
In regedit directly this would look like:
(default) = "c:\Program Files\totalcmd\TOTALCMD64.EXE" /O "%1"
Maybe better you should not mess with the Registry if you have no knowledge about the backgrounds.
Adjust the example code from:
@="c:\\tools\\wincmd\\TOTALCMD64.EXE /O \"%1\""
in the *.reg file to match your environment:
@="\"c:\\Program Files\\totalcmd\\TOTALCMD64.EXE\" /O \"%1\""
In regedit directly this would look like:
(default) = "c:\Program Files\totalcmd\TOTALCMD64.EXE" /O "%1"
Maybe better you should not mess with the Registry if you have no knowledge about the backgrounds.
-
- Junior Member
- Posts: 8
- Joined: 2023-03-24, 08:29 UTC
Re: TC as the default file manager under Windows 10
what is the regedit directory?
-
- Junior Member
- Posts: 8
- Joined: 2023-03-24, 08:29 UTC
Re: TC as the default file manager under Windows 10
no luck runtimebrooker says no
-
- Junior Member
- Posts: 8
- Joined: 2023-03-24, 08:29 UTC