English 中文(简体)
如何使Installshield 2012变得模糊不清。 2. 改变多种财产的外线指挥工具
原标题:How to have Installshield 2012 iscmdbld.exe command-line tool modify multiple properties

我正试图进行自动化建筑,我的建筑服务器通过一些指挥线选择加以压缩。 挖掘是为了修改窗户安装后产生的微薄物。 我得以进行一项财产改变,但我现在想改变两点,第二点似乎行不通。

目前,我正在利用以下备选办法来建立这一工具:

    -y "2.50.0100" -z "APP_VERSION=2.5.0.0.1" -z "APP_COMMENTS= Customer ID Version 2.5.0.0.1"

The part that doesn t seem to work is the second -z command-line option for the second property. Any thoughts?

PS。 我使用了安装机shi-2011的标签,因为我无法为2012年设定一台,这在2011年和2012年基本相同。

最佳回答

我设立了一个新的“基本职业技能”项目,增加了一个精彩的特征和组成部分,并用多种——z的论点来加以充实。 我审视了MSI的产物表,并按预期值计算。

您的简历中是否有任何错误?

公共工程部,IsCmdBld是罚款的,而且全部是罚款的,但是,如果你进入更为复杂的建筑情景,你可能会赞赏利用InstallShield MSBuild支持,以及COM自动化界面来管理你的建筑。

例如,我发现,如果通过XML这一范围的话,那么我会更容易地向某些EXE提出论点。

<PropertyGroup>
  <InstallShieldProductVersion>$(MSIProductVersion)</InstallShieldProductVersion>
</PropertyGroup>
<ItemGroup>
  <InstallShieldPropertyOverrides Include="$(CustomLongProductVersion)">
    <Property>APP_VERSION</Property>
  </InstallShieldPropertyOverrides>
  <InstallShieldPropertyOverrides Include=" Customer ID Version $(CustomLongProductVersion)">
    <Property>APP_COMMENTS</Property>
  </InstallShieldPropertyOverrides>
</ItemGroup>
问题回答

暂无回答




相关问题
Reusing InstallShield prerequisites

I m looking to have a release layout with multiple installers but with a single source for prerequisites, in the following structure: Product1setup.exe Product2setup.exe Product3setup.exe ...

DuplicateFile table with GAC

My installer has grown very large b/c of file duplication. Some of our DLL s are in two places (local and GAC or local and system32 folders). How can I use the DuplicateFile table or other ...

Error 1926 on setup created by InstallShield 2008

I m compiling the setup with InstallShield 2008 - Professional and I have a problem that occurred only in some Win 7 Ultimate systems. My setup is suppose (among others) to copy files to the "Program ...

A InstallShield INSTALLDIR and TARGETDIR issue

Now I have a problem about InstallShield INSTALLDIR and TARGETDIR. for example: 1- I make a project named "MyTestprogram" 2- I install this program into my computer which location is D:MyCompany...

Why isn t SQL Text Substitution working in InstallShield

I m trying to run some dynamic SQL in an installscript project. In the UI portion of the script I have the following code: TextSubSetValue("<INSERTSITES>", message, TRUE); message = ""; ...

how to open a web page on click of button in InstallShield?

HI, I want to open a web page on click of a button in any dialog that is created in InstallShield. I think it can be created by using custom actions but as I am new in this tool do not find the exact ...

Silent install installer with prerequisites [closed]

Is there a way to install silently (/s) an InstallShield (non-MSI) installer that requires its own prerequisites? In my case the prerequisite is Microsoft Visual C++ 2008 Redistributable. Its UI ...

Issue with InstalShield

I Use Installsheild 2009 To Deployment VS2005 Project with Sql express 2005 DB. I put my exe and DB files. And I typed /qn SQLAUTOSTART=1 ADDLOCAL=ALL DISABLENETWORKPROTOCOLS=1 in command line to ...

热门标签