Cabinet files, like Zip files, contain compressed data. Microsoft uses cab files to package software programs. When you install one of these programs, the installer extracts the cab files to your hard drive. Microsoft originally created cabs to work with floppy disks that could not hold much data. You can view the contents of a cab file by unzipping it and extracting its contents to a folder.
Step 1
Click the Windows "Start" menu button and type "cmd." The "cmd.exe" icon will appear in the list of search results.
Video of the Day
Step 2
Click that icon to open the "Command" window.
Step 3
Type the following command:
expand xyz.cab -f:* C:\targetFolder
Replace "xyz.cab" with the name of your cab file. Replace "C:\targetFolder" with the name of the destination folder. For example, to unzip a cab file named "mycab.cab" to a folder named "Test" on your "C" drive, type the following:
expand mycab.cab -f* C:\Test
Step 4
Press "Enter." Windows will extract the cab files and place them in the destination folder.
Video of the Day