NTFSFlp 1.0
Sponsored Links
NTFSFlp 1.0 Ranking & Summary
File size:
369 KB
Platform:
Windows NT
License:
Freeware
Price:
Downloads:
1313
Date added:
2006-05-27
Publisher:
Mark Russinovich
NTFSFlp 1.0 description
Ever wondered why you cant put NTFS on a floppy disk? Windows NT has never supported NTFS floppy disks, because Microsoft claims that floppy disks are too small for NTFS data structures. NTFSFlp is an application that will both format and enable NTFS support on floppy disks and proves this to be wrong. Now you can see for yourself why NTFS on floppies, while possible, is not a great idea.
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.
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.
NTFSFlp 1.0 Screenshot
NTFSFlp 1.0 Keywords
NTFS
NTFSFlp
NT
FAT
NTFSFlp 1.0
Ever Wondered Why
NTFS on floppies
floppy disk
Floppy disks
wondered why
NTFS format
ever wondered
floppy
disk
format
device
Bookmark NTFSFlp 1.0
NTFSFlp 1.0 Copyright
WareSeeker periodically updates pricing and software information of NTFSFlp 1.0 full version from the publisher, so some information may be slightly out-of-date. You should confirm all information before relying on it. Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future development of NTFSFlp 1.0 Edition. Download links are directly from our publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed
Featured Software
Want to place your software product here?
Please contact us for consideration.
Contact WareSeeker.com
Related Information
when were floppy disks introduced
floppy disk drive
high-density floppy disks
floppy diskette seek failure
diskette
floppy disk recovery
floppy disk fail 40
floppy disk on the floor
what is a floppy disk
history of floppy disks
created first floppy disk
floppy diskette
Floppy Disk Drives
parts of a floppy disk
floppy disk storage
Floppy disk format
how to format a floppy disk
floppy disk controller
Related Software
A tray program which when double-clicked, can wipe the contents of a floppy disk or other drive. Options include type of files to wipe, whether to delete sub-folders or not, and whether to ask for con Free Download
FlopImage is comprised of three floppy disk utilities. These include a disk image writer, a disk image reader, and a utility to set all sectors to a known value. Free Download
Undelete for Floppy is written in assembly language for IBM PCs and undeletes from a floppy disk Free Download
Network Boot Floppy is a floppy disk image which will boot up a machine, connect to a network share and begin a windows install Free Download
FlopShow can recover files from bad/damaged floppy disks and undelete files from good ones. It can also make/restore floppy disk images Free Download
Splitter is an application which helps you to split large files to muliple floppy disks or hard drive for emailing Free Download
Record audiolog (live audio input) direct to your hard disk in mp3 format. Free Download
FloppyBase is a floppy disk imaging program Free Download
Latest Software
Popular Software
Favourite Software