Main > Free Download Search >

Free securely delete software for windows

securely delete

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4041
Secure Delete 1.0.1

Secure Delete 1.0.1


Delete confidential files so that even retrieving them they be no more readable/viewable more>>
Delete confidential files so that even retrieving them they be no more readable/viewable Secure Delete will enable you to erase confidential files so that even retrieving them they be no more readable/viewable.
<<less
Download (902KB)
Added: 2006-11-05 License: Freeware Price:
1122 downloads
Secure Deletion 1.0

Secure Deletion 1.0


Secure Deletion - the tool you need if you have to securely delete a file more>>
Secure Deletion - the tool you need if you have to securely delete a file SecureDelete is the tool you need if you have to securely delete a file.
SecureDelete can delete only one file at a time.
Selecting Options | Disable warning will prevent a dialog appearing asking to confirm your desire to delete the file. You must set this option each time you use SecureDelete since the program is too simple to use Windows Registry to save persistent data.
If you want to implement such a functionality, write your own SecureDelete application and implement such
additional functions as you find appropriate.
<<less
Download (296KB)
Added: 2007-02-01 License: Freeware Price:
1011 downloads
Dr Delete 1.0

Dr Delete 1.0


This program will erase on next PC reboot annoying files like index.dat, dlls, etc that cannot be otherwise deleted. more>>
This program will erase on next PC reboot annoying files like index.dat, dlls, etc that cannot be otherwise deleted. Dr Delete allows you to remove on next PC reboot annoying files like index.dat, dlls, etc that cannot be otherwise deleted.
It has a very simple interface, load up Dr. Delete and theres two buttons: Browse and Delete. Click browse, find the troublesome file then click Delete.
Dr Delete also does not even require any installation.
<<less
Download (276KB)
Added: 2007-07-23 License: Freeware Price:
1122 downloads
AHHB Power Delete 1

AHHB Power Delete 1


Remove unwanted files from your computer completely. more>>

AHHB Power Delete 1 provides you a powerful tool which helps you remove unwanted files from your computer completely. Delete your important unwanted files securely and disables the ability to restore them using any Delete-File-Restoring Applications.

<<less
Download (1.7MB)
Added: 2006-05-31 License: Freeware Price:
289 downloads
SDelete 1.4

SDelete 1.4


Securely overwrite your sensitive files and cleanse your free space of previously deleted files more>>
Securely overwrite your sensitive files and cleanse your free space of previously deleted files One feature of Windows NT/2000s (Win2K) C2-compliance is that it implements object reuse protection. This means that when an application allocates file space or virtual memory it is unable to view data that was previously stored in the resources Windows NT/2K allocates for it. Windows NT zero-fills memory and zeroes the sectors on disk where a file is placed before it presents either type of resource to an application. However, object reuse does not dictate that the space that a file occupies before it is deleted be zeroed. This is because Windows NT/2K is designed with the assumption that the operating system controls access to system resources. However, when the operating system is not active it is possible to use raw disk editors and recovery tools to view and recover data that the operating system has deallocated. Even when you encrypt files with Win2Ks Encrypting File System (EFS), a files original unencrypted file data is left on the disk after a new encrypted version of the file is created.
The only way to ensure that deleted files, as well as files that you encrypt with EFS, are safe from recovery is to use a secure delete application. Secure delete applications overwrite a deleted files on-disk data using techiques that are shown to make disk data unrecoverable, even using recovery technology that can read patterns in magnetic media that reveal weakly deleted files. SDelete (Secure Delete) is such an application. You can use SDelete both to securely delete existing files, as well as to securely erase any file data that exists in the unallocated portions of a disk (including files that you have already deleted or encrypted). SDelete implements the Department of Defense clearing and sanitizing standard DOD 5220.22-M, to give you confidence that once deleted with SDelete, your file data is gone forever. SDelete is presented with full source code so that you can verify yourself that it works as advertized. Note that SDelete securely deletes file data, but not file names located in free disk space.
SDelete is a command line application which takes a number of options. In any given use, it helps you delete one or more files and/or directories, or to cleanse the free space on a logical disk. SDelete accepts wild card characters as part of the directory or file specifier.
Usage: sdelete [-p passes] [-s] [-q]
sdelete [-p passes] -z [drive letter]
-p passes
Specifies number of overwrite passes
-s
Recurse subdirectories
-q
Dont print errors (quiet)
-z
Cleanse free space
Securely deleting a file that has no special attributes is relatively straight-forward: the secure delete program simply overwrites the file with the secure delete pattern. What is more tricky is securely deleting Windows NT/2K compressed, encrypted and sparse files, and securely cleansing disk free spaces.
Compressed, encrypted and sparse are managed by NTFS in 16-cluster blocks. If a program writes to an existing portion of such a file NTFS allocates new space on the disk to store the new data and after the new data has been written, deallocates the clusters previously occupied by the file. NTFS takes this conservative approach for reasons related to data integrity, and in the case of compressed and sparse files, in case a new allocation is larger than what exists (the new compressed data is bigger than the old compressed data). Thus, overwriting such a file will not succeed in deleting the files contents from the disk.
To handle these types of files SDelete relies on the defragmentation API. Using the defragmentation API SDelete can determine precisely which clusters on a disk are occupied by data belonging to compressed, sparse and encrypted files. Once SDelete knows which clusters contain the files data, it can open the disk for raw access and overwrite those clusters.
Cleaning free space presents another challenge. Since FAT and NTFS provide no means for an application to directly address free space, SDelete has one of two options. The first is that it can, like it does for compressed, sparse and encrypted files, open the disk for raw access and overwrite the free space. This approach suffers from a big problem: even if SDelete were coded to be fully capable of calculating the free space portions of NTFS and FAT drives (something thats not trivial), it would run the risk of collision with active file operations taking place on the system. For example, say SDelete determines that a cluster is free, and just at that moment the file system driver (FAT, NTFS) decides to allocate the cluster for a file that another application is modifying. The file system driver writes the new data to the cluster, and then SDelete comes along and overwrites the freshly written data: the files new data is gone. The problem is even worse if the cluster is allocated for file system metadata since SDelete will corrupt the file systems on-disk structures.
The second approach, and the one SDelete takes, is to indirectly overwrite free space. First, SDelete allocates the largest file it can. SDelete does this using non-cached file I/O so that the contents of the NT file system cache will not be thrown out and replaced with useless data associated with SDeletes space-hogging file. Because non-cached file I/O must be sector (512-byte) aligned, there might be some left over space that isnt allocated for the SDelete file even when SDelete cannot further grow the file. To grab any remaining space SDelete next allocates the largest cached file it can. For both of these files SDelete performs a secure overwrite, ensuring that all the disk space that was previously free becomes securely cleansed.
On NTFS drives SDeletes job isnt necessarily through after it allocates and overwrites the two files. SDelete must also fill any existing free portions of the NTFS MFT (Master File Table) with files that fit within an MFT record. An MFT record is typically 1KB in size, and every file or directory on a disk requires at least one MFT record. Small files are stored entirely within their MFT record, while files that dont fit within a record are allocated clusters outside the MFT. All SDelete has to do to take care of the free MFT space is allocate the largest file it can - when the file occupies all the available space in an MFT Record NTFS will prevent the file from getting larger, since there are no free clusters left on the disk (they are being held by the two files SDelete previously allocated). SDelete then repeats the process. When SDelete can no longer even create a new file, it knows that all the previously free records in the MFT have been completely filled with securely overwritten files.
To overwrite file names of a file that you delete, SDelete renames the file 26 times, each time replacing each character of the files name with a successive alphabetic character. For instance, the first rename of "foo.txt" would be to "AAA.AAA".
The reason that SDelete does not securely delete file names when cleaning disk free space is that deleting them would require direct manipulation of directory structures. Directory structures can have free space containing deleted file names, but the free directory space is not available for allocation to other files. Hence, SDelete has no way of allocating this free space so that it can securely overwrite it.
<<less
Download (24KB)
Added: 2006-05-27 License: Freeware Price:
912 downloads
XSecure 3.02

XSecure 3.02


Secure v3.02 is a very easy to use encryption software application that is vital to anyone that shares a computer or stores any type of sensitive documents / images on a computer more>> Secure v3.02 is a very easy to use encryption software application that is vital to anyone that shares a computer or stores any type of sensitive documents / images on a computer. Its Explorer type, user friendly and familiar interface makes encryption of files an easy task that takes just seconds to secure your data. It uses the very powerful Blowfish cipher designed by Bruce Schneier, that has no known successful attacks. It has the ability to encrypt files up to 448-bit encryption (depending on password phrase length used). This software also contains an option to securely delete files or folder contents via the right mouse click menu.<<less
Download (2.9M)
Added: 2008-10-22 License: Freeware Price:
388 downloads
Permanent File Delete 1.0.0.4

Permanent File Delete 1.0.0.4


permanently delete documents more>> Permanent File Delete now runs from the command line this means that you can incoparate Permanent File Delete with your other apps and batch scripts. Deleting documents then emptying the Recycle Bin does not mean that they are gone for good! There are a host of un-delete tools that can recover these documents. Permanent File Delete is a powerful and safe tool that allows you to permanently delete documents on your hard disk and Flash device.<<less
Download (606k)
Added: 2008-11-02 License: Freeware Price:
516 downloads
 
Other version of Permanent File Delete
Permanent file delete 1.0.0.3A powerful and safe tool that allows you to permanently delete documents. Permanent file delete ...A powerful and safe tool that allows you to permanently delete documents
License:Freeware
Download (605KB)
812 downloads
Added: 2007-10-28
Permanent File Delete 1.0.0.1Permanent File Delete is a powerful and safe tool that allows you ...Crypturn is a powerful and safe tool that allows you to protect private
License:Freeware
Download (881KB)
900 downloads
Added: 2007-06-21
Remote Registry Delete 1.0

Remote Registry Delete 1.0


Remote Registry Delete is a utility for remotely removing subkeys and values from registry LOCAL_MACHINE key more>>

Remote Registry Delete 1.0 is a utility for remotely removing subkeys and values from registry LOCAL_MACHINE key. Created specially to be used in batch files.

<<less
Download (33.2KB)
Added: 2004-01-19 License: Freeware Price:
downloads
Blank And Secure 2.02

Blank And Secure 2.02


Blank And Secure is a portable tool to securely delete the data. Secure delete files are required to block the recovering of deleted data. Secure deletion is possible with this program, because Blank And Secure overwrites the data with zeros! more>> <<less
Download (25.04KB)
Added: 2009-11-12 License: Freeware Price: $0.00
downloads
 
Other version of Blank And Secure
Price: $0.00
License:Freeware
Download (25.04KB)
downloads
Added: 2009-09-13
PlasmaNet IE Cache Delete

PlasmaNet IE Cache Delete


PlasmaNet IE Cache Delete is a small software application that deletes all Internet Explorer cache more>>
PlasmaNet IE Cache Delete is a small software application that deletes all Internet Explorer cache PlasmaNet IE Cache Delete is a small software application that deletes all Internet Explorer cache.
To use the program, extract it to your desktop and run, or create a shortcut to your startup folder so your cache to be deleted when you start Windows.
<<less
Download (6.29KB)
Added: 2007-03-07 License: Freeware Price:
961 downloads
DeleteOnClick 2.2.0.14

DeleteOnClick 2.2.0.14


securely delete (wipe) files more>> A very simple to use program that securely deletes (wipes) files so they cannot be undeleted or recovered. Implemented as a Windows Explorer extension so you just need to right-click on the files then choose Securely Delete to wipe the files. Once a file is wiped it cannot be undeleted or recovered with any tools. A comprehensive help file is included, although you wont need to read it.<<less
Download (1.0M)
Added: 2008-11-04 License: Freeware Price:
832 downloads
 
Other version of DeleteOnClick
DeleteOnClick 2.1.0.202BrightSparks - DeleteOnClick is a very simple program that lets you securely delete files. DeleteOnClick. DeleteOnClick is a very simple program that lets you securely
License:Freeware
Download (988KB)
1369 downloads
Added: 2007-05-17
DeleteOnClick 1.02BrightSparks Pte Ltd - Securely delete (wipe) your files so they cannot be undeleted or recovered. DeleteOnClick. A very simple to use program
License:Freeware
Download (1.4MB)
1939 downloads
Added: 2005-10-18
Delete Doctor 2.1

Delete Doctor 2.1


Delete Doctor - Delete files that are difficult to delete, files that resist deletion more>>
Delete Doctor - Delete files that are difficult to delete, files that resist deletion Delete files that are difficult to delete, such as some files left by viruses and trojans, or files with corrupted file names.
This program can also delete files like the "index.dat" files, which store Internet history, by scheduling them for deletion upon system restart.
Select a file to delete from a built-in file browser or drag a file to the program window from Explorer.
<<less
Download (148KB)
Added: 2005-04-05 License: Freeware Price:
2633 downloads
 
Other version of Delete Doctor
Delete Doctor 2.1Delete files that are difficult to delete, files that resist deletion. Delete Doctor 2.1 - Kevin ...Delete files that are difficult to delete, such as some files left by viruses and
License:Freeware
Download (102KB)
2974 downloads
Added: 2004-05-05
Delete IE Cache 1

Delete IE Cache 1


Deletes all IE caches - there are several in windows. To use, extract to your desktop and run, or create a shortcut to your startup folder so your cache is deleted and your windows is fresh everytime more>>

Delete IE Cache 1 offers you an easy and effective way to delete all IE caches (several in windows). To use, extract to your desktop and run, or create a shortcut to your startup folder so your cache is deleted and your windows is fresh everytime you start your PC.

<<less
Download (6.3KB)
Added: 2007-03-04 License: Freeware Price:
74 downloads
Shredder 1.0

Shredder 1.0


Shredder is a program that will securely delete files from your computer more>>
When you delete a file it is not immediately removed from the hard drive. Only its place in the File Allocation Table (FAT) is removed. The FAT is similar to a Table of Contents in an extremely large book. If you removed an item from it you would have a very hard time finding it in the book.
Deleting a file and removing it from the FAT informs Windows that this space is available for overwriting. It will be overwritten the next time you copy something that is the same size or smaller. This could be a few minutes or much longer if what you are copying is larger. At any time before that, the file can be recovered using any Undelete program.
Shredder is a program that will overwrite the file you choose with binary data (basically garbage) making it unreadable and useless even if it is recovered. It will work with any type of file and its use is very basic and simple.
<<less
Download (162KB)
Added: 2006-09-20 License: Freeware Price:
1395 downloads
SuperShredder 1.01

SuperShredder 1.01


SuperShredder gives you the ability to securely delete files more>>
SuperShredder gives you the ability to securely delete files SuperShredder gives you the ability to securely delete files.
When you delete a file from your system (and remove it from your Recycle Bin) the contents can still be retrieved by someone who is knows what theyre doing - they can even potentially recover data thats been overwritten!
Now this doesnt really matter if youre just deleting some unused Word documents, but if you deal with sensitive data such as encrypted information, then its VERY important that these files be securely deleted... Thats where AnalogX SuperShredder comes in!
SuperShredder gives you the ability to delete files using not only common methods such as Gutmann and NISPOM (DoD), but can be completely customized to give you all the security and/or performance you may need.
It can receive files via drag-and-drop onto the application or the icon, selecting files from inside the program, command line, and can even add a shortcut to your Send To menu inside the Windows Explorer so its simple to delete files in a secure and convenient fashion.
<<less
Download (156KB)
Added: 2006-04-11 License: Freeware Price:
1321 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5