Helping Preserve Our Digital History
Generated: 2026-04-05 21:13:00

▸ Disk Identity

Image Size360 KB
FilesystemFAT12
Floppy Type360KB
Form Factor5.25"
Format NotesIBM DOS 2.0 DS/DD
Volume LabelPC CLONES
Cylinders40
Heads2
Sectors/Track9
Total Sectors720
Physical disk scan — Computer-Shopper_PC-Clones-Start-up-Utility-Software_1987
Physical media scan

▸ Contents Summary

26FILES
0DIRECTORIES
250.5 KBTOTAL DATA
Used capacity69.6%
Slack space30.4% (109.5 KB)
Date range1987-02-23
Largest fileQUICKCAT.COM (39.6 KB)
Cross-disk dupes0 file(s)
AV status✓ CLEAN
Disk SHA-256:6a8e386d71303dac07823e1c7dc5722b8b4941fe79596da538ba8641e57c767b

▸ Archivist's Notes

PC CLONES MAGAZINE START UP DISK


This disk contains original utility programs that
have proved useful in the operation of PC/XT/AT
computers and compatibles. Many of the programs are
for use with hard disks and enable the management
of the large quantity of files you develop on these
large drives. There are also many useful programs
for those with floppy disks.
All of these programs are copyright by the
author and are supplied to you free, however the
author does not waive any of his rights under
copyright law.
Neither Computer Shopper of Titusville, Inc.
or the author is responsible for the quality of
the programs or the condition of the disk. IN NO
EVENT WILL COMPUTER SHOPPER OF TITUSVILLE, INC, OR
ANDREW FRIED BE LIABLE TO YOU FOR ANY DAMAGES,
INCLUDING ANY LOST PROFITS,LOST SAVINGS, OR ANY
OTHER INCIDENTIAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE, OR INABILITY TO USE THE SOFTWARE
EVEN IF COMPUTER SHOPPER, OF TITUSVILLE, INC, OR
ANDREW FRIED HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
We will not replace damaged disks. The
purchase price of PC Clones Magazine is $3.95
without the software and disk and it is
understood that receipt of this disk is not a
sale of either the programs or the disk.
Upon receipt of the disk, you are
granted a license to use the programs for non-
commerical use.
You may reproduce the programs for your own use,
but you may not sell or give them away to anyone.

A description of the software folows:

BARCODE.EXE
-----------
This utility program will produce Code 39
barcode on mailing labels or regular paper. It
will print up to a maximum of 12 characters. It
is suggested that in order to save space you
print only uppercase letters, although BARCODE will
recognize and print lower case letters. For more
information, type:
BARCODE
at the DOS prompt. A short help menu will appear
describing the calling conventions. Requires an
Epson compatible printer.

BLANK3.COM
----------
This program will prevent CRT image burn by
completely blanking the screen after three
minutes of inactivity. The program is a memory
resident program which should be called up by
your autoexec.bat file. If you use Sidekick, be
sure to load this program in memory before loading
Sidekick.
Every time you press a key or an application
program uses DOS to update the screen timer
inside BLANK3.COM is reset. If the counter
reaches three minutes, the screen video driver
shuts down. In order to restore the screen,
depress any key (preferably Alt or Ctl) and
the screen will be restored to normal. NOTE:
This is not designed to work on an EGA card.
One additional feature of this program is
that if you press the ALT-F keys together, a
formfeed will be sent to the printer.

BNCHMARK
--------
This program is used to benchmark the speed
of various computers.
It performs 100,000 calculations of each
type displayed and returns the number of timer
ticks it took to perform the test.
Note that 18.2 timer ticks equal
approximately 1 second (a timer tick occurs every
55 ms.).

CLEAN.COM
---------
A high speed Wordstar to ASCII conversion program.
May or may not work on clones not supporting high
speed DMA memory tranfers. To run, use the
following syntax:
CLEAN filename[.ext]
CLEAN will then rename the current file to an
extension of *.bak and copy the clean file back
into its original name.

COLORS.EXE
----------
This utility produces all of the various color
attributes on the screen in their native color.
Extermely useful if you write programs and want
to find various color combinations.

DATETIME.COM
------------
This utility will take the current system date
and time and change all of the files that
match the pattern given. For to set the date
and time of all of the files in your DOS directory,
you would type the following:
DATETIME C:\DOS\*.*
If you wanted to restamp only the EXE files, you
would enter:
DATETIME C:\DOS\*.EXE
Note that the full path must be given!

DIRTY.COM
---------
The exact opposite of the CLEAN program. This
program translates an ASCII file into Wordstar
format. Once converted, however, you must go
through the file and manually insert hard carriage
returns at the end of a paragraph. Really nice
for exchanging files with others. This program
also requires a DMA capability.
It is invoked with the following syntax:
DIRTY filename[.ext]
The new file will then have the extension of *.wsf.

DISKINFO.EXE
------------
This utility will return information regarding the
hard disks in an IBM PC/AT or compatible system.

DOCLEN.EXE
----------
This program will accurately estimate the number
of lines and pages in a document. Useful for
making the decision to print or not to print. Call
it up like this:
DOCLEN filename[.ext]

FF.COM
------
Definately one of my favority utilities. This
program merely sends a form feed character to the
printer. Saves you the effort of having to take
the printer offline, hit the form feed key,
wait for the paper to advance and then hit the
onlike key.

FIND.EXE
--------
Helps you to find files on a hard disk. It
will search a disk drive, beginning at the root,
for any and all matches you present to it. The
DOS wildcard characters '*' and '?' are legal.
For example, 'FIND *.bat' would find all files on the
default drive ending with a 'bat' prefix. FIND is
case insensitive, meaning that '*.bat' and
'.*.BAT' produce the same results.
You could also specify a different drive.
For instance,
FIND C:X.BAT or FIND C:\X.BAT
will cause FIND to look for all files with the
name 'X.BAT' on drive C to be displayed.

HDPARK.EXE
----------
This program will safely park the heads on a
hard disk. It should be run whenever the disk is
going to be transported. It is also suggested
that you routinely park the heads just prior to
shutting down the system.

INT.EXE
-------
This program is very useful for any programmer
writing interrupt software or memory resident
software. It permits you to obtain the actual
memory address of any interrupt vector in the
PC. Typing "INT ?" or "INT HELP" will present
online help. One of the really nice features
of INT is that all uninitialized
interrupt vectors will be flagged with an "-" in
front of them and all of the vectors pointing to
an IRET instruction will be flagged with a "*"
in front. You may type "INT" to receive a
complete interrupt vector dump or you may type
"INT num" for a single interrupt vector.
"INTnum1 num2" will dump all vectors
falling between the two numbers.

ISPRIME.EXE
-----------
This program will tell you if a number is a prime.
To call it, you merely type:
ISPRIME nnn
where nnn is any number.

MOVEFILE.EXE
------------
This program will enable you to move a single
file from one directory to another without
having to actually move the file.
Only the directory areas are updated. In order
program, you must specify the full path for the
source file as well as the destinatiion file. For
example:
MOVEFILE C:\UTILITY\ABC.COM C:\LETTER\ABC.COM
the program will move the file abc.com from the
utility directory to the letter directory.

PRIME.EXE
---------
This is another benchmark program useful for
determining the overall speed of a unit. It
calculates the first 1000 prime numbers and
returns the number of divisions necessary to find
them. It also returns the time required to process
the program.

PRTSCR.COM
----------
This is another memory resident utility. When
run, it loads in memory and remains dormant until
you call it up. Once loaded, any time you press
shift-prtscr the program will send the current
screen to a disk file (non-graphics only). The
program will automatically add carriage returns
at the end so that the screen image can be edited
with a standard text processor. Note that
each screen will be saved in a file beginning at
SCREEN.000 and can go up to SCREEN.999.

ROMCHECK.EXE
------------
This utility will check your system for optional
ROM signatures with indicate a firmware routine on
an expansion card. Most PC clones, for example,
will return a signature at C800:0000; that
is the hard disk controllers card ROM.

ROMDATE.COM
-----------
Displays the date of the ROM and any copyright
notice found at address F000:E000.

RS232.EXE
---------
This utility will cause the "TR" modem light on a
Hayes modem to flash. It begins by telling you
which communications port it is addressing after
which it toggles the RTS and DTR lines ten
times. You stop the program by depressing any key.
It is useful for determining what port the modem is
attached.

SETCLOCK
--------
This utility will enable you set the IBM PC/AT
clock without having to boot the system up with
the diagnostics disk. To set the time, use
the command TIME' at the DOS prompt. Once you
set the time, run SETCLOCK. SETCLOCK will get the
time from the operating system and update the CMOS
clock in the AT.

SWAP.COM
--------
If you have at least two printers attached to your
system, this utility will swap their port
addresses around. This means that LPT1: will now
print to LPT2: and visa versa. It is extremely
useful for those having both a letter quality and
a dot matrix printer hooked up to the system
using two different parallel ports. Rerunning
the program will swap the ports to their
initial state.

TABX
----
This utility will remove all tab characters from
an ASCII text file and replace the tabs with the
appropriate number of spaces.
It is called up by the following syntax:
TABX filename[.ext]

THATSALL,EXE
-------------
A public domain program that will suprise you
for color graphics card equipped clones only.

▸ Directory Tree

┌─ COMPUTER-SHOPPER_PC-CLONES-START-UP-UTILITY-SOFTWARE_1987.IMG
│
├── BARCODE.EXE               12.8 KB  1987-02-23  sha256:8fca2ae40d38de9291de9aba5b5c6e9399fe7dd8c10e99ad4621d81519c68ad7
├── BLANK3.COM                  628 B  1987-02-23  sha256:7d20d51eee64ba9511209a92cb905948aebd826f514e291b64262509dae06018
├── BNCHMARK.EXE              21.5 KB  1987-02-23  sha256:dec9fcbf698336804dce179e55cc04528db5aeeffed18962eed6148f435e2ea1
├── CLEAN.COM                 13.6 KB  1987-02-23  sha256:2334028254d33c393d77e890bbfc6e7cc082880ffa2612b3a52057f98e3dade4
├── COLORS.EXE                 7.1 KB  1987-02-23  sha256:41a90b5661a00c224baaea366e66dad7e24022632b81ca4010f80a2f0a89eb49
├── DATETIME.COM              13.2 KB  1987-02-23  sha256:cd970056af83319ee5d5800475dc6c78506734565a437b2d85e149a8df755282
├── DIRTY.COM                 13.7 KB  1987-02-23  sha256:ca251ffb70774b16fa71ca9070d21896b18420282da942a3d1f2bd3b9cba685e
├── DISKINFO.EXE               6.9 KB  1987-02-23  sha256:fa9e89b1ea5aff35337bacc6462e2820bd03a3c0a9a6d957f18f941711ab129b
├── DOCLEN.EXE                 8.7 KB  1987-02-23  sha256:a422521ce92ad0d68f55dc89885042890dc7cb6c1e728343b19ff7191b9c7f74
├── FF.COM                       14 B  1987-02-23  sha256:5ae1ca9a4ccdd3e9aa8888faaca91a2514122ec775c7fe94616974204e910fa8
├── FIND.EXE                   7.7 KB  1987-02-23  sha256:23f641cf50e5210a70df47c66b1fb971d3ecda0aafbf70e82d7fd8d7a5c548de
├── HDPARK.EXE                 7.3 KB  1987-02-23  sha256:fcbd659f31d86317bff3cb67370bcccd1a407d6c105155f77645dc5965c4b263
├── INT.EXE                    8.2 KB  1987-02-23  sha256:decc1f76cb31c3c9635d510739aa56dc85afdafef838b80846e8ca9422af3ab9
├── ISPRIME.EXE                9.4 KB  1987-02-23  sha256:2765c7d47b5072eae1642c9fd505284740e4b6f57c13cb0e82e4159ab3d2f93f
├── MOVEFILE.EXE               6.6 KB  1987-02-23  sha256:8920a1e9b3984d448dea9631a86f0387276e4b189a453ebd19020900b1c47051
├── PRIME.EXE                   20 KB  1987-02-23  sha256:a68b94f851d63fed9fe78079919b6a46c093579929bfd50cd081d5dac5e51253
├── PRTSCR.COM                 2.7 KB  1987-02-23  sha256:bcb24970b16648a76aa386d9f6e3db71236ce540b5bd467d9371e60f24584ee0
├── QUICKCAT.COM              39.6 KB  1987-02-23  sha256:42bea675dc0480ec4c297eb381d5b27ac12d49e916af9cf76541ca12dab8a1ea
├── README.DOC                  13 KB  1987-02-23  sha256:838b34098d70c10b5f4c8126e514e65ebee21f53a726c9434afdfe1c7415a8de
├── ROMCHECK.EXE               7.4 KB  1987-02-23  sha256:3608671b96576f2897a20e61e6315040db483b4b24844d41a478de5a225b12d7
├── ROMDATE.EXE                6.7 KB  1987-02-23  sha256:62f0b5b657f15e1d3e4dbc9c9ebb44538a26e96f9adcc362f183b44180b1efd2
├── RS232.EXE                    7 KB  1987-02-23  sha256:42bfba34215c953428427253e51f468667c121f9bc41534d5b610e999fc9e73f
├── SETCLOCK.COM                179 B  1987-02-23  sha256:0ec88c7625ecf01f2abd181404c26c956caa1f62fddc2cc830d934774fe93686
├── SWAP.COM                    627 B  1987-02-23  sha256:f63db3aecccfa30fd48ef23ebdd32c94a79a46dd505b4e4e49a4d644f026dc7e
├── TABX.COM                  12.9 KB  1987-02-23  sha256:566ac824cb7501a26e3c83055dcbe4f45cd1c7bede00e64ff0bf7274c262b27f
└── THATSALL.EXE                 3 KB  1987-02-23  sha256:adfa6f6e5931ddbcd260a3fff31b940ac62eaee1db28582eae76b20617f84145
│
└─ END COMPUTER-SHOPPER_PC-CLONES-START-UP-UTILITY-SOFTWARE_1987.IMG

▸ File Manifest

PathSize ModifiedSHA-256
BARCODE.EXE 12.8 KB 1987-02-23 21:09 8fca2ae40d38de9291de9aba5b5c6e9399fe7dd8c10e99ad4621d81519c68ad7
BLANK3.COM 628 B 1987-02-23 21:09 7d20d51eee64ba9511209a92cb905948aebd826f514e291b64262509dae06018
BNCHMARK.EXE 21.5 KB 1987-02-23 21:09 dec9fcbf698336804dce179e55cc04528db5aeeffed18962eed6148f435e2ea1
CLEAN.COM 13.6 KB 1987-02-23 21:09 2334028254d33c393d77e890bbfc6e7cc082880ffa2612b3a52057f98e3dade4
COLORS.EXE 7.1 KB 1987-02-23 21:09 41a90b5661a00c224baaea366e66dad7e24022632b81ca4010f80a2f0a89eb49
DATETIME.COM 13.2 KB 1987-02-23 21:09 cd970056af83319ee5d5800475dc6c78506734565a437b2d85e149a8df755282
DIRTY.COM 13.7 KB 1987-02-23 21:09 ca251ffb70774b16fa71ca9070d21896b18420282da942a3d1f2bd3b9cba685e
DISKINFO.EXE 6.9 KB 1987-02-23 21:09 fa9e89b1ea5aff35337bacc6462e2820bd03a3c0a9a6d957f18f941711ab129b
DOCLEN.EXE 8.7 KB 1987-02-23 21:09 a422521ce92ad0d68f55dc89885042890dc7cb6c1e728343b19ff7191b9c7f74
FF.COM 14 B 1987-02-23 21:09 5ae1ca9a4ccdd3e9aa8888faaca91a2514122ec775c7fe94616974204e910fa8
FIND.EXE 7.7 KB 1987-02-23 21:09 23f641cf50e5210a70df47c66b1fb971d3ecda0aafbf70e82d7fd8d7a5c548de
HDPARK.EXE 7.3 KB 1987-02-23 21:09 fcbd659f31d86317bff3cb67370bcccd1a407d6c105155f77645dc5965c4b263
INT.EXE 8.2 KB 1987-02-23 21:09 decc1f76cb31c3c9635d510739aa56dc85afdafef838b80846e8ca9422af3ab9
ISPRIME.EXE 9.4 KB 1987-02-23 21:09 2765c7d47b5072eae1642c9fd505284740e4b6f57c13cb0e82e4159ab3d2f93f
MOVEFILE.EXE 6.6 KB 1987-02-23 21:09 8920a1e9b3984d448dea9631a86f0387276e4b189a453ebd19020900b1c47051
PRIME.EXE 20 KB 1987-02-23 21:09 a68b94f851d63fed9fe78079919b6a46c093579929bfd50cd081d5dac5e51253
PRTSCR.COM 2.7 KB 1987-02-23 21:09 bcb24970b16648a76aa386d9f6e3db71236ce540b5bd467d9371e60f24584ee0
QUICKCAT.COM 39.6 KB 1987-02-23 21:09 42bea675dc0480ec4c297eb381d5b27ac12d49e916af9cf76541ca12dab8a1ea
README.DOC 13 KB 1987-02-23 21:09 838b34098d70c10b5f4c8126e514e65ebee21f53a726c9434afdfe1c7415a8de
ROMCHECK.EXE 7.4 KB 1987-02-23 21:09 3608671b96576f2897a20e61e6315040db483b4b24844d41a478de5a225b12d7
ROMDATE.EXE 6.7 KB 1987-02-23 21:09 62f0b5b657f15e1d3e4dbc9c9ebb44538a26e96f9adcc362f183b44180b1efd2
RS232.EXE 7 KB 1987-02-23 21:09 42bfba34215c953428427253e51f468667c121f9bc41534d5b610e999fc9e73f
SETCLOCK.COM 179 B 1987-02-23 21:09 0ec88c7625ecf01f2abd181404c26c956caa1f62fddc2cc830d934774fe93686
SWAP.COM 627 B 1987-02-23 21:09 f63db3aecccfa30fd48ef23ebdd32c94a79a46dd505b4e4e49a4d644f026dc7e
TABX.COM 12.9 KB 1987-02-23 21:09 566ac824cb7501a26e3c83055dcbe4f45cd1c7bede00e64ff0bf7274c262b27f
THATSALL.EXE 3 KB 1987-02-23 21:09 adfa6f6e5931ddbcd260a3fff31b940ac62eaee1db28582eae76b20617f84145

▸ Antivirus Scan

✓ NO THREATS DETECTED
26FILES SCANNED
0INFECTED
0ERRORS
0.01sSCAN TIME
Engine: ClamAV 1.4.3 / DB 27962  ·  via clamdscan
Infected files: 0
Time: 0.005 sec (0 m 0 s)

▸ Archive.org

This floppy disc image has been uploaded to the Internet Archive for permanent preservation in SCP, RAW FLUX and IMG formats.

⬡ View on Archive.org

Identifier: computer-shopper-pc-clones-start-up-utility-software-1987

▸ Live Access via mTCP NetDrive

This disk image is available for immediate live access on the public X86.WORLD mTCP NetDrive service. Mount it directly as a drive letter on any DOS machine with a network connection — no download required.

DOS COMMAND
NETDRIVE CONNECT disks.x86.world:2002 Computer-Shopper_PC-Clones-Start-up-Utility-Software_1987.img D:

Requires mTCP and a configured packet driver. Replace D: with any free drive letter. The connection is session-scoped (writeable, but only for your connected session).
Type NETDRIVE DISCONNECT D: to unmount.

▸ Media Gallery