@ECHO OFF
CLS
ECHO  This program will extract files from any QWK packet, that you requested
ECHO  using the Synchronet offline file request commands or were added to your
ECHO  QWK packet because the files were in your batch download queue when you
ECHO  downloaded your QWK packet.                                                                                       
ECHO  -------------------------------------------------------------------------  
ECHO  PKUNZIP must be in the current directory or in your path.
ECHO  Your QWK packet containing the files to extract must be in the current 
ECHO  directory. Only one QWK packet should be in the current directory.
ECHO  After this has been run, your QWK packet and all the extracted files will 
ECHO  be in the current directory.                                                                                      
ECHO  -------------------------------------------------------------------------                                         
ECHO  Press the spacebar to continue or CTRL-BREAK to exit the program
PAUSE > NUL
REM ************************************
REM ** Replace QWKID with YOUR QWK id **
REM ************************************
PKUNZIP QWKID.QWK
PKZIP -a QWKID.QWK CONTROL.DAT
PKZIP -a QWKID.QWK DOOR.ID
PKZIP -a QWKID.QWK MESSAGES.DAT
PKZIP -a QWKID.QWK NEWFILES.DAT
PKZIP -a QWKID.QWK HELLO.
PKZIP -a QWKID.QWK *.NDX
PKZIP -a QWKID.QWK BLT-0.*
REM ************************************
DEL CONTROL.DAT
DEL DOOR.ID
DEL MESSAGES.DAT
DEL NEWFILES.DAT
DEL HELLO.
DEL *.NDX
DEL BLT-0.*
ECHO                                                                                                                    File Extraction Done                                                                                                            


