Where can I get the cabarc utility?

心已入冬 提交于 2019-11-30 01:38:06

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.

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

You can download the CabSDK from here:

Download the Microsoft Cabinet SDK version 4.71.410.0

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%

You can find cabarc.exe in the Internet Explorer Administration Kit.

Strangely though, IEAK 11 has cabarc.exe version 5.0.2147.1, while IEAK 10 has version 6.2.9200.16521.

Itrel

For Windows 8 and Windows 8.1 use the Windows ADK

Download and install the Windows ADK from this website.

for the expand.exe command refer to http://technet.microsoft.com/en-us/library/hh825253.aspx

The destination directory has to exist before executing the expand command. For example:

expand Dell-WinPE-Drivers-A02.CAB Dell-WinPE-Drivers-A02 -f:*

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!