installshield

InstallShield installer error 2006 with GUI installer

[亡魂溺海] 提交于 2020-01-15 12:27:30
问题 I am trying to run an installer built using InstallShield, and when using the installer in Windows 2008, it works as intended; the same installer running in Windows 2012R2, fails with the message Installer User Interface mode Not Supported The installer cannot run in this UI mode. To specify the interface mode, use the I-command-line option, followed by the UI mode identifier. The valid UI modes identifiers are GUI, Console, and Silent. I am running as Administrator, and I tried using the

string too long with MsiGetProperty with Installshield Installscript

情到浓时终转凉″ 提交于 2020-01-15 09:08:32
问题 I am using MsiGetProperty to get string parameter value from the installer. And after that I am calling a managed dll and I pass the that value: nvBufferSize = MAX_STRING; MsiGetProperty (hMSI, "DBHMS", sDbHost, nvBufferSize); when I pass the value of sDbHost is like this when I receive it from managed code: srvdata-02NULNULNULNULNULNUL...... however in the interface I wrote just "srvdata-02". With that same code it was fine with Installshield 2010, now I am upgrading it to installshield 2012

string too long with MsiGetProperty with Installshield Installscript

馋奶兔 提交于 2020-01-15 09:08:08
问题 I am using MsiGetProperty to get string parameter value from the installer. And after that I am calling a managed dll and I pass the that value: nvBufferSize = MAX_STRING; MsiGetProperty (hMSI, "DBHMS", sDbHost, nvBufferSize); when I pass the value of sDbHost is like this when I receive it from managed code: srvdata-02NULNULNULNULNULNUL...... however in the interface I wrote just "srvdata-02". With that same code it was fine with Installshield 2010, now I am upgrading it to installshield 2012

InstallShield 软件打包完整教程(含添加自定义依赖环境)

六月ゝ 毕业季﹏ 提交于 2020-01-13 13:23:51
任务说明:公司一个绿色版的软件,为安装部署是需要很多的环境依赖,如 DevExpress、.net4.5、WinRAR等,客户提出安装复杂,并且有漏装后无法启动等情况,现将绿色版转安装版,并将依赖环境集成进去。 注:博主发现网上的教程大多是只讲了利用软件的引导部分实现简单的打包,少有对依赖环境的集成进行讲解,所以写下这一篇内容。 本人用的是汉化版,请使用英文版的自行对号入座即可。 1 软件打包说明 1.1 InstallShield的安装 InstallShield 2010下载地址 点击这里 ,安装方法网上有很多就不赘述了。 1.2 绿色版安装包的前期准备 如果你需要打包的绿色版软件比较小(1G以内),或者文件结构比较简单,请忽视此段,由于我所要打包的软件体积比较大,最重要的是文件结构比较复杂,内部文件夹嵌套较多,且例如图片,xml等小文件较多,这样 InstallShield软件在打包导入的时候会非常慢,我尝试导入了10多个小时也没有结束就放弃了,所以在这里我建议对文件结构复杂的软件进行压缩处理,压缩方式请转 RAR打包为自解压exe文件教程,得到一个单独的 EXE文件(自解压格式)后进行接下来的操作。 2 InstallShield打包完整流程 2.1创建新的 Windows Installer | InstallScript MSI Projcet

msiexec parameters via setup.exe to create log not working

被刻印的时光 ゝ 提交于 2020-01-11 11:28:07
问题 I'm trying to get a log from my install that uses a setup.exe. I can get a log with just setup.exe /V"/l*v c:\temp\installlog.txt", but I want to pass the "x" parameter as well to get "Extra debugging information" and when I try setup.exe /V"/l*vx c:\temp\installlog.txt" I get: 1629: Invalid command line. Any idea what I'm doing wrong? I have msiexec version 5 installed. 回答1: Ancient setup.exe : I tried with an ancient version of Installshield and the setup.exe for a Basic MSI worked as

Switching from InstallShield to WiX

随声附和 提交于 2020-01-10 17:44:05
问题 I am looking for a replacement for InstallShield. Unfortunately we only have 1 license for InstallShield and it was installed on a developer's machine. I'm considering switching over to WiX, but after reading the documentation there is a Product ID GUID, Upgrade Code GUID and a Package GUID. I also know GUID's were created by InstallShield. If I switch over to WiX can I start using new GUID's or do I have use some of the GUID's created by InstallShield? If an upgrade to a product is released

How to create sql Database in installshield express?

烂漫一生 提交于 2020-01-07 09:15:14
问题 I recently developed a winform application with c# and SQL Server 2008 data access. I want to create an "InstallShield express" setup file for it (I don't want to use ClickOnce or Setup And Deployment witch is available in VS). I want to create a db or attach it to SQL server instance after installing SQL Server Express 2008 SP3 (not local db). What is the best way to do this? 回答1: Your question is quite vague as you do not explain what kind of “app”, “setup file” or “db” you are using, nor

How to create sql Database in installshield express?

谁都会走 提交于 2020-01-07 09:14:48
问题 I recently developed a winform application with c# and SQL Server 2008 data access. I want to create an "InstallShield express" setup file for it (I don't want to use ClickOnce or Setup And Deployment witch is available in VS). I want to create a db or attach it to SQL server instance after installing SQL Server Express 2008 SP3 (not local db). What is the best way to do this? 回答1: Your question is quite vague as you do not explain what kind of “app”, “setup file” or “db” you are using, nor

Installshield Automation is failing while running vbscript with error unable to create object

老子叫甜甜 提交于 2020-01-06 12:42:40
问题 I am using Installshield 2013 SP1 SAB(stand alone build). I am trying to change the product codes, strings and properties with help of following VBSCRIPT. But my VBScript is failing at the following code with error: "Unable to CreateObject with IS automation interface" On Error Resume Next Set oISM = CreateObject("IswiAuto20.ISWiProject") if Err.Number <> 0 Then Wscript.Echo "Unable to CreateObject with IS automation interface" & vbNewLine Wscript.Quit Err.Number End If I have registered

How to auto generating setup file while check-in the code in to TFS

江枫思渺然 提交于 2020-01-06 05:59:12
问题 How do I integrate InstallShield/Wix/IsWix with TFS? I wish to auto generate setup files during successful TFS checkin/release? I am comparing InstallShield with Wix and IsWix ! to choose the right candidate for upcoming product development. Tools Used v.Next Builds Team Foundation Version Control Update from InstallShield support team To integrate InstallShield with Team Foundation Server, install InstallShield on each machine that u want to be able to create, update, or build InstallShield