Click here to Skip to main content
15,890,609 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi there,

In my installshield setup, It shows a warning always....
Warning 1   -7235: InstallShield could not create the software identification tag because the Tag Creator ID setting in the General Information view is empty.  ISEXP : warning : -7235: InstallShield could not create the software identification tag because the Tag Creator ID setting in the General Information view is empty.

Can I disable "Use Software Identification Tag" option in installshield ?
Will I get any issue at the client side by doing so ? How can I get my setup verified ? Will it cost me for this ??
Posted
Comments
joshrduncan2012 16-Oct-13 9:07am    
You need to ask InstallShield Tech Support about this matter.
Sergey Alexandrovich Kryukov 16-Oct-13 13:47pm    
InstallShield is itself a bad idea anyway. Please see my comment below to see what I mean...
—SA
Sergey Alexandrovich Kryukov 16-Oct-13 13:46pm    
Using InstallShield is a pretty bad idea. I would advise using open-source WiX. Compared to WiX correctly using Microsoft standards, InstallShield looks plain "illegal" (not legitimate, in terms of the standardized project schema, please see my comment below).
—SA
joshrduncan2012 16-Oct-13 13:58pm    
I have InstallShield and I LOVE it. I don't see anything wrong with the legality of it.
Sergey Alexandrovich Kryukov 16-Oct-13 14:08pm    
"Legality" is just a figure of speech. I'll explain what's wrong. Microsoft created standard MSBuild with API (you can develop your own "Tasks" using .NET, for example) and standard XML-based schema for all projects. If you look at .NET and some other projects of different types, you will see that they follow the same schema, which is standardized. This way, you can created your own project types, buildable in a standard way. WiX follows this standard. Therefore, you can use, say, target Platform (in fact, this is the target instruction-set architecture, feature especially important for setup, because MSIs for different architectures are incompatible, but you want to build them from a single source) in a standard way, the same way as other BSBuild-standardized properties. So, WiX is really legitimate and perfectly integrated. Even the Setup project template supplied with Visual Studio is not following the standard; that's why Microsoft deprecated it for new Visual Studio version. And, at this time, I don't know anything correctly following the project standard except WiX, which also has very good Visual Studio integration (Intellisense, in particular). Another option is creating a custom setup project directly based on Windows Installer API (fully available with SDK), but this is quite inappropriate for most installations...
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900