This website uses cookies. By clicking OK, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
stefanm1
Flexera beginner
Jul 07, 2014
03:52 AM
I have a license for Installshield 2013. Installed in June 2013. Working with it without problems. Operating System: Windows 8. The problem is the message from the "about dialog": Version 20(Borrowed license will expire in 323 days). What is the meaning of "Borrowed license"? I did not change the login name or the name from my PC. The About dialog from older versions are showing the Serial Number. Does anyone have a similar message?
... View more
Labels
Jun 30, 2014
07:51 AM
It is correct Please check the online help: Page: CustomAction Table Type A field of flag bits specifying the basic type of custom action and options. See Summary List of All Custom Action Types for a list of the basic types. See Custom Action Return Processing Options, Custom Action Execution Scheduling Options, Custom Action Hidden Target Option, and Custom Action In-Script Execution Options. Page: Custom Action Types Custom Action Type 51 Property set with formatted text. 51 Property name or key to the Property table. This property is set by the formatted string in the Target field. A formatted text string. Page: Custom Action Return Processing Options (none) 0x00000000 +0 A synchronous execution that fails if the exit code is not 0 (zero). If the flag msidbCustomActionTypeContinue is not set, then the custom action must return one of the return values that is described in Custom Action Return Values. msidbCustomActionTypeContinue 0x00000040 +64 A synchronous execution that ignores exit code and continues. msidbCustomActionTypeAsync 0x00000080 +128 An asynchronous execution that waits for exit code at the end of the sequence.This option cannot be used with Concurrent Installations, Rollback Custom Actions, or Script Custom Actions. Synchronous (check exit code) +0 -> 51 + 0 = 51 Synchronous (Ignore exit code) +64 -> 51 + 64 = 115 Asynchronous (waits for exit code) +128 -> 51 + 128 = 179
... View more
Dec 19, 2013
08:30 AM
Im Using a custum action like function Removefolder(hMSI) STRING szPath; NUMBER supportDirPathBuffer, nReturn, nvResult; begin supportDirPathBuffer = MAX_PATH; MsiGetProperty(hMSI, "CustomActionData", szPath, supportDirPathBuffer); nReturn = DeleteDir (szPath, ALLCONTENTS); if (nReturn = 0) then SprintfMsiLog ( "deleted folder: ",szPath); else SprintfMsiLog ( "Unable to delete folder: %s ; error %d",szPath, nReturn ); endif; end;
... View more
Dec 18, 2013
08:55 AM
Did you set the "Build UTF-8 Database" to yes?
... View more
Oct 11, 2013
12:09 AM
Please check in the Onlinhelp "Generating Package Log Files While Running an Advanced UI or Suite/Advanced UI Installation" and "Logging an Advanced UI or Suite/Advanced UI Installation to Troubleshoot Issues" It is possible to set a directory and a file name: -> Suite.exe /log:"C:\PathToLogFiles" /debuglog"C:\PathToLog\setupexe.log" "Note that this works if the Setup.exe file is in a read-only Location"
... View more
Oct 01, 2013
07:40 AM
Hi, if you use Basic MSI There should be an "On Uninstall" Property with two Options: remove and leave. Try the Option leave.
... View more
Jul 10, 2013
04:39 AM
we do not use this versions so I didn't check it. Take a look at: http://social.technet.microsoft.com/Forums/de-DE/efe946bd-25d0-4a30-9f8d-04ef2624d040/office-2013-win8-check-registry-if-installed Maybe there are some more informations about your problem
... View more
Jul 09, 2013
03:34 AM
Maybe you searched in the wrong registry path, try [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\15.0\Common\InstallRoot] "InstallCount"=dword:00000001 "Path"="C:\\Program Files (x86)\\Microsoft Office\\Office15\\"
... View more
Jul 09, 2013
12:24 AM
You can use the predefined search for Office 2010, then modify the the registry Key from "SOFTWARE\Microsoft\Office\14.0\Common\InstallRoot" to "SOFTWARE\Microsoft\Office\15.0\Common\InstallRoot". You can also Change the property to store in from MSOFFICE2010 to MSOFFICE2013 That's all.
... View more
Jun 10, 2013
06:22 AM
http://kb.flexerasoftware.com/selfservice/microsites/microsite.do?msid=MS_INSTALLATION_1_1
... View more
Apr 30, 2013
12:35 AM
Take a look at http://blogs.technet.com/b/richard_macdonald/archive/2007/04/02/how-to-interpret-windows-installer-logs.aspx
... View more
Oct 01, 2012
03:47 AM
Take a look at http://community.flexerasoftware.com/showthread.php?t=202846
... View more
Sep 19, 2012
04:20 AM
Open the Prerequisite "Microsoft .NET Framework 4.0 Full (Web Download)" with the prerequiste editor and switch to "Dependencies". All files listet here are also included in setup file. Windows Installer 3.1 (x86).prq Windows Imaging Component (x86).prq Windows Installer 3.1 for Windows Server 2003 SP1 (x86).prq Windows Imaging Component (x64).prq Windows Installer 3.1 for Windows Server 2003 SP1 (IA64).prq Windows Installer 3.1 for Windows Server 2003 SP1 (x64).prq Windows Installer 3.1 for Windows XP (x64).prq" Delete all entries will help to minimize the setup.
... View more
Sep 17, 2012
08:38 AM
Did you check if there is a pending reboot? Maybe this causes this behavior.
... View more
Latest posts by stefanm1
Subject | Views | Posted |
---|---|---|
367 | Jul 08, 2014 12:03 AM | |
4878 | Jul 07, 2014 03:52 AM | |
1545 | Jun 30, 2014 07:51 AM | |
1411 | Dec 19, 2013 08:30 AM | |
519 | Dec 18, 2013 08:55 AM | |
469 | Oct 11, 2013 12:09 AM | |
314 | Oct 01, 2013 07:40 AM | |
556 | Jul 10, 2013 04:39 AM | |
556 | Jul 09, 2013 03:34 AM | |
556 | Jul 09, 2013 12:24 AM |
Activity Feed
- Posted Re: Borrowed license on InstallShield Forum. Jul 08, 2014 12:03 AM
- Posted Borrowed license on InstallShield Forum. Jul 07, 2014 03:52 AM
- Posted Re: Bug on InstallShield Forum. Jun 30, 2014 07:51 AM
- Posted Re: Remove folder in AppDataFolder during Uninstall on InstallShield Forum. Dec 19, 2013 08:30 AM
- Posted Re: Filenames with Japanese characters are corrupted during build or install (basic MSI) on InstallShield Forum. Dec 18, 2013 08:55 AM
- Posted Re: How to debug a Suite Installation (Problem with Windows Feature Activation) on InstallShield Forum. Oct 11, 2013 12:09 AM
- Posted Re: InstallShield deleting "PATH" system variable during Unistall. on InstallShield Forum. Oct 01, 2013 07:40 AM
- Posted Re: Found Out If Office 2013 Installed on InstallShield Forum. Jul 10, 2013 04:39 AM
- Posted Re: Found Out If Office 2013 Installed on InstallShield Forum. Jul 09, 2013 03:34 AM
- Posted Re: Found Out If Office 2013 Installed on InstallShield Forum. Jul 09, 2013 12:24 AM
- Posted Re: Custom dialog window on InstallShield Forum. Jun 10, 2013 06:22 AM
- Posted Re: Debugging Log file on InstallShield Forum. Apr 30, 2013 12:35 AM
- Posted Re: .NET 3.5 on W8 on InstallShield Forum. Oct 01, 2012 03:47 AM
- Posted Re: Adding .NET 4.0 Web Download increases Setup.exe by 22MB! on InstallShield Forum. Sep 19, 2012 04:20 AM
- Posted Re: MSSQL Server 2008 R2 Express Service Pack 2 on InstallShield Forum. Sep 17, 2012 08:38 AM
- Posted resolved issue IOA-000069406 on InstallShield Forum. Sep 17, 2012 07:50 AM
- Posted Re: ??? while writing chinese characters to config file. on InstallShield Forum. Feb 09, 2012 06:45 AM
- Posted Re: Windows Server 2008 SP2 64Bit uninstall failing because ISBEW64.exe missing on InstallShield Forum. Jan 23, 2012 07:40 AM
Contact Me
Online Status |
Offline
|
Date Last Visited |
Apr 08, 2019
12:01 AM
|