home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / QUIETDDA.ZIP / QUIET.DOC < prev    next >
Text File  |  1993-08-27  |  2KB  |  65 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.                                      QUIET
  7.                     Free DOS utility: quiets noisy programs
  8.                          Version 1.00 - August 27, 1993
  9.                                     (c) 1993
  10.                                        by
  11.                              David Daniel Anderson
  12.                                    Reign Ware
  13.  
  14.  
  15.  
  16.  
  17.  
  18. QUIET quiets noisy programs, by replacing certain noisemaking program
  19. codes.
  20.  
  21. WARNING!!! QUIET OVERWRITES THE INPUT FILE, SO MAKE SURE THAT YOU
  22. EITHER WORK ON A -COPY- OF YOUR FILE(S) OR YOU KNOW WHAT YOU ARE
  23. DOING BEFORE YOU START.
  24.  
  25. Usage:  QUIET noisy_prog
  26.  
  27. Examples:
  28.  
  29.    QUIET hangman.com
  30.    QUIET *.exe
  31.    QUIET pac*.*
  32.    QUIET d:\games\fire.com
  33.  
  34. QUIET needs one and only one parameter on the command line: the file
  35. to be silenced.  By using wildcards (* and ?), multiple files can be
  36. processed in one pass.  (See the DOS manual for wildcard info.)
  37.  
  38. QUIET will maintain the original date and time of the file(s).
  39.  
  40.  
  41.                              How it works:
  42.  
  43. QUIET simply replaces the two-byte sequence: µa  with: ÉÉ
  44. In hex, that is:   E6 61   and:   90  90.
  45. In decimal it is: 230 97   and:  144 144.
  46.  
  47. The E6 61 code is simply an instruction to activate the speaker, and
  48. the 90 90 code is simply an instruction to do nothing.
  49.  
  50.  
  51.               Possible complications/ reasons for failure:
  52.  
  53. 1) Some programs check themselves, and will not work at all if they
  54. have been changed.
  55.  
  56. 2) Many programs make noise by other methods, and will not be silenced.
  57.  
  58. 3) If the file was read-only, it cannot be processed.
  59.  
  60. 4) Some virus detectors will complain if you try this on a file which
  61. you have told the watch dog program to monitor.
  62.  
  63. Note: other errors are mentioned by the program when it encounters them.
  64.  
  65.