| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | Disk Karamba |
linux | Desktop Environment->Desktop Widgets | Free |
View Detail
|
|||||||||
Disk Karamba is a disk monitoring SuperKaramba theme. Disk Karamba is not very special but perhaps will be useful for someone. I used for it one icon from MetalGold icon theme. Tags: |
||||||||||||||
| 2 | Hyperdata USB-IDE HARD DISK DRIVER |
driver | Other->HP | Free |
View Detail
|
|||||||||
| 3 | Disk Imager 1.0 |
windows | Home Education->Miscellaneous | $14.95 |
View Detail
|
|||||||||
Disk Imager allows you to create disk images from folders with customized file system formats, custom volume names, AES-128 bit encryption, and your choice of a few different disk image formats. With Disk Imager you can retrieve very detailed information, displayed in textual format, about any disk image. Also, Disk Imager brings back the lost ability to resize disk images, that was lost in OS X 10.3. Tags: |
||||||||||||||
| 4 | Secret Disk 6 |
windows | Utilities->PGP Encryption | $19.95 |
View Detail
|
|||||||||
Secret Disk creates password protected invisible disk on your PC to store any private files of yours. It will appear as usual disk on your PC. It will completely disappear within one second when you need top privacy. Files stored on this disk will be protected. It is password protected. It will act as usual disk to store your files, pictures, videos. When Secret Disk is visible a small icon blinks in the tray. Just click it and Secret Disk will disappear within one second and all your files on it will be protected. You can set to hide your Secret Disk when Screen Saver starts (computer is idle), or when you press emergency button F12. Tags: |
||||||||||||||
| 5 | Disk CleanUp 3.2 |
windows | Utilities->File Cleanup | Free |
View Detail
|
|||||||||
Disk CleanUp for Windows 95/NT is a freeware disk utility designed to clear previously deleted files completely. Deleting a file will normally just remove the files directory entry, leaving the data itself on the disk. Disk CleanUp will completely eliminate the contents of your deleted files. It gives you the option to specify an NSA-approved disk-erasing method and background execution priority. Disk CleanUp works with any FAT16 or FAT32 hard drive, as well as MS Windows NTFS volumes. Disk CleanUp can be configured to optionally place its program icon in the taskbar notification tray. Tags:
|
||||||||||||||
| 6 | Disk Imager 1.0 |
mac | Utilities->System Utilities | $14 |
View Detail
|
|||||||||
Disk Imager is a useful utility that will help you create disk images from folders with customized file system formats, custom volume names, AES-128 bit encryption, and your choice of a few different disk image formats. With Disk Imager you can retrieve very detailed information, displayed in textual format, about any disk image. Also, Disk Imager brings back the lost ability to resize disk images, that was lost in OS X 10.3. Limitations: · 15 days trial Whats New in This Release: · Initial Release · Universal Binary Tags: |
||||||||||||||
| 7 | Disk Piecharter 2.3 |
windows | Utilities->System Tools | $15.00 |
View Detail
|
|||||||||
Tags:
|
||||||||||||||
| 8 | DTI Disk Wipe |
windows | System->Back Up and Recovery | $49 |
View Detail
|
|||||||||
DTI Disk Wipe description Disk Wipe completely and permanently overwrites and destroys all existing data on a hard disk, overwriting every physical byte Disk Wipe completely and permanently overwrites and destroys all existing data on a hard disk, overwriting every physical byte of the disk. Once Disk Wipe has been run, all data from every sector In addition, many drive overlays (DDO) or special partitioning software is oftentimes difficult to remove by a simple F-disk and Format. Disk Wipe makes this task easy. Two simple steps will completely remove any DDO or special partitioning information. Yes, this program will permanently erase and destroy all data and allow you to overwrite the disk as many times as you like and still conform to US Department of Defense requirements. (DoD Standard 5220.22-M) Tags: |
||||||||||||||
| 9 | AppleII::Disk 0.08 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
AppleII::Disk is a Perl module for block-level access to Apple II disk image files. SYNOPSIS use AppleII::Disk; my $disk = AppleII::Disk->new(image.dsk); my $data = $disk->read_block(1); # Read block 1 $disk->write_block(1, $data); # And write it back :-) AppleII::Disk provides block-level access to the Apple II disk image files used by most Apple II emulators. (For information about Apple II emulators, try the Apple II Emulator Page at http://www.ecnet.net/users/mumbv/pages/apple2.shtml.) For a higher-level interface, use the AppleII::ProDOS module. AppleII::Disk provides the following methods: $disk = AppleII::Disk->new($filename, [$mode]) Constructs a new AppleII::Disk object. $filename is the name of the image file. The optional $mode is a string specifying how to open the image. It can consist of the following characters (case sensitive): r Allow reads (this is actually ignored; you can always read) w Allow writes d Disk image is in DOS 3.3 order p Disk image is in ProDOS order If you dont specify d or p, then the format is guessed from the filename. .PO and .HDV files are ProDOS order, and anything else is assumed to be DOS 3.3 order. If you specify w to allow writes, then the image file is created if it doesnt already exist. $size = $disk->blocks([$newsize]) Gets or sets the size of the disk in blocks. $newsize is the new size of the disk in blocks. If $newsize is omitted, then the size is not changed. Returns the size of the disk image in blocks. This refers to the logical size of the disk image. Blocks outside the physical size of the disk image read as all zeros. Writing to such a block will expand the image file. When you create a new image file, you must use blocks to set its size before writing to it. $contents = $disk->read_block($block) Reads one block from the disk image. $block is the block number to read. $contents = $disk->read_blocks(@blocks) Reads a sequence of blocks from the disk image. @blocks is a reference to an array of block numbers. As a special case, block 0 cannot be read by this method. Instead, it returns a block full of 0 bytes. This is how sparse files are implemented. If you want to read the actual contents of block 0, you must call $disk->read_block(0) directly. $contents = $disk->read_sector($track, $sector) Reads one sector from the disk image. $track is the track number, and $sector is the DOS 3.3 logical sector number. This is currently implemented only for DOS 3.3 order images. $disk->fully_allocate() Expands the the physical size of the disk image file to match the logical size of the disk image. It will be expanded as a sparse file if the filesystem containing the image file supports sparse files. $disk->write_block($block, $contents, [$pad]) Writes one block to the disk image. $block is the block number to write. $contents is the data to write. The optional $pad is a character to pad the block with (out to 512 bytes). If $pad is omitted or null, then $contents must be exactly 512 bytes. $disk->write_blocks(@blocks, $contents, [$pad]) Writes a sequence of blocks to the disk image. @blocks is a reference to an array of block numbers to write. $contents is the data to write. It is broken up into 512 byte chunks and written to the blocks. The optional $pad is a character to pad the data with (out to a multiple of 512 bytes). If $pad is omitted or null, then $contents must be exactly 512 bytes times the number of blocks. As a special case, block 0 cannot be written by this method. Instead, that block of $contents is just skipped. This is how sparse files are implemented. If you want to write the contents of block 0, you must call $disk->write_block directly. $disk->write_sector($track, $sector, $contents, [$pad]) Writes one sector to the disk image. $track is the track number, and $sector is the DOS 3.3 logical sector number. $contents is the data to write. The optional $pad is a character to pad the sector with (out to 256 bytes). If $pad is omitted or null, then $contents must be exactly 256 bytes. This is currently implemented only for DOS 3.3 order images. $padded = AppleII::Disk::pad_block($data, [$pad, [$length]]) Pads $data out to $length bytes with $pad. Returns the padded string; the original is not altered. Dies if $data is longer than $length. The default $pad is " ", and the default $length is 512 bytes. If $pad is the null string (not undef), just checks to make sure that $data is exactly $length bytes and returns the original string. Dies if $data is not exactly $length bytes. pad_block is a subroutine, not a method, and is not exported. You probably dont need to call it directly anyway, because the write_XXX methods will call it for you. Tags: |
||||||||||||||
| 10 | Piechart Disk 1.13 |
windows | System->System Miscellaneous | Free |
View Detail
|
|||||||||
Piechart Disk is a handy application that allows you to see where your disk space is going in an easy to read pie-chart. Piechart Disk is a handy application that allows you to see where your disk space is going in an easy to read pie-chart. You select the top directory to scan, and Piechart Disk scans the directory then displays an interactive directory and file list with pie-chart. Since Piechart Disk sorts the directories and files, the largest directories and files are at the top of the list. Click the interactive file and directory list green plus and red minus icons to open and close directories, changing what is displayed in the pie-chart. Right click a directory or file for that entrys detailed information. Tags: |
||||||||||||||
| 11 | Disk Recon 3.2 |
windows | Utilities->Disk Maintenance and Repair | $29.99 |
View Detail
|
|||||||||
Cleaning up your harddisk can be a time-consuming activity, but Disk Recon makes this job a lot easier. Disk Recon allows you to investigate folder sizes, find duplicate files, examine your disk usage, monitor files and directories and more. New features include batch file renaming, batch attribute changing and file / image preview. With its intuitive interface you can easily find all the information you need to clean up your harddisk and let our computer run smoother. It is very important to know how diskspace is distributed in folders and subfolders. Disk Recon has an explorer-like treeview which shows the total size of the folder and the total number of files in it. The graphical display makes it even easier to understand this information. You might be surprised how many duplicate files are scattered over your harddisk which are taking up valuable disk space. Disk Recon can find duplicate files by filename, date, size or contents (CRC checksum for 100% accuracy). You have the option to delete or copy the found duplicates. With the bulk rename utility of Disk Recon you can rename thousands of images, photos, documents or mp3 files in a few seconds with just a few mouseclicks. Disk Recon has an optional file and image preview so you can immediately see the contents of the files youre working with. Tags: |
||||||||||||||
| 12 | Disk Recon 3.4 |
windows | Utilities->File managers | Free |
View Detail
|
|||||||||
It is very important to know how diskspace is distributed in folders and subfolders. Disk Recon has an explorer-like treeview which shows the total size of the folder and the total number of files in it. The graphical display makes it even easier to understand this information. You might be surprised how many duplicate files are scattered over your harddisk which are taking up valuable disk space. Disk Recon can find duplicate files by filename, date, size or contents (CRC checksum for 100% accuracy). You have the option to delete or copy the found duplicates. With the bulk rename utility of Disk Recon you can rename thousands of images, photos, documents or mp3 files in a few seconds with just a few mouseclicks. Disk Recon has an optional file and image preview so you can immediately see the contents of the files youre working with. Tags: |
||||||||||||||
| 13 | Piechart Disk 1.08 |
windows | Utilities->Disk Analysis | Free |
View Detail
|
|||||||||
This handy program allows you to see where your disk space is going in an easy to read pie-chart. You select the top directory to scan, and Piechart Disk scans the directory then displays an interactive directory and file list with pie-chart. Since Piechart Disk sorts the directories and files, the largest directories and files are at the top of the list. Click the interactive file and directory list green plus and red minus icons to open and close directories, changing what is displayed in the pie-chart. Right click a directory or file for that entrys detailed information. Tags: |
||||||||||||||
| 14 | i.Disk 1.91 |
windows | Utilities->File managers | Free |
View Detail
|
|||||||||
i.Disk - Ever wanted to know where all the used space on your hard disk was hiding? i.Disk scans directory trees and displays the total space used by each directory in an easy to use form. You can drill down into the directorys to understand the layout of space. And when you want to clean up your disk there are same handy tools there to help. The directory called . is the space used by files in the base directory you are scanning from. i.Disk is a software that allows you view disk space. Usage: Browse to a directory -or- click on one of the disks listed on the left to start scanning. Once the scan is complete the red cancel button will grey out. The entry marked "." relates to the files in the directory your scanning from and not any of the subdirectories. If you attempt to delete this then youll be deleting the directory you scanning from and all files and folders contained within. This is probably not what you intended. Especially if you scanning a whole disk (i.e. C:) Then you can open any sub-directories by clicking the + next to the name. Each entry in the list has a right click menu to: Touch... This sets the modified time on a set of files in the subdirectory and all its children to the current time. You can specify multiple extensions by separating with space character, e.g.: *.gif *.png *.html Delete Files... This deletes some or all of the files in the subdirectory and all its children. The directories are left intact. You can specify multiple extensions by separating with space character. Delete Directory... This deletes all of the files and directories in the subdirectory then removes the subdirectory as well. Tags: |
||||||||||||||
| 15 | Disk Recon 3.3 |
windows | Utilities->File managers | $25 |
View Detail
|
|||||||||
Disk Recon is a disk exploration software. It allows you to view where all your folders and files are in a much more friendlier way than most conventional tools. With its extensive filter and search capabilities, Disk Recon is the premier choice for IT specialists and home users. Features of Disk Recon: · Analyze folder and disk space usage with an intuitive interface · Find all duplicate files by name, size or contents with an option to delete if necessary. · Any operation can be executed on subsets of data by using extensive filtering capabilities. · Filters include dates, sizes, attributes and even text to find within a file. · Retrieve statistical data about your files, by file types, or file sizes. · Export capabilities to MS Excel. · Intuitive interface with explorer-like controls. Where possible there are context-sensitive popups · Handles all file sizes ( >4GB ) · Local drives and network drives can be scanned. UNC notation is supported. · File monitor shows all file activity with a selected folder in great detail. · Show space lost by cluster size (slack space). · Supports compressed files/folders/drives (NTFS) Limitations: · 30 days trial. Tags: |
||||||||||||||
| 16 | Disk Recon 3.4 |
windows | Utilities->File managers | $25 |
View Detail
|
|||||||||
Disk Recon description This application provides everything you need to manage your hard disk space Disk Recon is a disk exploration software. It allows you to view where all your folders and files are in a much more friendlier way than most conventional tools. With its extensive filter and search capabilities, Disk Recon is the premier choice for IT specialists and home users. Features of Disk Recon: · Analyze folder and disk space usage with an intuitive interface · Find all duplicate · Any operation can be executed on subsets of data by using extensive filtering capabilities. · Filters include dates, sizes, attributes and even text to find within a file. · Retrieve statistical data about your files, by file types, or file sizes. · Export capabilities to MS Excel. · Intuitive interface with explorer-like controls. Where possible there are context-sensitive popups · Handles all file sizes ( >4GB ) · Local drives and network drives can be scanned. UNC notation is supported. · File monitor shows all file activity with a selected folder in great detail. · Show space lost by cluster size (slack space). · Supports compressed files/folders/drives (NTFS) Limitations: · 30 days trial. · Nag screen Tags:
|
||||||||||||||
| 17 | i.Disk 1.93 |
windows | Utilities->File managers | FREE |
View Detail
|
|||||||||
i.Disk - Ever wanted to know where all the used space on your hard disk was hiding? Changes from previous version Tags: |
||||||||||||||
| 18 | Disk Repair 10.0 |
windows | System->Hard Disk Utils | $134 |
View Detail
|
|||||||||
Disk Repair is a logical bad sector removal and repair software that removes the logical bad sectors and repairs " Track 0 Bad Disks ". Bad sectors are a major problem in hard disks, which are found to be mainly logical in nature. Computer companies usually have to replace the hard disk. Most often bad sectors spread and corrupt Track 0 of the disk due to which it doesnt get formatted, O/S doesnt get installed or copying data gives error. Logical bad sectors are irregularities on the magnetic media formed due to extensive read write operations, sudden voltage surges, certain viruses, corruptions in boot records etc. Here are some key features of "Disk Repair": · Simple and well guided steps to recover data. · Windows data recovery from accidental files/folders deletion /when Recycle bin has been emptied or use of shift + del key · Accidental formatting & creating different file system · Unexpected system shut down or software failure · Registry corruption · Removed by virus attack or power failure · Simulated previously existing partitions · File recovery from missing or Lost folders · Multi Disk support · Unicode multiple lingual support · Recovers even if bad sectors hinder drive access · Versatile recovery filter that helps recover required files only · Save the recovery log at any time during recovery analysis · Recovers even if FAT/MFT is fragmented and broken . · Recovers even if FAT/MFT meta tags are overwritten . · Full support for IDE, EIDE, SCSI , SATA, PAN, ZIP & USB drives Disk Repair is a hard disk tool designed to repair the logically formed bad sectors. Disk Repair realigns the magnetic orientation to make each byte read and write able and hence perform the easy hard disk space recovery. The software is simple to use and is helpful in many instances of disk problems. Removing bad sectors using Disk Repair will clear off all data/files/folders. If you have important data, it is advisable to recover your data before bad sector removal. Use Quick Recovery to recover data. Here are some key features of "Disk Repair": · Disk Repair is a utility to remove/repairs logically formed bad sectors from Hard Disks and Floppy Disks. · Disk Repair is a logical bad sector removal and repair software that removes the logical bad sectors and repairs Track 0 Bad Disks . Limitations: · Removing bad sectors using Disk Repair will clear off all data/files/folders. Tags: |
||||||||||||||
| 19 | Arctor Disk-To-Disk Backup 2.1.0.5 |
windows | System->Back Up and Recovery | $99 |
View Detail
|
|||||||||
Arctor is hard disk backup made simple, fast, smart and powerful. Todays cheapest and fastest backup media are hard disks - so why not simply use one for your backups? At a current price of $1.30 per GB or less, no other backup medium is cheaper than IDE hard disks. And backups on hard disks are much quicker and easier to restore, check and update. Large enterprises have used automated backup solutions based on tape libraries or the more modern D2D backup for years. With Arctor, even the small and medium sized companies can setup a reliable backup solution with fast restore capabilities at a fraction of the costs. Arctor offers enterprise computing concepts at affordable prices. The Arctor solution only requires a standard PC with one or more large disk drives (or a RAID system of any type). Suitable hardware can be purchased new for as little as a few hundred dollars; add Arctor, and you then have a network attached backup system for a workgroup or a small business. Since Arctors hardware requirements are quite low, even an outdated Windows workstation with one or more new 120 GB drive(s) will be perfectly adequate. Download the free, fully functional trial version and see how easy it is to set up and use Arctor! Here are some key features of "Arctor DiskToDisk Backup": · Complete user interface redesign · New Statistics, Analysis and Maintenance Features: Transfer Bandwidth, Disk Usage, Selected Files, Archived Files, Orphans, File Size Distribution etc. · S.M.A.R.T. disk monitoring helps you to detect problems with your hard disks before they get serious · Advanced scheduling options for individual rules and rule groups: Rules can be combined to rule groups with individual scheduling options: · interval, time-of-day, week day, on request, retry missed schedules · Advanced Restore Wizard: restore missing/modified files only, preserve read-only file attribute in compression mode · I/O Bandwidth limiting to conserve network resources · Commandline Interface to support batch operations · Support for long file names Tags: |
||||||||||||||
| 20 | Hard Disk Sentinel 2.40 |
windows | System->Hard Disk Utils | $23.00 |
View Detail
|
|||||||||
Tags: |
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
