我在哪里可以获得 cabarc 实用程序?
我正在尝试编译一个使用 cabarc.exe
的程序,但我没有 cabarc.exe
。问题是 Microsoft Cabinet SDK 不再可用,因此我无法从那里获取它任何一个。
我在哪里可以获得这个文件?
PS 我正在寻找来自可信来源(例如 microsoft.com)的下载
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
它出现
cabarc.exe
实用程序已替换为 Windows 附带的makecab.exe
[来源]。它应位于:
可以在 找到
cabarc
文档在这里。makecab
文档可以在此处找到。It appears that the
cabarc.exe
utility has been replaced withmakecab.exe
, which comes with Windows [source].It should be located in:
The
cabarc
documentation can be found here.The
makecab
documentation can be found here.cabarc.exe
作为 Windows XP Service Pack 2 支持工具。您可以使用如下命令仅提取此实用程序(如果您不运行 XP):
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):
您可以从此处下载 CabSDK:
下载 Microsoft Cabinet SDK 版本 4.71.410.0< /a>
You can download the CabSDK from here:
Download the Microsoft Cabinet SDK version 4.71.410.0
在 Windows 7(也可能是 Vista)中,您可以使用扩展而不是提取。语法略有不同,但请参阅下面的对我有用的语法。将第二个命令中的 %TEMP% 替换为您希望 cabarc.exe 文件结束的位置。
WindowsXP-KB838079-SupportTools-ENU.exe /C /T:%TEMP%
展开 %TEMP%\support.cab -F:cabarc.exe %TEMP%
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%
您可以在 Internet Explorer 管理工具包中找到 cabarc.exe。
但奇怪的是,IEAK 11 的 cabarc.exe 版本为 5.0.2147.1,而 IEAK 10 的版本为 6.2.9200.16521。
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.
对于 Windows 8 和 Windows 8.1,请使用 Windows ADK
从此网站<下载并安装 Windows ADK /a>.
对于expand.exe命令,请参阅
http://technet.microsoft.com/en-us/library/hh825253.aspx
在执行展开命令之前,目标目录必须存在。例如:
展开 Dell-WinPE-Drivers-A02.CAB Dell-WinPE-Drivers-A02 -f:*
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:*