'Cabinet' file listing
An MS-DOS batch-file to return the contents of a 'cabinet' file as a text file.
Contents
Introduction
A simple batch-file to generate a text file containing a listing of the contents of a 'cabinet' file. A cabinet file has the extension 'CAB'. Perhaps the most likely use of this batch-file is to view the contents of the Windows95 distribution.
Listing of this batch file
@echo off :: CabList :: :: :: :: A batch file to list the contents :: :: of a CAB file :: :: :: @extract /d "%1" > %temp%\listcab.txt @notepad.exe %temp%listcab.txt