installshield-2009

How to pack a installation (framework + application) in one executable?

最后都变了- 提交于 2019-12-12 09:51:12
问题 I'd like to create a file 'setup.exe' that contains one application that I developed in C#, and the setup of .Net framework 4.0. The idea is: When I execute the 'setup.exe' this one will check if have the .net framework 4.0 installed on the computer, and if don't install it! Using InstallShield 2009. Anyone knows how to do this? Let me know if don't understand anything. Thanks. 回答1: Regarding setup you can use the built-in mechanism which come with Visual Studio, they allow for example to

Can one edit an InstallShield setup.exe's manifest file?

狂风中的少年 提交于 2019-12-11 13:07:39
问题 I'm running into the Windows Vista/7 Program Compatibility Assistant problem described here: "This program might not have installed correctly" message in Windows 7 RC The solution (backed-up by similar questions elsewhere, and MSDN), is apparently to add a 'compatibility' section to setup.exe's manifest. InstallShield 10 SP1 does this automatically, but unfortunately I only have InstallShield 2009. How would I go about editing the manifest? Is there a way to do this programmatically, so I can

How to force restart after uninstall for a Basic MSI Project in InstallShield 2009 Premier

孤街醉人 提交于 2019-11-30 08:39:12
问题 InstallShield 2009 Premier, Basic MSI Project : After uninstall completes, I want to force restart the computer. How? Googling found, i have to set ' REBOOTPROMPT ' TO 'S' or 'R' and the " Reboot " property. How to set these properties and with what values? 回答1: Here is the Solution You have to let InstallShield know that you want a reboot . How? : From 'Installation Designer' tab -> 'Behavior and Logic' -> 'Custom Actions and Sequences' -> 'Sequences' -> 'Installation' -> 'Execute' -> '

How to force restart after uninstall for a Basic MSI Project in InstallShield 2009 Premier

故事扮演 提交于 2019-11-29 07:21:59
InstallShield 2009 Premier, Basic MSI Project : After uninstall completes, I want to force restart the computer. How? Googling found, i have to set ' REBOOTPROMPT ' TO 'S' or 'R' and the " Reboot " property. How to set these properties and with what values? Here is the Solution You have to let InstallShield know that you want a reboot . How? : From 'Installation Designer' tab -> 'Behavior and Logic' -> 'Custom Actions and Sequences' -> 'Sequences' -> 'Installation' -> 'Execute' -> ' ScheduleReboot ' set the value of 'Conditions' to "NOT REMOVE" (with out the inverted commas) if you want the

How can I make the installer Run as admin

本小妞迷上赌 提交于 2019-11-27 20:35:00
My application has an installer built in installshield. But for proper working of installation process in vista Win 7 etc. the installer should be run as administrator. (Even though the user has admin previlege he should select the 'Run as Administrator' option in the menu on rightclicking the installer exe) How can I make my installer to prompt that it should be always run as administrator. Thanks in advance... You need to set the execution level to "Require Administrator" from the project options. This option will be stored in the manifest file included in your setup package and it will make

How can I make the installer Run as admin

自古美人都是妖i 提交于 2019-11-26 22:57:26
问题 My application has an installer built in installshield. But for proper working of installation process in vista Win 7 etc. the installer should be run as administrator. (Even though the user has admin previlege he should select the 'Run as Administrator' option in the menu on rightclicking the installer exe) How can I make my installer to prompt that it should be always run as administrator. Thanks in advance... 回答1: You need to set the execution level to "Require Administrator" from the