Dec 21, 2011
08:35 AM
Has anyone found a solution to this problem? We just upgraded from IS2011 to IS2012. We use IsCmdBld in our automated building process. We are getting the same error code returned and it is causes our TFSBuild to fail.
... View more
May 18, 2011
06:44 AM
I built an install and when I double click it to run it nothing happens. I did a /debuglog barely get anything in the log. I have no clue what the issue is or even how to debug this issue. LOG: 2011[06:40:07 AM]: InstallShield setup.exe (Unicode) started, cmdline: /debuglog 5-18-2011[06:40:07 AM]: Extracting setup.ini... 5-18-2011[06:40:07 AM]: Extracting 'Setup.INI' to C:\Users\buildmgr\AppData\Local\Temp\{D6D07720-9144-4EA3-A426-D02B57CADBB7}\Setup.INI 5-18-2011[06:40:08 AM]: Extracting '0x0409.ini' to C:\Users\buildmgr\AppData\Local\Temp\{D6D07720-9144-4EA3-A426-D02B57CADBB7}\0x0409.ini 5-18-2011[06:40:08 AM]: Reading setup.ini from C:\Users\buildmgr\AppData\Local\Temp\{D6D07720-9144-4EA3-A426-D02B57CADBB7}\Setup.INI 5-18-2011[06:40:08 AM]: Extracting 'BetaMarker.dat' to C:\Users\buildmgr\AppData\Local\Temp\{D6D07720-9144-4EA3-A426-D02B57CADBB7}\BetaMarker.dat 5-18-2011[06:40:08 AM]: Extraction of 'BetaMarker.dat' failed 5-18-2011[06:40:08 AM]: Extracting 'EvalMarker.dat' to C:\Users\buildmgr\AppData\Local\Temp\{D6D07720-9144-4EA3-A426-D02B57CADBB7}\EvalMarker.dat 5-18-2011[06:40:08 AM]: Extraction of 'EvalMarker.dat' failed 5-18-2011[06:40:08 AM]: Upgrade check: checking product code {24BFE338-9D46-4BD6-9E38-492336342AF9} 5-18-2011[06:40:08 AM]: Extracting '' to C:\Users\buildmgr\AppData\Local\Temp\{D6D07720-9144-4EA3-A426-D02B57CADBB7}\ 5-18-2011[06:40:08 AM]: Extraction of '' failed
... View more
Labels
- Labels:
-
InstallShield 2011
Oct 27, 2010
01:38 PM
I am actually having the same exact issue. I upgraded to 2011 because .NET 4 managed code custom actions weren't working at all. I just ran into this issue trying to set up a new one. All of the old ones are working properly, just having an issue setting up a new one is all.
... View more
Feb 25, 2010
12:48 PM
This is what I ended up using: [CODE] ... [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)] private static extern IntPtr GetForegroundWindow(); public class WindowWrapper : System.Windows.Forms.IWin32Window { public WindowWrapper(IntPtr handle) { _hwnd = handle; } public IntPtr Handle { get { return _hwnd; } } private IntPtr _hwnd; } ... MessageBox.Show(new WindowWrapper(GetForegroundWindow()), "Yippee!"); [/CODE]
... View more
Feb 25, 2010
12:26 PM
I found a few answers to the problem. There are two ways to do this I think. What are you trying to call from your custom action?
... View more
Feb 24, 2010
03:20 PM
I have a managed custom action that calls a C# DLL. The C# DLL displays a dialog. When I run this custom action on a Windows 2008 64-bit machine all of the C# dialogs show up in the background behind the installer window. Does anyone know how to make those dialogs come to the foreground. It works on all other types of operating systems.
... View more
Labels
- Labels:
-
InstallShield 2010
Jan 07, 2010
12:45 PM
I need to have Installshield create application shortcuts on the installed machine for all users. I also need to install a couple .url files as shortcuts on the desktop for all users. What do I need to do in Installshield to do this?
... View more
Labels
- Labels:
-
InstallShield 2010
Dec 30, 2009
02:00 PM
This was the only way I could think of doing it as well. I guess I will just go ahead and follow this.
... View more
Dec 30, 2009
11:50 AM
I am using Installshield (Basic MSI) to install and start a service during the installation process of my product. I am using the service control settings to start the service. During the install my service fails to start and I get this error in the event log. This service account does not have the necessary user right "Log on as a service." User Action Assign "Log on as a service" to the service account on this computer. You can use Local Security Settings (Secpol.msc) to do this. If this computer is a node in a cluster, check that this user right is assigned to the Cluster service account on all nodes in the cluster. Is there a way in Installshield to automatically add this user to this policy?
... View more
Labels
- Labels:
-
InstallShield 2010
Nov 20, 2009
09:38 AM
I am using a Basic MSI and calling a managed code custom action. The C# dll for my custom action contains a windows form that will pop up as a dialog during the UNINSTALL process of my product. The issue I am having is that the dialog always pops up behind the IS dialogs for uninstalling. I have seen this work on an XP machine but fails to put my dialog in the Foreground on a Windows 2008 machine. (I have tried to put in SetForeground code in my managed code but nothing seems to work.) Any help or suggestions out there? I am completely stuck on this.
... View more
Labels
- Labels:
-
InstallShield 2010
Nov 12, 2009
09:04 AM
I'm trying ot make the next button on a dialog Enable and Disable based on a TextBox being empty or not. How would I write a condition like that? I know that the this condition should be put in the Conditions tab for the Next button.
... View more
Labels
- Labels:
-
InstallShield 2010
Nov 10, 2009
11:23 AM
During my install I need to add an user to the IIS_WPG group on a 2003 machine. Anyone know if that is possible to do in an installscript? I am using a Basic MSI project.
... View more
Labels
- Labels:
-
InstallShield 2010
Nov 04, 2009
09:23 AM
For now MSI5 machines, like 2003 and 2008 (non-R2), is there anything built into IS to configure services?
... View more
Nov 03, 2009
02:47 PM
Thanks for that answer. I just called support a few minutes before posting this and they gave me no mention of a SP released and this ability in there. Downloading it now and will test it out.
... View more
Latest posts by Matronix
Subject | Views | Posted |
---|---|---|
2197 | Dec 21, 2011 08:35 AM | |
1769 | May 18, 2011 06:44 AM | |
1206 | Oct 27, 2010 01:38 PM | |
986 | Feb 25, 2010 12:48 PM | |
986 | Feb 25, 2010 12:26 PM | |
2307 | Feb 24, 2010 03:20 PM | |
507 | Jan 08, 2010 09:55 AM | |
1702 | Jan 07, 2010 12:45 PM | |
874 | Dec 30, 2009 02:00 PM | |
3451 | Dec 30, 2009 11:50 AM |
Activity Feed
- Posted Re: Error code 1073741819 from ISCmdBld on InstallShield Forum. Dec 21, 2011 08:35 AM
- Posted Install doesn't start on InstallShield Forum. May 18, 2011 06:44 AM
- Posted Re: Managed Code Custom Action on InstallShield Forum. Oct 27, 2010 01:38 PM
- Posted Re: Dialog box showing up in background on 64-bit machines. on InstallShield Forum. Feb 25, 2010 12:48 PM
- Posted Re: Dialog box showing up in background on 64-bit machines. on InstallShield Forum. Feb 25, 2010 12:26 PM
- Posted Dialog box showing up in background on 64-bit machines. on InstallShield Forum. Feb 24, 2010 03:20 PM
- Posted Re: Install shortcuts for All Users on InstallShield Forum. Jan 08, 2010 09:55 AM
- Posted Install shortcuts for All Users on InstallShield Forum. Jan 07, 2010 12:45 PM
- Posted Re: Service failing to start during install. Need to set "Log on as service" policy on InstallShield Forum. Dec 30, 2009 02:00 PM
- Posted Service failing to start during install. Need to set "Log on as service" policy on InstallShield Forum. Dec 30, 2009 11:50 AM
- Posted Dialog box not popping up in the foreground on Windows 2008 on InstallShield Forum. Nov 20, 2009 09:38 AM
- Posted Condition based on a text box being empty on InstallShield Forum. Nov 12, 2009 09:04 AM
- Posted Installscript to add an user to a group on InstallShield Forum. Nov 10, 2009 11:23 AM
- Posted Re: How to configure a service during install? on InstallShield Forum. Nov 04, 2009 09:23 AM
- Posted Re: How to configure a service during install? on InstallShield Forum. Nov 03, 2009 02:47 PM
- Posted How to configure a service during install? on InstallShield Forum. Nov 03, 2009 02:18 PM
- Posted How to restart IIS7 automatically in install? on InstallShield Forum. Oct 19, 2009 01:31 PM
- Posted Re: IIS 7 - Uninstall is not removing applications set up in IIS. on InstallShield Forum. Sep 28, 2009 04:23 PM
- Posted Re: IIS 7 - Uninstall is not removing applications set up in IIS. on InstallShield Forum. Sep 28, 2009 03:35 PM
- Posted Re: IIS 7 - Uninstall is not removing applications set up in IIS. on InstallShield Forum. Sep 22, 2009 12:35 PM