Nov 20, 2009
06:16 AM
What is your project type?
... View more
Nov 19, 2009
04:53 AM
Use 64-bit custom actions. Go through the IS help file for the topics on 64-bit custom actions.
... View more
Nov 19, 2009
04:36 AM
It means some function is not getting called by any custom action and that particular action is not executed.
... View more
Nov 18, 2009
10:48 PM
The msiexec elevates itself during the uninstallation, but i think the custom action tries to change the registry before the elevation of msiexec.exe. So you need to change the sequence of your custom action. or a common work around for this issue is to right click the shortcut and select run as administrator.
... View more
Nov 18, 2009
12:30 AM
Actually i have checked that in the silent mode with anwer file the setup is not able to detect the selected features. It always consider that all the features are selected, and all the code will execute. So, if some dialogs or aprt of code is related to a specific feature, that code will execute during the silent mode even if the specific feature is not selected. May be thats an issue of IS. So better you can debug your setup using ISDbg.exe during sielnt installation using answer file and check where its terminating. This happens if any custom dialog is added in the setup. May be This link will help you. Let me know if you feel any more issue.
... View more
Nov 16, 2009
06:00 AM
Try the following to uninstall your product: LaunchAppAndWait("Msiexec.exe", "/x { }", LAAW_OPTION_WAIT); Hope this will help.
... View more
Nov 16, 2009
03:39 AM
I am attaching you a piece of code which is working for me. This piece of code gets executed during uninstall of the product. Actually installscript does not have the FOREACH function, and only due to that i need to use the C++ dll to remove the websites/Virtual directories from the IIS which are linked to a particular physical folder only. You can call these functions in your custom actions also. Choose the option "Run the installscript code" in the custom action wizard, and then select the function name. The function name will apppear here only if the function prototype is defined with the export keyword. export prototype Foo(); Hope this will help you.
... View more
Nov 16, 2009
01:31 AM
Copy your VC++ dll to SupportFIles/Billboards ->SupportFiles ->Language Independent. It will copy your file to the tempfolder during installation. Then you can use this dll to diiferent functions of installscript. But first you need to load this dll before using it. Also you need to unload it after using. e.g. function load() STRING dllPath; begin dllPath = SUPPORTDIR ^ "Test.dll"; if ( 0 != UseDLL(dllPath) ) then MessageBox("Failed to load dependency file", SEVERE); abort; endif; end; Let me know if need any more help.
... View more
Nov 15, 2009
11:38 PM
you can run using the enbuilt function LaunchAppAndWait().
... View more
Nov 12, 2009
10:36 PM
May be your setup is copying some files to user specific location or creating any registry key in current user location, which is used by the application during run time.
... View more
Nov 12, 2009
12:37 AM
you can use the LaunchAppAndWait() function of installscript. You can create DB with the help of SQL scripts menu of IS. Alternatively you can create an application in C++/C# which will create a DB and user in SQL, and launch the application silently by using the above function.
... View more
Nov 12, 2009
12:34 AM
I have installed both IS 2008 and 2009 on my machine, later i uninstalled IS 2008, and it did not affected IS 2009 functionality.
... View more
Nov 10, 2009
10:47 PM
You can find the acresso KB article Here which is related to user creation using install script.
... View more
Nov 09, 2009
10:32 PM
Write the code for uninstallation of your old version in OnBegin() event. After uninstallation, OnFirstUIBefore() gets executed and the new setup will automatically launch. This worked for me.
... View more
Nov 09, 2009
06:40 AM
What is your project type?
... View more
Latest posts by ChandanOmkar
Subject | Views | Posted |
---|---|---|
756 | Dec 03, 2010 01:58 AM | |
718 | Jan 19, 2010 06:51 AM | |
806 | Jan 11, 2010 11:27 PM | |
1015 | Jan 06, 2010 06:57 AM | |
1015 | Jan 06, 2010 06:14 AM | |
675 | Dec 30, 2009 06:07 AM | |
504 | Dec 20, 2009 11:01 PM | |
1922 | Dec 07, 2009 10:31 PM | |
837 | Dec 01, 2009 05:27 AM | |
837 | Nov 30, 2009 02:42 AM |
Activity Feed
- Posted Re: Silent install not working for more than one feature on InstallShield Forum. Dec 03, 2010 01:58 AM
- Posted Re: Uninstalling Previous Version of Software? on InstallShield Forum. Jan 19, 2010 06:51 AM
- Posted Re: Deploying a website using Installscript project on InstallShield Forum. Jan 11, 2010 11:27 PM
- Posted Re: How to merge two buttons "Change" and "Remove" on InstallShield Forum. Jan 06, 2010 06:57 AM
- Posted Re: How to merge two buttons "Change" and "Remove" on InstallShield Forum. Jan 06, 2010 06:14 AM
- Posted Re: Where to put some files... on InstallShield Forum. Dec 30, 2009 06:07 AM
- Posted Re: run an event of another script on InstallShield Forum. Dec 20, 2009 11:01 PM
- Posted Re: Issue using Self-registration property of Installshield 12 or higher on windows vista on InstallShield Forum. Dec 07, 2009 10:31 PM
- Posted Re: How to run an executable from InstallScript installer? on InstallShield Forum. Dec 01, 2009 05:27 AM
- Posted Re: auto unisntall and install on InstallShield Forum. Nov 30, 2009 02:42 AM
- Posted Re: auto unisntall and install on InstallShield Forum. Nov 30, 2009 01:12 AM
- Posted Re: prevent removal of certain features during uninstall on InstallShield Forum. Nov 26, 2009 03:32 AM
- Posted Re: SelfRegistering a DLL not working on InstallShield Forum. Nov 25, 2009 10:44 PM
- Posted Re: SelfRegistering a DLL not working on InstallShield Forum. Nov 23, 2009 06:33 AM
- Posted Re: Choosing proyect type on InstallShield Forum. Nov 21, 2009 12:02 AM
- Posted Re: prevent removal of certain features during uninstall on InstallShield Forum. Nov 20, 2009 06:16 AM
- Posted Re: Fatal Error:0 on InstallShield Forum. Nov 19, 2009 04:53 AM
- Posted Re: Fatal Error:0 on InstallShield Forum. Nov 19, 2009 04:36 AM
- Posted Re: how to set Admin privildege for Msiexec.exe on InstallShield Forum. Nov 18, 2009 10:48 PM
- Posted Re: Error in silent mode: ResultCode=-3 on InstallShield Forum. Nov 18, 2009 12:30 AM