1.44mb
Format144 1.11
Unconditional format of floppy disk. more>>
Format144 is a simple command-line tool which is able to format disktettes to the most common standard. Source code is realeased under the GNU GPL for study and improvement.
Unconditionally formats a standard 1.44MB floppy disk in drive A:. Windows XP has a problem formatting demagnetized or corrupt diskettes. Source code available for study and improvement
BFI 1.0
BFI was designed to be used on bootable CD-Roms! more>> BFI builds FAT floppy images. It was designed to be used on bootable CD-Roms, but it can also be used to create floppy images for other purposes. The floppy sizes supported are: 720KB, 1.44MB, 2.88MB, 1.2MB, DMF2048, DMF1024, 1.68MB, 160KB, 180KB, 320KB, 360KB.
BFI is free Software<<less
Skwyrul 1.4 SR1
Probably the easiest to use and most powerful Note management tool available, the only thing to configure is your password, and thats if you choose to use this facility! It uses a tree structure to or more>>
DVD2CD 1.6
Used to copy any media to multiple smaller media retaining the file structure. more>> It is real handy for people who do not have a DVD burner but have a DVD they want a copy of... they would split the DVD into even pieces of like 700MB using this program and then burn them each to CDs. My program supports disk sizes of 1.44Mb - 9400Mb. This program will NOT retain the autorun with the spanning (under development). None of my software contains any spyware, adware, any other malicious code. I distribute this as freeware for a reason. No way anything else gets installed to your machine!!! IF YOU TRY THIS AND IT DOES NOT WORK FOR YOU -- EMAIL ME!! Need a custom application, contact me!! Now Supports CD Burning (with XP)!!<<less
My program supports disk sizes of 1.44Mb - 9400Mb. This program will NOT retain the autorun with the spanning (under development). None of my software contains any spyware, adware, any otherLicense:Freeware
ArjVol 1.0
ArjVol is a Windows compatible front end shell for the popular DOS ARJ archiver. more>>
ArjVol is a Windows compatible front end shell for the popular DOS ARJ archiver.
Its purpose is to allow you to join together bigger files that have been split into multiple ARJ volumes, and to create multiple ARJ volumes out of your own large files.
In this day and age where many people and companies are making software larger and larger its hard to back up your programs unless you have a tape back up system, recordable cd-rom, or large media floppies that hold more than the standard 1.44Mb floppy will hold.
If you are still using the 1.44 floppy as your main source of backing up files and programs then this utility will be useful for you. Simply put it will allow you to split up a 10 Mb file into 10 files that will each fit onto a floppy disk.
FSplit 1.1
A command line utility that splits a file in more parts more>>
FSplit 1.1 is designed as a smart and useful command line utility that splits a file in more parts. You can obtain main information on how program works running it from the console prompt without parameters or reading the file fsplt_xx.txt (included in the zip file).
You can rebuild a splitted file with COPY command, using /B option (pay attention to the position of /B option in the command line, as shown in fsplt_xx.txt file). FSplit allows splitting by maximum files size or by files number.
FSPLIT sourcefile [destfile] /Snnnn /Nnnnn
/Snnnn maximum files size (nnnn = max size in bytes) (max. 2,147,483,647)
/SCD700 700mb cd capacity
/SCD650 650mb cd capacity
/SZIP250 250mb zip capacity
/SZIP100 100mb zip capacity
/SFLOPPY144 1.44mb floppy capacity
/Nnnnn number of files
/F force (no confirmation requests)
Enhancements
- Skip request option.
NTFSFlp 1.0
Ever wondered why you cant put NTFS on a floppy disk? more>>
Note: NTFSFlp should be run before you access your floppy drive for the first time after a reboot of your machine. If you mount a FAT drive and then run NTFSFlp, the FAT file system driver will crash the machine when the characteristics of the floppy drive change out from under it (see How It Works, below, for more information).
The first thing you will want to do is to format an NTFS floppy. Insert a floppy into your a: drive and enter "ntfsflp /f". Once the format is complete you will be able to access and write to the NTFS floppy in the same way as FAT floppies. You will notice is that there is significantly more disk activity, even when simple operations are performed, on the NTFS floppy than would occur on a FAT floppy. In addition, disk activity will continue for some time after you perform a modification of the data on the floppy. For this reason, I have included ntsync in this package, so that you can flush data onto an NTFS floppy before removing it.
NTFS floppy support must be enabled with NTFSFlp before you can access an NTFS floppy disk. Support is automatically enabled when you format an NTFS floppy, but can also be enabled by running NTFSFlp and not specifying any command-line arguments. You would need to do this if you created an NTFS floppy disk, rebooted the system and wished to access the floppy again.
NTFSFlp is a demonstration of NTFS floppy-disk support. It is not envisioned that anyone would want automatic NTFS floppy-disk support every time you run NT, so NTFSFlp must be used to manually enable support.
Windows NT actually goes to some lengths to prevent a user from creating an NTFS floppy disk. The first line of prevention is in the format utility. If a user specifies an NTFS format, format checks to make sure that the media is not a floppy. Then it checks to see if the medium is large enough to fit "minimum" NTFS on-disk data structures. Finally, it attempts to make an NTFS log file that is 2MB in size - an operation that will obviously fail on a 1.44MB floppy.
If you manage to get past these hurdles and get NTFS on a floppy, the NTFS driver itself will fail to mount floppy disks. Further, NTFS requires that the device driver for the media it is mounting implement the IOCTL_DISK_GET_PARTITION_INFO device I/O control call, something that floppy disk drivers are not required to do (and generally dont).
Using SoftICE for Windows NT I was able to trick format into creating an NTFS floppy disk with a log file that is only 256KB in size. This is large enough for NTFS to be able to function, and leaves 1MB of space on the floppy after NTFS structures have been created. To format an NTFS floppy, NTFSFlp copies the image of the NTFS floppy I created onto other floppy disks.
To trick NTFS into mounting an NTFS floppy, NTFSFlp loads a device driver, flpflt.sys, that changes the characteristics of the floppy disk device so that it does not look like a floppy. Flpflt also intercepts Device I/O Control calls that are directed at the floppy and implements IOCTL_DISK_GET_PARTITION_INFO. Note that flpflt.sys is not a filter driver - it reaches into the floppy0 device object and changes its characteristics, and replaces the IRP_MJ_DEVICE_CONTROL vector in the floppy drivers request handler table to point at its own. This technique is an example of another way to intercept and control requests that are sent to a device, and is in many senses actually more powerful than filtering in the traditional NTFilemon way.
NTFS floppy disks could be useful for storing compressed files on a floppy. In addition, NT 5.0 NTFS supports encryption, which would make it possible to have secure floppy disks.
Sorted! 1.0.9
Sorted is a file utility which sorts selected files into folders of predefined size. more>>
It allows you to fetch files from multiple directories & sub directories, fetch & fetch again to create custom lists, fetch specific files or file types, list full path or just file name, easily launch any file in list, sort files into folders of any size (eg folders of 700MB, 1.44MB, 10GB), easy selection/deselection of files to sort, choose how much of the original path to include (depth), never overwrites files or folders but adds increment postfix to name, randomize sort for unique compilations, and has a step-by-step easy to use interface.
This is a handy utility for preparing files and/or folders to be burnt on to CD-Rs, for ordering files within folders ? even for gathering together files of the same type.
If you have a CD burner and regularly burn collections of MP3 files, or digital camera images, then Sorted is probably exactly what you want.
File Spanning 1.0
File Spanning - Split and build back files more>>
The utility provides also the building capability to re-create the original file from the multi-files.
It allows you to split a file into smaller multiple files. When splitting a file, you can select a file size of 500K, 1MB, 1.44MB, 3MB, or 5MB.
Floppy Disk Checker 1.0
Floppy Disk Checker checks you 1.44MB floppy disks for bad sectors more>>
Floppy Disk Checker cannot be run in windows. This program will only run in dos.
The readme.1st file tells you how to make a boot disk so that you can get to dos and use our program.
SplitZilla 3.1
SplitZilla is an application that will help you split files. more>>
Main features:
- Splits files up to 2,147,483,647 bytes (2GB) in size.
- Three pre-defined size buttons for 2.88MB, 1.44MB and 720KB diskettes and an edit box for user defined split size up to 2,147,483,647.
- Makes optional batch file for rebuilding.
- Makes optional log file.
- Can use an output directory and/or sub directory.
- Saved settings.
- Has "Always on top" feature.
- Stays in system tray while running.
- Drag and drop support.
Splitter light 4
Split files into 1.44MB parts. more>>
Splitter light 4 is a functional and useful tool that lets split large files and directories to parts of 1.44MB or other sizes. Because Splitter is extremely small (55KB), you can deliver it easily with the first disk for unsplitting.
Major Features:
- Splits files or whole directories (including subdirectories).
- You can select any size of parts you like. Splitter is able to handle very large parts (only limited by the operating system).
- No installation necessary, Splitter can run from a floppy disk.
- The date of the original files will be restored.
- Drag & drop from the windows explorer.
- Optionally creates batch files for rejoining.
- Full commandline support.
Enhancements: Version 4.0 features commandline support, batchfiles for joining.

TextShield Fusion b589
TextShield is a free, compact word processor with a wealth of features. Beside of those features available in most word processors, it has also more advanced, but easy-to-use, features. A detailed hel more>>

Temperature Converter 2.3
Temperature Converter 2.3 has come as a convenient and comprehensive tool with the ability to convert 4 different temperature scales. more>>
Temperature Converter 2.3 has come as a convenient and comprehensive tool with the ability to convert 4 different temperature scales. You can convert to and from Celsius, Fahrenheit, Kelvin, and Rankine. Very portable program, no installer needed. Small enough (1.44MB) to be put on a portable drive.
Enhancements: Has added a readme and changelog.
- Page: 1 of 1
- 1