Damage NTFS
Results 1 to 7 of 7

Thread: Damage NTFS

  1. #1
    Join Date
    Apr 2000
    Posts
    1,579

    Damage NTFS

    Will the following command work on an NTFS system?http://support.microsoft.com/default...kb;en-us;74038
    Will it cause any damage to any files?
    Open your mind, not your computer.

  2. #2
    Join Date
    Apr 2005
    Location
    Maryland, USA
    Posts
    17,806
    No, it won't hurt anything. Won't work either though because it's hardcoded to look for FIND and MORE in a C:\DOS directory (folder).

    The following command will do pretty much the same:
    for %x in (*.*) do type %x|find "whatever"
    (Change that whatever to whatever string of characters you're searching for).

  3. #3
    Join Date
    Apr 2000
    Posts
    1,579
    Thanks a lot...
    Have you tried this (your) command yourself on an NTFS system?
    Are you sure it can not change any type of files?
    Last edited by Robert M; December 13th, 2005 at 08:11 PM.
    Open your mind, not your computer.

  4. #4
    Join Date
    Apr 2005
    Location
    Maryland, USA
    Posts
    17,806
    Quote Originally Posted by Robert M
    Thanks a lot...
    You're welcome.
    Quote Originally Posted by Robert M
    Have you tried this (your) command yourself on an NTFS system?
    Yes, on XP PRO. (Also tested it on XP Home).
    Quote Originally Posted by Robert M
    Are you sure it can not change any type of files?
    Yes, I'm sure. The TYPE command simply sends reads the specified file and sends the output to the screen, (usually*). No write/re-write operations are done to the original file.

    The pipe ("|") through the FIND command simply takes what was sent to the screen (*by the TYPE command) and searches for the string specified.

    Again, no alterations are done to the original file.

    The only thing that is altered, is a a temporary file or two (in your %temp% directory) which are subsequently deleted when the command is done.

    (Note that piping the output of the TYPE through FIND goes w-a-y, w-a-y back, to the very early DOS days. And it still works the same on XP as it did then).

  5. #5
    Join Date
    Apr 2000
    Posts
    1,579
    Thanks,
    My curiosity about where the message talked about in the following link originated is why I ask. I wonder if falcon2000 could locate the file which produced his error message about output destination ...seen or created
    in the following old virtual doctor link.
    http://discussions.virtualdr.com/sho...d.php?t=159976
    Last edited by Robert M; December 14th, 2005 at 05:05 PM.
    Open your mind, not your computer.

  6. #6
    Join Date
    Apr 2005
    Location
    Maryland, USA
    Posts
    17,806
    I just spent about 10 minutes running through that 4-page thread and didn't see any mention of a related issue, (i.e., a problem redirecting TYPE output through FIND). Maybe I missed it?

  7. #7
    Join Date
    Apr 2000
    Posts
    1,579
    No, you didn't miss it.

    I think falcon2000 could at least locate the file that is issuing the message.
    Last edited by Robert M; December 15th, 2005 at 02:44 PM.
    Open your mind, not your computer.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •