The Community is now in read-only mode to prepare for the launch of the new Flexera Community. During this time, you will be unable to register, log in, or access customer resources. Click
here
for more information.
I have converted by install from IS12 to IS2009 and now my background images are not displaying.The code is as follows: Enable( BACKGROUND ); switch (nvDy) case 600: szBmpName = SUPPORTDIR ^ @BACKGROUND_IMAGE + "-800x600.bmp"; case 768: ...
I am reviewing IS2009 and have converted my main installation project from IS12 to IS2009.I have noticed that the project is alot slowing building and when I run the actual installation it is also slower running.My project is a pure installscript pro...
Hi,I have the following code used in InstallShield 12 and it works ok:if ( IISRTGetIISVersion( IIS_GET_VERSION_MAJOR ) < IIS_VERSION_MAJOR_MIN_SUPPORT ) then szMsg = "IIS is not Installed or the Version is not correct, Version 4.0 is required. ...
I am attempting to migrate my project form InstallShield 12 to InstallShield 2008, the project type is InstallScript.I have downloaded and installed the "installshieldinstallscriptobjects.exe" object from the Macrovision web site.When I try to build ...
I'm using IS12 and the check happens as soon as the installer starts.My suggestion would be that you call OnIISCheckRequirements() from the OnBegin function.
I encountered the same issue. I placed my return value into a list first.Here is my code I used to fix the issue:// Remove new line character from end of szDelimiterSet = "\n"; StrGetTokens ( lstGuids, sValue, szDelimiterSet); switch (szDelimi...
I had the same issue regarding the end slash.I use an installscript project and used the StrRemoveLastSlash command to remove the last slash and then executed the cacls statement. This solved my problem:Here's my code sample:StrRemoveLastSlash(szDir...