Jul 11, 2014
02:11 AM
MichaelU wrote: Everyone, we are actively looking into the incompatibility with many versions of InstallShield and Microsoft's recent security update to IE (KB 2962872). Further information and updates will be available on the InstallShield 2014 Sticky. Thanks Michael. I run into the same trouble using InstallShield 2011 Premier.
... View more
Mar 05, 2012
02:55 AM
GetEnvVar('COMPUTERNAME', svComputerName); or RegDBSetDefaultRoot(HKEY_LOCAL_MACHINE); RegDBGetKeyValueEx("System\\CurrentControlSet\\Control\\ComputerName\\Computername", "Computername", nvType, svComputerName, nvSize);
... View more
Feb 27, 2012
01:20 AM
Please follow up on this thread, with regard to error 1618 and LaunchApplication.
... View more
Feb 24, 2012
02:26 AM
Your uninstallParams variable contains a incorrect escape sequence for the log file path. \\ inserts a backslash. Try this code: function UninstallThirdParty(hMSI) STRING szApp, szParams; STRING szTempPath; STRING szLogFilePath; STRING Message; begin GetEnvVar ( "TEMP", szTempPath ); szLogFilePath = szTempPath ^ "test.log"; szApp = WINSYSDIR^"msiexec.exe"; LongPathToQuote (szApp, TRUE); szParams = "/x {10277218-0100-0904-9ABB-000BDB5CF35D} /qn /lv* " + szLogFilePath; if (ISERR_SUCCESS == LaunchApplication(szApp, szParams, "", SW_NORMAL, LAAW_PARAMETERS.nTimeOut, LAAW_OPTION_USE_SHELLEXECUTE|LAAW_OPTION_WAIT|LAAW_OPTION_SHOW_HOURGLASS)) then if (0 == LAAW_PARAMETERS.nLaunchResult) then Message = "Third party completely uninstalled"; MessageBox(Message,SEVERE); else SprintfMsiLog("### LaunchApplication failed: %d", LAAW_PARAMETERS.nLaunchResult ); Message = "Error while third party uninstall"; MessageBox(Message,SEVERE); endif; else SprintfMsiLog("LaunchApplication failed"); endif; end; Info: You should note that you may need elevated privileges to perform the uninstallation. If you trigger the script as a custom action from within MSI based setup you can only run the uninstall during the UI sequence. (SprintfMsiLog does not work from custom actions launched through DoAction events.)
... View more
Feb 23, 2012
12:42 AM
Have you created a catalog file which contains the digital signature for the driver package as well? If not I would recommend to refer to Signing Drivers for Public Release (Windows Vista and Later).
... View more
Dec 14, 2011
02:12 AM
Take a look at Specifying the Run-Time Location for InstallShield Prerequisites at the Release Level.
... View more
Oct 12, 2011
12:43 AM
Just run the setup with verbose logging and search the log file for the term 'DIFXAPP:'.
... View more
Sep 16, 2011
05:42 AM
Take a look at the What’s New in InstallShield 2008 help topic. LaunchAppAndWait has been superseded by LaunchApplication and WaitForApplication. Maybe that will fix your problem.
... View more
Sep 13, 2011
12:40 AM
You should also take a look at Rob Mensching´s Windows Installer Components Introduction.
... View more
Sep 07, 2011
01:09 AM
Try this: Create a new test project and put all driver package related files into a single component. Mark 'This component includes a device driver' at the advanced settings of the component. If you still have trouble post the installation log and some more information about your system and device.
... View more
Sep 07, 2011
01:04 AM
Take a look at my first post of this thread.
... View more
Mar 08, 2011
05:22 AM
SMadden wrote: Moin Holger, thanks for looking into the issue. I openeded a support ticket with MS on this and just wanted to give some feedback on the results. The bottomline is that the test case is invalid since the DeviceManager was used to change the devices state. A repair install is only supposed to fix a malfunctioning driver. It is not supposed to change the devices state. This can only be achieved by a reinstall, not a repair. -Sandra Danke für das Feedback, Sandra 🙂
... View more
Mar 02, 2011
06:23 AM
I presume you use a pure InstallScript based project type, correct? Which InstallShield version do you use? DIFxDriverPackageInstall updates a currently installed older driver by default if the newer driver is a better match.
... View more
Jan 28, 2011
04:54 AM
Christopher Painter posted a nice DTF sample to dynamically generate UI content on his blog a while ago. Maybe that´s an option for you.
... View more
Jan 27, 2011
05:50 AM
Hey Sandra, not sure but it could really be a problem of DIFxApp since DPInst is working fine in the same scenario. I checked the setupapi.dev.log and noticed that SetupCopyOEMInf will be called twice during repair install. The first results with SUCCESS but the second results with FAILURE (0x00000050). Could it be that SetupCopyOEMInf will be called instead of UpdateDriverForPlugAndPlayDevices?!? (just a thought..). -Holger
... View more
Latest posts by Holger_G
Subject | Views | Posted |
---|---|---|
1810 | Jul 11, 2014 02:11 AM | |
1615 | Mar 05, 2012 02:55 AM | |
1476 | Feb 27, 2012 01:20 AM | |
1476 | Feb 24, 2012 02:26 AM | |
809 | Feb 23, 2012 12:42 AM | |
570 | Dec 14, 2011 02:12 AM | |
476 | Oct 12, 2011 12:43 AM | |
668 | Sep 16, 2011 05:42 AM | |
930 | Sep 13, 2011 12:40 AM | |
421 | Sep 07, 2011 01:09 AM |
Activity Feed
- Posted Re: ISDEV Crashing on InstallShield Forum. Jul 11, 2014 02:11 AM
- Posted Re: How do you get the computer name using installscript? on InstallShield Forum. Mar 05, 2012 02:55 AM
- Posted Re: LaunchApplication on InstallShield Forum. Feb 27, 2012 01:20 AM
- Posted Re: LaunchApplication on InstallShield Forum. Feb 24, 2012 02:26 AM
- Posted Re: First Time Device Driver Install Question on InstallShield Forum. Feb 23, 2012 12:42 AM
- Posted Re: Single Self-Extracting Exe for Installation on InstallShield Forum. Dec 14, 2011 02:12 AM
- Posted Re: Problem Creating multiple drivers installation on InstallShield Forum. Oct 12, 2011 12:43 AM
- Posted Re: Issue with LaunchAppAndWait after upgrading IS11.5 project to Installshield 2011 on InstallShield Forum. Sep 16, 2011 05:42 AM
- Posted Re: Key file question on InstallShield Forum. Sep 13, 2011 12:40 AM
- Posted Re: MsiProcessDrivers not scheduled. on InstallShield Forum. Sep 07, 2011 01:09 AM
- Posted Re: how to add both 32 bit and 64 bit driver to one installshield project. on InstallShield Forum. Sep 07, 2011 01:04 AM
- Posted Re: repair install doesn't update the device on InstallShield Forum. Mar 08, 2011 05:22 AM
- Posted Re: Forcing USB Drivers to update. on InstallShield Forum. Mar 02, 2011 06:23 AM
- Posted Re: Populating Combobox with custom action on InstallShield Forum. Jan 28, 2011 04:54 AM
- Posted Re: repair install doesn't update the device on InstallShield Forum. Jan 27, 2011 05:50 AM
- Posted Re: Prevent user from unselecting features on InstallShield Forum. Jan 07, 2011 07:08 AM
- Posted Re: Are MSI Public Properties Persistent? on InstallShield Forum. Jan 06, 2011 06:49 AM
- Posted Re: Passing UI language from parent setup.exe to chained msi package on InstallShield Forum. Nov 19, 2010 06:03 AM
- Posted Re: Uninstall Reg Keys on InstallShield Forum. Nov 04, 2010 03:54 AM
- Posted Re: MsiProcessDrivers returned error code 1157 on InstallShield Forum. Nov 02, 2010 09:05 AM