Section [DefaultInstall] key "AddReg" - there are no section entriesto process.

  • Thread starter Thread starter Lcubed
  • Start date Start date
L

Lcubed

This seems to be a common problem, and I've searched all the groups
and googled and googled, but have yet to find a solution.

When I build my application, I get the following warning twice :
Section [DefaultInstall] key "AddReg" - there are no section entries
to process.

My CAB file is fairly straight forward, here is the DefaultInstall
section it is complaining about with related sections. Does anyone
have any ideas on how to get rid of the warnings or what is causing
them? Thanks!

[CEShortcuts1]
"My.lnk",0,"MyApp.exe", "\Windows\Startup"

[DestinationDirs]
CopyFiles1=0,"\Program Files\MyApp"
CopyFiles2=0,"\Program Files\MyApp\Temp"

CEShortcuts1=0,"%CE11%"

[DefaultInstall]
CopyFiles=CopyFiles1,CopyFiles2
CEShortcuts=CEShortcuts1
 
CabWiz is looking for the registry entry section. You don't have one, so it
tosses a warning. You can either ignore it, or add a registry section with
no keys in it.


--

Chris Tacke, Embedded MVP
OpenNETCF Consulting
Giving back to the embedded community
http://community.OpenNETCF.com
 
Back
Top