| 42 |
| How can I make a back-up of a file that is too large to fit onto a diskette?
Get to the C: prompt and type the following commands... (we will assume in this case that the customer list name is CUSTOMER.LST) - CD \MAXA
- PKZIP A:BACKUP.ZIP CUSTOMER.*
This will create a file on the diskette called BACKUP.ZIP. To restore this file from the diskette to the hard drive type the following commands from the C: prompt... - CD \MAXA
- PKUNZIP A:BACKUP.ZIP
If the restored file (CUSTOMER.LST in this case) is not the current customer list, make the list current by using the following commands... - Customer list
- Press 'F' for file
- New
- Choose existing file
- CUSTOMER.LST
|