Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to compile a program which uses cabarc.exe, but I don't have cabarc.exe. The problem is that the Microsoft Cabinet SDK is no longer available so I can't get it from there either.

Where can I get this file?

P.S. I'm looking for a download from a trusted source such as microsoft.com

share|improve this question

4 Answers

up vote 13 down vote accepted

It appears that the cabarc.exe utility has been replaced with makecab.exe, which comes with Windows [source].

It should be located in:

  • C:\WINDOWS\system32

The cabarc documentation can be found here.

The makecab documentation can be found here.

share|improve this answer
Note that makecab produces a lot of extra artifacts that cabarc does not, such as a disk1/ directory, a setup.inf and a setup.rpt file. – RolKau Nov 14 '10 at 20:59

cabarc.exe is available as a part of the Windows XP Service Pack 2 Support Tools.

You can extract only this utility using commands like these (if you don't run XP):

WindowsXP-KB838079-SupportTools-ENU.exe /C /T:%TEMP%
extract /E %TEMP%\support.cab cabarc.exe
share|improve this answer
On Windows 7 64bit I wasn't able to execute the extract portion, so after extracting support.cab I just "unzipped" it with WinRAR and found cabarc.exe – bob esponja Jan 6 '12 at 23:21
If you have 7-zip installed, you can extract them directly: 7z e WindowsXP-KB838079-SupportTools-ENU.exe support.cab and then 7z e support.cab cabarc.exe – RolKau Jan 8 '12 at 21:07

You can download the CabSDK from here:

Download the Microsoft Cabinet SDK version 4.71.410.0

share|improve this answer

In Windows 7 (and possibly Vista) instead of extract you use expand. The syntax is slightly different, but see below for the one that worked for me. Replace %TEMP% in the second command with wherever you want the cabarc.exe file to end up.

WindowsXP-KB838079-SupportTools-ENU.exe /C /T:%TEMP%

expand %TEMP%\support.cab -F:cabarc.exe %TEMP%

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.