MSFN Forum: How to boot/install from USB key ? - MSFN Forum

Jump to content



  • 25 Pages +
  • « First
  • 2
  • 3
  • 4
  • 5
  • 6
  • Last »
  • You cannot start a new topic
  • This topic is locked

How to boot/install from USB key ? - the historical thread - how it all began

#61 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 8,796
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 20 November 2006 - 05:00 AM

porear said:

I think that is an EXCELLENT idea.


Yep, I a a smart guy B), though the basic idea is not really new, from the Art of War by Sun Tzu, around
(500 BC):

Quote

Chapter I
18. All warfare is based on deception.
19. Hence, when able to attack, we must seem unable;
when using our forces, we must seem inactive; when we
are near, we must make the enemy believe we are far away;
when far away, we must make him believe we are near.
24. Attack him where he is unprepared, appear where
you are not expected.
Chapter V
5. In all fighting, the direct method may be used
for joining battle, but indirect methods will be needed
in order to secure victory.
6. Indirect tactics, efficiently applied, are inexhaustible
as Heaven and Earth, unending as the flow of rivers and streams;
like the sun and moon, they end but to begin anew;
like the four seasons, they pass away to return once more.
Chapter VI
30. So in war, the way is to avoid what is strong
and to strike at what is weak.
Chapter XI
60. Success in warfare is gained by carefully
accommodating ourselves to the enemy's purpose.
65. If the enemy leaves a door open, you must rush in.
Chapter XII
19. If it is to your advantage, make a forward move;
if not, stay where you are.


...and I probably just won the 2006 award for the most off-topic post of the year ... :P

jaclaz


#62 User is offline   porear 

  • Newbie
  • Group: Members
  • Posts: 49
  • Joined: 10-August 04

Posted 20 November 2006 - 08:22 AM

hehe very nicely done. This thread was about due for a dose of OT :D

Playing with dsfo now and trying to determine the length of the FAT, am thinking I read somewhere the boot record including FAT is 63 sectors, so 63 * 512 = 32256. Just how erroneous is that? :whistle:

#63 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 8,796
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 20 November 2006 - 12:43 PM

porear said:

Just how erroneous is that?

erroneus enough:

CHS 0/0/1 = 1st Sector on disk = Sector 1 = Sector 0 LBA is the MBR
CHS 0/0/2 to 0/0/63 =Sectors from 2nd = sectors 2÷63 = Sectors 1÷62 LBA are hidden sectors (unused)
CHS 0/1/1 = 1st sector in partition = Sector 64 = Sector 63 LBA is the partition bootsector

Depending on size of the partition and number of directories entries, following sectors are FAT1/FAT2 and Root directory.

Number of sectors used is written in bootsector, use either beeblebrox:
http://students.cs.byu.edu/~codyb/

or Roadkil's Boot Builder:
http://www.roadkil.net/bootbuild.html

To explore the contents of your bootsector.

Check the Starman's realm for reference:
http://thestarman.da...mbr/MSWIN41.htm
http://thestarman.da.../mbr/NTFSBR.htm
and here for FAT16:
http://home.teleport...rainy/fat16.htm
http://averstak.trip...dox/bootsec.htm
http://www.ntfs.com/...tion-sector.htm

or just use the two utilities and report contents of bytes 0x0E÷0x0F; 0x11÷0x12; 0x16÷0x17, respectively Reserved Sectors, Root Entries, Sectors per FAT.

I am assuming that the volume has two FATs and is FAT16.

jaclaz

#64 User is offline   porear 

  • Newbie
  • Group: Members
  • Posts: 49
  • Joined: 10-August 04

Posted 20 November 2006 - 03:42 PM

Quote

I am assuming that the volume has two FATs and is FAT16.

That should be correct. Thanks for the info and references, I'll look at them. This project is opening up quite a few new things to me.

Beeblebrox reports C/H/S for the USB is 246/255/63.
NumSectors in the partition table is 3963841.

Posted Image

Using WinHex (and Beeblebrox to double check) to observe the bytes mentioned,

0x0E÷0x0F Reserved Sectors data is 04 00
0x11÷0x12 Root Entries data is 00 02
0x16÷0x17 Sectors per FAT data is F2 00

Choosing to jump to FAT1 in Winhex points to offset 0x800, and FAT2 is at offset 0x1EC00. From the data, this should be my drive:

Offset 0x0 is Boot sector
Offset 0x800 is FAT1
Offset 0x1EC00 is FAT2
Offset 0x3D000 is Root
Offset 0x41000 is First data sector

0x1EC00 - 0x800 = 123,904. This length agrees with the calculation 242 sectors/FAT * 512 bytes/sector = 123,904 bytes/FAT.

As always, thanks so much for the continued assistance. :)

This post has been edited by porear: 20 November 2006 - 09:26 PM


#65 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 8,796
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 21 November 2006 - 01:31 PM

Hmmm, unless I am mistaken, your data appears to be correct, if you start from the partition, but maybe you missed the initial MBR and hidden sectors...:

Counting whole DRIVE:
0x000000 (0 Dec) MBR
0x000200 (512 Dec) Hidden sectors (62 of them)
0x007E00 (32256 Dec) Bootsector
0x008600 (32768 Dec) 3 more reserved sectors
0x008000 (34304 Dec) FAT1
0x026A00 (158208 Dec) FAT2
0x044E00 (282112 Dec) Root Directory
0X048E00 (298496 Dec) First Data Sector

Counting from Partition:
0x000000 (0 Dec) Bootsector
0x000200 (512 Dec) 3 more reserved sectors
0x000800 (2048 Dec) FAT1
0x01EC00 (125952 Dec) FAT2
0x03D000 (249856 Dec) Root Directory
0X041000 (266240 Dec) First Data Sector

Now, let's see if the above is correct:
MBR = 512 bytes
Hidden sectors= 62x512= 31,744 bytes
Bootsector=512 bytes
More reserved sectors=1,536 bytes
FAT1= 242 x 512 = 123,904 bytes
FAT2= 242 x 512 = 123,904 bytes
Root= 512 x 32 = 16,384 (each record is 32 bytes long)

512+31,744+512+1,536+123,904+123,904+16,384=298,496
and
512+1,536+123,904+123,904+16,384=266,240

:thumbup

If you use the dsfok with "partition" offset, you must give it a drive letter, whilst if you use the "Drive" offset, you can use PHYSICAL drive (and need to rewrite the initial 63 sectors).

To automate the process while making sure you are rewriting on the right drive, the "fixed" letter for the USB stick through migrate.inf, that cdob proved to be working in the other thread might be useful .

Also, have a look at the small batch I posted here:
http://www.911cd.net/forums//index.php?sho...=15837&st=5

that should give you some ideas on how to make this.

It has been some time since I "peeked and poked" on FAT filesystems with hexeditors, I cannot remember if there is something else that must be taken into account.

I'll try and "freshen" my experience in the next few days, and post if I find something else.....
...as an afterthought, maybe there are some more appropriate utilities on the net, I'll have a look at them too.

jaclaz

#66 User is offline   porear 

  • Newbie
  • Group: Members
  • Posts: 49
  • Joined: 10-August 04

Posted 21 November 2006 - 11:39 PM

UPDATED See flagged note below

I think my method of experimenting is flawed. I am using the disk offset of 282,112 (also tried 298,496) and addressing the USB with the scheme \\.\PHYSICALDRIVE1

I am doing all of this from within Windows XP (which I think is a problem)

Save through FAT2 with dsfo \\.\PHYSICALDRIVE1 0 282112 fatsav1.dsk
Delete several files from the stick
Restore back to the stick with dsf1 \\.\PHYSICALDRIVE1 0 282112 fatsav1.dsk
Save another file through FAT2 with dsfo \\.\PHYSICALDRIVE1 0 282112 fatsav2.dsk
Compare the two saved files fatsav1.dsk and fatsav2.dsk with WinHex

The files are identical, so the restore succeeds. However, the deleted files do not reappear in Windows Explorer.

If then I do a View->Refresh of the USB drive in Windows Explorer, then save another snapshot with
dsfo \\.\PHYSICALDRIVE1 0 282112 fatsav3.dsk

Differences are found between this and the first two snapshots! I've attached REPORT.TXT generated by WinHex that shows the differences.

It seems as if Windows XP has the first few sectors of the USB disk cached, and assumes that direct disk writes that bypass XP will not take place. The refresh action seems to write the XP cached data back to the disk. Is this a feasible theory?

Update: I have tested this theory by removing the USB stick after restoring the FAT, then plugging it back in. Sure enough, this does seem to destroy any XP cached FATs, and the deleted files and folders reappear. HOWEVER... Only files and folders in the root are undeleted. Folders that originally held files that are undeleted to the root are now all empty. So, the root directory is being restored, but not the FATs

If this is true, will the same problem arise in the setup/install environment? I have not tried it yet since my experiments have failed so far.

I also am searching for other possible existing utilities for backup/restore of the FAT, or an undelete that will work in the install environment.

I'll write back when I have anything new, but may not be on as much for the next few days, its holiday time here. I will also look at the link to the batch file you posted. Thanks!! BTW, I've been making it a point to honor the provisions of your CareWare license today, my friend. :)

Attached File(s)


This post has been edited by porear: 22 November 2006 - 09:53 AM


#67 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 8,796
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 22 November 2006 - 02:50 PM

porear said:

BTW, I've been making it a point to honor the provisions of your CareWare license today, my friend.

Good! :)

Have a nice Thanksgiving...

jaclaz

#68 User is offline   Puggsley 

  • Newbie
  • Group: Members
  • Posts: 25
  • Joined: 19-November 06

Posted 22 November 2006 - 03:12 PM

Could you not copy a dos floppy to the flash drive, then edit autoexec.bat? to run winnt.exe (Setup App intended for dos prompt). I managed to do this for win 98se, but i know a few of the dos files need tweaking a bit. Your flash drive should be formated as fat, not fat32 or ntfs as dos does not support these.

#69 User is offline   LLXX 

  • MSFN Junkie
  • PipPipPipPipPipPipPipPipPip
  • Group: Banned
  • Posts: 3,399
  • Joined: 04-December 05

Posted 22 November 2006 - 09:51 PM

View PostPuggsley, on Nov 22 2006, 04:12 PM, said:

Could you not copy a dos floppy to the flash drive, then edit autoexec.bat? to run winnt.exe (Setup App intended for dos prompt). I managed to do this for win 98se, but i know a few of the dos files need tweaking a bit. Your flash drive should be formated as fat, not fat32 or ntfs as dos does not support these.
DOS 7.1+ kernel (in Win95b and above) supports FAT32.

#70 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 8,796
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 23 November 2006 - 11:03 AM

Puggsley said:

Could you not copy a dos floppy to the flash drive, then edit autoexec.bat? to run winnt.exe (Setup App intended for dos prompt). I managed to do this for win 98se, but i know a few of the dos files need tweaking a bit. Your flash drive should be formated as fat, not fat32 or ntfs as dos does not support these.


You might have missed the start of this:
http://www.msfn.org/board/index.php?showto...mp;#entry563654

The method using DOS 7.1 and WINNT.EXE has already been developed fully and has been published here:
http://www.911cd.net...showtopic=16713

One can later convert the FAT32 system drive to NTFS with the MS utility convert:
http://www.microsoft.com/technet/prodtechn...convertfat.mspx
convert C: /fs:ntfs

though I never tried this myself and I have read conflicting reports about success of such an operation.


@LLXX
Yep, but still formatting a USB stick as FAT16 gives more probabilities to have it bootable on some motherboards.
Using the DOS 7.1 files (or other FAT32 enabled DOS) is however needed, otherwise the resulting partition on the target drive will be affected by FAT16 size limit of 2 Gb.

jaclaz

This post has been edited by jaclaz: 23 November 2006 - 11:09 AM


#71 User is offline   porear 

  • Newbie
  • Group: Members
  • Posts: 49
  • Joined: 10-August 04

Posted 24 November 2006 - 07:19 PM

uuuuuuuughhhhhh too much food. :D Hello, Puggsley and LLXX.

I've been trying to determine what happens during a file deletion. Not only is the FAT altered, but one byte per file (I am assuming the first) is overwritten as well. It appears that this is the first character of the file name that must be manually supplied for most undelete methods.

Experiment: I imaged through the end of my FAT tables (img1), then imaged the whole stick (img2). I deleted 3 files, restored the FAT from its image (img1), then re-imaged the entire stick again (img3). Comparing the two whole-disk images (img2 and img3) resulted in 3 differences found, in attached REPORT.TXT.

The 42, 47, and 47 that were overwritten should correspond respectively to b, g, and g in the filenames bootlace.com, grldr.mbr, and grub.exe.

So, for successful automatic undelete, the first character of all file names must be saved prior to deletion and then restored. I am assuming this is what "delete tracking" in the old DOS undelete did.

http://free-backup.info/file-recovery-usin...s-undelete.html

This would be perfect, unfortunately it requires a DOS 5.22 to DOS 6.0 environment to run. I've been looking but have not come across a similar tool that works in our XP Setup environment.

From http://www.computerh...om/undelete.htm

Quote

This program / command was designed to only be run in MS-DOS versions 5.0 to 6.22. If you have upgraded to Windows 95, Windows 98, Windows NT, or any other Operating system, this command will not restore any information but may possibly cause additional issues with the Hard Drive if run.

I hope we're not digressing too much here to chase this as a solution to the file move issue, especially since this was already "Plan B" :) Although my talents are limited in this area, I might look at what it would take to try to write something that approximates the undelete "tracker".

I ahd thought that although it complicates things, maybe we could alternatively boot to DOS, XP Setup, then DOS again and use the existing undelete with tracking. However, the tracking has to be running when a file is deleted for it to be added to teh tracking file.

Attached File(s)



#72 User is offline   hatsumi 

  • Newbie
  • Group: Members
  • Posts: 13
  • Joined: 24-December 03
  • OS:Windows 7 x64

Posted 24 November 2006 - 08:35 PM

View PostClaymore1746, on Nov 26 2005, 12:10 PM, said:

Here are some instructions you may find helpful:

WeetHet USB Boot setup


So could this method not be used? After all the boot.bin is located in the nlite folder (if you have nlite installed!)

use mkbt to set the usb key up and copy the contents of the cd over?

I may try this just to see what happens :D

Edit: never mind. My USB key is not interested in working with this.

This post has been edited by hatsumi: 24 November 2006 - 08:43 PM


#73 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 8,796
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 25 November 2006 - 05:40 AM

porear said:

So, for successful automatic undelete, the first character of all file names must be saved prior to deletion and then restored. I am assuming this is what "delete tracking" in the old DOS undelete did.


Yep, that's what I was referring to originally, though I most probably suggested a WRONG :angry: method as a workaround, I simply forgot that files are not in ROOT, but rather in \I386, my bad.
Most probably imaging more sectors will make the image too big for practical use.

As said, deleted files 1st character is replaced by character "å", so, theoretically, all we need is a "database of deleted filenames/original filenames, something like:
åDEFAULT.PI_ _DEFAULT.PI_
å2520437.CP_ 12520437.CP_
å2520850.CP_ 12520850.CP_
å394.IN_ 1394.IN_
...


and an application capable (with direct access to disk) to replace the pairs, something like gsar:
http://gnuwin32.sour...ckages/gsar.htm

...but I seem not to be able to find any such program, though I am quite sure it must exist somewhere.

Another possibility may, but I still have to experiment with it, the bunch of apps that you can find here:
http://www.partition....com/index.html

One could make a small ramdisk, copy to it a few sectors copied from the stick, apply the gsar substitution to them, and copy them back to stick, but I have the feeling that the processing time would be huge....

....and off I go searching again for the right tool! ;)

jaclaz

#74 User is offline   porear 

  • Newbie
  • Group: Members
  • Posts: 49
  • Joined: 10-August 04

Posted 25 November 2006 - 09:19 AM

Quote

....and off I go searching again for the right tool!
hehe and I as well. As a tip, I have found that the term "file system snapshot" is turning up some interesting results, but have not gotten in too deep yet.

Quote

As said, deleted files 1st character is replaced by character "å", so, theoretically, all we need is a "database of deleted filenames/original filenames, something like:

åDEFAULT.PI_ _DEFAULT.PI_
å2520437.CP_ 12520437.CP_
å2520850.CP_ 12520850.CP_
å394.IN_ 1394.IN_

and an application capable (with direct access to disk) to replace the pairs, something like gsar:
http://gnuwin32.sour...ckages/gsar.htm

This might not actually be that hard to do. I know the 3,025 files in question that are deleted and could make the database easily. This database would contain only the filenames and not their locations, so a complete search would have to happen for each file.

My only concern would be that if gsar searches the entire disk each time to make each replacement, this may be impractical for the time required. A more targeted approach that would use the FAT information to go straight to the file would use a fraction of this time.

#75 User is offline   porear 

  • Newbie
  • Group: Members
  • Posts: 49
  • Joined: 10-August 04

Posted 26 November 2006 - 08:13 PM

Possible idea:

Tiny Hexer at
http://www.mirkes.de/en/home.php

It's free, it's scriptable. Maybe there is a (scriptable) way to feed it the text file listing of file names, search for the location of each of the file names on the disk, and record these locations in the text file with the names.

Then... create a batch or script file to use dsfi to restore the first character of each file name after deletion based on the text file created above.

What do you think? :sneaky:

#76 User is offline   LLXX 

  • MSFN Junkie
  • PipPipPipPipPipPipPipPipPip
  • Group: Banned
  • Posts: 3,399
  • Joined: 04-December 05

Posted 26 November 2006 - 09:54 PM

Try sed, the stream editor.

#77 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 8,796
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 27 November 2006 - 06:26 AM

porear said:

Possible idea:

Tiny Hexer

Yes, I came exactly at the same conclusion :thumbup , I am having a look at it.....

By the way, out of topic, but not much, another idea came to my mind, I'll just throw it in "as is" :whistle: :
what about a "superfloppy" image with the 6 XP floppy disks combined into one?
I already tried - actually with the 4 Win2k floppies - and it does not work if the device is formatted as "hard disk" (with MBR - it asks for the $WIN_NT$.~BT folder), but I was at home on my wife laptop and missed some tools to work with image files and partitions, so I will try again as I find some time.
The test I did, combining the first two floppies in a 2.88 image did work until it asked for the 3rd floppy, so, it may work with a bigger one, 5.76 for 2K and 8.64 for XP :blink: .


LLXX said:

Try sed, the stream editor.


It doesn't seem it has direct disk access, and if one has to copy sectors to file to process them, I would prefer gsar, which I know better.
But maybe I missed something, what would they be the advantages of sed over gsar in this?

jaclaz

#78 User is offline   porear 

  • Newbie
  • Group: Members
  • Posts: 49
  • Joined: 10-August 04

Posted 27 November 2006 - 11:13 AM

Quote

what about a "superfloppy" image

That sounds way too easy - now where is the fun in that? :P Just kidding. The problem I have had with that type of approach has always been that once the text mode setup has finished loading (the part that is on the floppies) that I cannot get the installation to continue since it asks for the CD. This occurs even if I have the CD tag files on whatever medium I am trying to install from. I am sure this could be solved, I just have not yet been able to do it.

Regarding the Tiny Hexer approach, I think it is possible, but it will require another step: the file names on the disk are in 8.3 format, so to search for them, our match list will first have to be modified.

Looking at the installation files, I do not believe any have names longer than 8 characters, but some have less. On disk, these shorter names are padded with spaces (0x20) at the end, e.g. boot.ini becomes

BOOT INI (four spaces between boot and ini)

Unfortunately some of the shorter deleted files have the same name with different extensions, so we cannot just search for åclui, we must search for

åCLUI CH_ (three spaces in between for all of these)
åCLUI DL_
åCLUI HL_

Simple enough, just another step.

#79 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 8,796
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 27 November 2006 - 02:22 PM

porear said:

Looking at the installation files, I do not believe any have names longer than 8 characters, but some have less.


Yes, I can confirm that, the files are strictly compliant to 8.3 rules.

porear said:

Unfortunately some of the shorter deleted files have the same name with different extensions, so we cannot just search for åclui, we must search for

åCLUI CH_ (three spaces in between for all of these)
åCLUI DL_
åCLUI HL_

Simple enough, just another step.


Yes, the procedure to create the list of "pairs" must take care of this, but it is not difficult to make a batch to process the output of a DIR :
 
@ECHO OFF
SETLOCAL ENABLEEXTENSIONS
SETLOCAL ENABLEDELAYEDEXPANSION

FOR /F %%A IN ('dir /B') DO CALL :ADJLEN %%A
GOTO :EOF

:ADJLEN
SET /A counter=0
SET /A length=0
SET filename=%~n1
SET fileext=%~x1

:loop1
Set /A counter=%counter%+1
Set filelen=!filename:~0,%counter%!
IF NOT %filelen%==%filename% SET length=%counter%&goto :Loop1
IF NOT %counter%==8 set filename=%filename%#&goto :Loop1
REM ECHO %counter% %filelen%
REM pause
ECHO %filename%%fileext:~1,4%	%~nx1
GOTO :EOF
 


(please note that there is a [TAB] between "ECHO %filename%%fileext:~1,4%" and "%~nx1")

Sample output of the above:

is3#####cmd	 is3.cmd
is3a####cmd	 is3a.cmd
change##cmd	 change.cmd
change2#cmd	 change2.cmd
cartellacmd	 cartella.cmd
Erlev###cmd	 Erlev.cmd
colours2txt	 colours2.txt
testcopycmd	 testcopy.cmd
Choice##exe	 Choice.exe
dirvmc##cmd	 dirvmc.cmd
AUTOEXECBAT	 AUTOEXEC.BAT
CONFIG##SYS	 CONFIG.SYS
padnamescmd	 padnames.cmd
temp####txt	 temp.txt
tstcopy2cmd	 tstcopy2.cmd
padname2cmd	 padname2.cmd


Once we have our list with all its ###, a simple binary search and replace would make it in the format required.

jaclaz

This post has been edited by jaclaz: 27 November 2006 - 02:24 PM


#80 User is offline   porear 

  • Newbie
  • Group: Members
  • Posts: 49
  • Joined: 10-August 04

Posted 27 November 2006 - 05:13 PM

Quote

but it is not difficult to make a batch to process the output of a DIR :

Maybe not for you! hehe :D Very well done, sir. Works perfectly. I made a couple of very minor tweaks.

IF NOT %counter%==8 set filename=%filename%#&goto :Loop1

I believe the #s actually need to be spaces (0x20).

This next one threw me for a while. It was very strange, but the batch file made it through most of the directory then crashed. Turns out it didn't like the file "notepad.ch_" because when it parsed the name, it was literally translating the first three letters "not" as a NOT. I used some quotes and its works great.

IF NOT "%filelen%"=="%filename%" SET length=%counter% &goto :loop1


I have been looking at Tiny Hexer scripting capabilities, and unless I am mistaken, "search" does not seem to be a scriptable function :( It is available in WinHex scripting capabilities, but not in the free version.

We really just need a way now to obtain the hex offset of all of the file name locations. It still seems like with that additional piece of data this would be a suitable task for a batch that employs dsfi. We would not even need to rewrite the entire file name, only go to the offset where each name is located and rewrite the first 'å' byte.

I found a tool that sounded suited for this at

http://pjwalczak.com/scaven/index.php

but alas it wouldn't see my USB disk, and the input file is limited to 512 bytes (our list is 26K). I've written the author but wouldn't consider this a very probable solution.

This tool, NT_SS is even more perfect, but carries a $50 tag. Its functionality is exactly what I am seeking.

http://www.dmares.co.../html/nt_ss.htm

I am attaching replace.txt. It has the deleted name on disk, the first character that was replaced for each name, the original name on disk, and the original file names.

Attached File(s)


This post has been edited by porear: 27 November 2006 - 11:59 PM


Share this topic:


  • 25 Pages +
  • « First
  • 2
  • 3
  • 4
  • 5
  • 6
  • Last »
  • You cannot start a new topic
  • This topic is locked

10 User(s) are reading this topic
0 members, 10 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy