Category : BBS Programs+Doors
Archive   : PKINSV64.ZIP
Filename : PKINSPCB.DOC

 
Output of file : PKINSPCB.DOC contained in archive : PKINSV64.ZIP




ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
³ ³
³ ³
³ ³
³ ³
³ ³
³ ³
³ ³
³ ³
³ ³
³ ³
³ P K I N S E R T ³
³ Version 6.4 ³
³ ³
³ Copyright 7th Illusion, 1990-1991 ³
³ All Rights Reserved ³
³ Released September 22nd, 1991 ³
³ ³
³ F R E E W A R E ³
³ ³
³ ³
³ ³
³ ³
³ ³
³ ³
³ PCBoard Interface ³
³ Documentation ³
³ ³
³ ³
³ ³
³ ³
³ ³
³ 7th Illusion ³
³ Post Office Box 1334 ³
³ Station H ³
³ Montreal, Quebec ³
³ Canada ³
³ H3G 2N6 ³
³ ³
³ Node 1 (514)338-1193 ³
³ USRobotics Courier HST 14400 Bps ³
³ 1:167/[email protected] ³
³ ³
³ Node 2 (514)338-1680 ³
³ GVC Super Modem 2400 Bps ³
³ ³
³ ³
³ ³
³ ³
³ ³
³ ³
³ ³
³ ³
ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ



PKinsert/PCBoard Interface Documentation Page 1 of 4


ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
º Options Menu º
º º
º Test Archives : Y º
º Rename Corrupt/Virused Archives : N º
º Make Extended Pass/Fail Log File : Y º
º º
ÈÍÍÍ 00/00/00 ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ 00:00:00pm ÍÍͼ

ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
º File Location Menu º
º º
º Extended Pass Log File : PCBPASS.TXT º
º Extended Fail Log File : PCBFAIL.TXT º
º Virus Comment (Test) : C:\PKINSERT\VIRUSTST.CMT º
º Virus Comment (Upload) : C:\PKINSERT\VIRUSULD.CMT º
º º
ÈÍÍÍ 00/00/00 ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ 00:00:00pm ÍÍͼ


Don't include paths for the extended pass and fail logs. They'll be
created in the directory Pkinsert is called from.

You will only need one configuration file. Using environment
variables you can control unique configurations for every node.
































PKinsert/PCBoard Interface Documentation Page 2 of 4


PCBoard Version 14.5

Autoexec.Bat
~~~~~~~~~~~~
@Echo Off
Set Tagline=7th Illusion Telecommunication Services
Set Pkinsert=/S7.6v80 /Ndos

ie. Tagline The value of Tagline is added to the archive
comment.
/S7.5v80 Version of Scan currently using.
/Ndos Default node number.

Board.Bat
~~~~~~~~~
@Echo Off
Set Node=1

ie. Node number for this partition/work station.

Pcbtest.Bat
~~~~~~~~~~~
@Echo Off
IF Exist Pcbpass.Txt Del Pcbpass.Txt
If Exist Pcbfail.Txt Del Pcbfail.Txt
D:\Pkinsert\Pkinsert /CD:\Pkinsert\Node.Cfg /D:\Pkinsert\Node...
...%Node%.Log /N%Node% %1 /%2

ie. Note. Pcbtest.Bat may reside in a PATHed directory making it
accessible from any node.

Pkinsert will use the communal configuration file and over-
ride the values for the node number and log file.

%1 Contains the path and file name of the archive.

%2 Will be assigned a value of `UPLOAD' if PCBoard is
shelling to test an upload. Using the Test command will
leave this value blank. Pkinsert will ignore any
forward slashes or options which are not assigned a
value.
















PKinsert/PCBoard Interface Documentation Page 3 of 4


PCBoard Version 14.5a

Autoexec.Bat
~~~~~~~~~~~~
@Echo Off
Set Tagline=7th Illusion Telecommunication Services
Set Scan=7.6V80
Set Pkinsert=/S%Scan% /Ndos

BOARD.BAT
~~~~~~~~~
@Echo Off
Set Node=1

Pcbtest.Bat
~~~~~~~~~~~
@Echo Off
IF Exist Pcbpass.Txt Del Pcbpass.Txt
If Exist Pcbfail.Txt Del Pcbfail.Txt
Set Pkinsert=/S%Scan% /N%Node% /LD:\Pkinsert\Node%Node%.Log
D:\Pkinsert\Pkinsert /CD:\Pkinsert\Node.Cfg %1 /%2 /D%3

Pcboard V14.5a has added a value of `TEST' to %2 when shelling for a
systems archive test. %3 contains the name and path of the archive
description file (for uploads only).

I've had to split the Pkinsert options between the command line and
environment variable since their combined length usually exceeds 128
characters.




























PKinsert/PCBoard Interface Documentation Page 4 of 4


7th Illusions Pcbtest.Bat

The above installations are functional, but somewhat unrealistic in
their simplicity. Following is 7th Illusions Pcbtest.Bat file.

@Echo Off
If Exist Pcbpass.Txt Del Pcbpass.Txt
If Exist Pcbfail.Txt Del Pcbfail.Txt
If Exist Pcbtest.Txt Del Pcbtest.Txt
:
: File Date (c)Symantec Corp.
: ~~~~~~~~~~~~~~~~~~~~~~~~~~
If (%2) == (UPLOAD) Fd %1
:
: Pkinsert (c)7th Illusion
: ~~~~~~~~~~~~~~~~~~~~~~~~
Set Pkinsert=/S%Scan% /N%Node% /LD:\Pkinsert\Node%Node%.Log
D:\Pkinsert\Pkinsert /CD:\Pkinsert\Node.Cfg %1 /%2 /D%3
If Exist Pcbfail.Txt Goto EndBatch
:
: Zipfile Duplicate Checking System (c)Michael W. Cocke
: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If Exist Pcbpass.Txt Ren Pcbpass.Txt Pcbtest.Txt
D:\Tools\Zdcs\Zdcsfc %1 %2 %3
If Not Exist Pcbfail.Txt Copy Pcbtest.Txt Pcbpass.Txt >Nul
If Exist Pcbfail.Txt Copy Pcbtest.Txt+Pcbfail.Txt >Nul
If Exist Pcbfail.Txt Copy Pcbtest.Txt Pcbfail.Txt >Nul
If Exist Pcbtest.Txt Del Pcbtest.Txt
:
:EndBatch




























  3 Responses to “Category : BBS Programs+Doors
Archive   : PKINSV64.ZIP
Filename : PKINSPCB.DOC

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/