3

最近我升级到 Windows 8.1。

在为我的 windows mobile 旧项目之一尝试 craete CAB install 后,我收到此错误:

Warning: Section [RegKeys] has no data
Warning: Section [DefaultInstall] key "AddReg" - there are no section entries to process
Error: CAB file "SomePath\Release\FCS Setup.CAB" could not be created

这是inf文件

[Version]
Signature="$Windows NT$"
Provider="Souren"
CESignature="$Windows CE$"

[CEStrings]
AppName="FCS"
InstallDir=%CE1%\%AppName%

[Strings]
Manufacturer="Souren"

[CEDevice]
VersionMin=4.0
VersionMax=6.99
BuildMax=0xE0000000

[DefaultInstall]
CEShortcuts=Shortcuts
AddReg=RegKeys
CopyFiles=Files.Common1

[SourceDisksNames]
1=,"Common1",,"SomePath\Release\"

[SourceDisksFiles]
"FCS.exe"=1

[DestinationDirs]
Shortcuts=0,%CE2%\Start Menu
Files.Common1=0,"%InstallDir%"

[Files.Common1]
"FCS.exe","FCS.exe",,0


[Shortcuts]
"FCS",0,"FCS.exe","%CE17%"

[RegKeys]

在此错误之后,我注意到该[RegKeys]部分是空的,因此向 cab 添加了一些寄存器,并将我的 inf 文件的最后一部分更改为:

[RegKeys]
"HKCR","FCS","FCSName","0x00000000","SomeName"

但仍然没有创建出租车。并且错误只是更改为:

Error: CAB file "SomePath\Release\FCS Setup.CAB" could not be created

Windows 8.1 和 vs 2008 有什么问题吗?这个项目在我以前的窗口中运行良好。

4

2 回答 2

1

我找到了一个解决方案,它对我有用。它实际上与“8.3文件名”有关

http://social.msdn.microsoft.com/Forums/en-US/66ecc60c-5895-4020-b876-af122b56b058/ce-cab-wizard-error-cab-file-could-not-be-created

于 2014-01-29T19:40:47.863 回答
0

您可能遇到了对应创建 cab 的文件夹的访问限制。

如果您有 INF 文件,您可以尝试使用 inf 文件手动运行 cabwiz(我非常喜欢 VS 集成)并获取有关任何错误的更多信息:http ://www.hjgode.de/dev/imec/Making%20a %20CAB%20file.htm

于 2013-12-29T07:21:03.610 回答