How can I disable F8 Delete Confirmation
Moderators: Hacker, petermad, Stefan2, white
How can I disable F8 Delete Confirmation
When deleting files by F8, I constantly get delete confirmation dialog box.
How can I turn it off? I tried various settings under Options -> Misc, but they don't seem to apply to regular files
How can I turn it off? I tried various settings under Options -> Misc, but they don't seem to apply to regular files
There is always at least one confirmation box for deleting, for security reasons. Imagine you want to create a dir using F7 and you accidentally hit F8, the cursor being eg on "Windows".
HTH
Roman
HTH
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
There is a workaround in cooperation with M$ Explorer
:
1st activate in TC menu Configuration - Options - Operation - Copy/Delete - Use Explorer delete method
2nd deactivate in M$ Explorer - Recycle bin - properties - Global - dialog for confirmation of deletion
(sorry, if the english text is different I don't use an english Windows XP)
Voilà!
plz see also this thread 1) confirmation messages / 2) faxviewer


1st activate in TC menu Configuration - Options - Operation - Copy/Delete - Use Explorer delete method
2nd deactivate in M$ Explorer - Recycle bin - properties - Global - dialog for confirmation of deletion
(sorry, if the english text is different I don't use an english Windows XP)
Voilà!
plz see also this thread 1) confirmation messages / 2) faxviewer
The doorstep to the temple of wisdom is a knowledge of our own ignorance. Benjamin Franklin
Hacker
I always delete to a Recycle Bin - I do not need a "confirmation" just to send a file to a recycle bin. I just read in other thread that that's because there is no way to reliably determine whether RecycleBin is enabled... So Explorer's delete method (which can skip confirmations) detects enabled RecycleBin?
nevidimka
Thank you
That works - files go straight to Recycle Bin without confirmations. However, my long-term plan is to get rid of Windows Explorer altogether (once I find a good Desktop-replacement program, in addition to Total Commander). Is this "Explorer delete method" somehow dependent on Windows Explorer?
I always delete to a Recycle Bin - I do not need a "confirmation" just to send a file to a recycle bin. I just read in other thread that that's because there is no way to reliably determine whether RecycleBin is enabled... So Explorer's delete method (which can skip confirmations) detects enabled RecycleBin?
nevidimka
Thank you

- ghisler(Author)
- Site Admin
- Posts: 50390
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
It uses the "Delete" verb from explorer's right click context menu. TC does not call Explorer for that, it uses OLE2 interfaces. I don't know whether these Shell interfaces still work or not when Explorer is removed...Is this "Explorer delete method" somehow dependent on Windows Explorer?
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
More and more I see responses to features or requests, where the answer is "its too dangerous" to let a user have that.
Personally I find that a bit galling.
Can someone come hold my hand so I don't hurt my computer please?
And setting the "explorer" delete method doesn't support descript.ion files.
Personally I find that a bit galling.
Can someone come hold my hand so I don't hurt my computer please?
And setting the "explorer" delete method doesn't support descript.ion files.
- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
The other problem w/ using "Explorer Method" delete, when you select a group of files in a large list, and choose delete. When the delete is done, the cursor jumps to the beginning of the list, or at the position the cursor was last at - ie if you can see 30 files, and the cursor was at position 25 - when the delete is done the cursor goes to position 25 - or onto the [..]
When you don't enable "Explorer Delete" the cursor will go to the next file after the last deleted -- as it should.
When you don't enable "Explorer Delete" the cursor will go to the next file after the last deleted -- as it should.
- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
#1 Google search for: disable "delete confirmation" site:ghisler.ch
Heh. Guess I recently unclicked "explorer method" for Delete, and was looking for how to get rid of the pop-up. Appears there isn't any way if you are using TC Delete Method :/
You know a constant Pop-up for delete confirmation is as bad as Vista's much maligned [Allow] [Deny]. But it would appear that after all this time, its not going anywhere.
Even with an AHK fix, the onscreen flash popup is unnerving.
ANd I just realized I can't use this. If so then the couple things I actually checkBoxed for confirmation will get autoconfirmed.
What is doubly odd about it, if TC Delete method is enabled, the exact same message is displayed for "Delete" and "Shift Delete" - which makes them seem like they do the same thing. Whereas one will go to Recycle and one gets fully deleted, and would need something like HandyRecovery.
Heh. Guess I recently unclicked "explorer method" for Delete, and was looking for how to get rid of the pop-up. Appears there isn't any way if you are using TC Delete Method :/
You know a constant Pop-up for delete confirmation is as bad as Vista's much maligned [Allow] [Deny]. But it would appear that after all this time, its not going anywhere.
Even with an AHK fix, the onscreen flash popup is unnerving.
Code: Select all
Mbutton::
if GetKeyState("Shift") = 1
{
Send {Delete}
}
else if GetKeyState("Ctrl") = 1
{
Send {CTRL Up}+{Ins}{CTRL DownTemp}
}
else
{
ifWinActive, ahk_class TTOTAL_CMD
{
Send {Delete}
WinWait, ahk_class #32770
ControlClick, &Yes
}
else
Send {Delete}
}
return
What is doubly odd about it, if TC Delete method is enabled, the exact same message is displayed for "Delete" and "Shift Delete" - which makes them seem like they do the same thing. Whereas one will go to Recycle and one gets fully deleted, and would need something like HandyRecovery.
- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
-
- New Member
- Posts: 1
- Joined: 2009-07-24, 21:56 UTC
- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
Well Microsoft must have fixed their handling of deletion of junctions behind my back. I've done a number of tests with Explorer Delete Method enabled (WIN2K)
1) Delete Junction
2) Delete Directory that contained a Junction
Both deletions only removed the proper files/folders. No directories referenced by the junction were deleted.
Interestingly, when the Files were restored from the RecycleBin, the Junctions were restored as Junctions.
1) Delete Junction
2) Delete Directory that contained a Junction
Both deletions only removed the proper files/folders. No directories referenced by the junction were deleted.
Interestingly, when the Files were restored from the RecycleBin, the Junctions were restored as Junctions.
*BLINK* TC9 Added WM_COPYDATA and WM_USER queries for scripting.