This website uses cookies. By clicking Accept, 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.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: Im not able to Install IIS Through InstallShield
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎May 23, 2017
02:10 AM
Im not able to Install IIS Through InstallShield
Im using Installshield 2015 im not able to install default IIS based on Operating System. Please help me regarding IIS Installation in Installshield.
- Tags:
- iis installation
(2) Replies
‎May 23, 2017
09:16 AM
Microsoft changes how all of that works fairly regularly so the recommendation is to never attempt to install any Windows Components automatically - Simply detect what is missing, warn the user and exit. In the warning you can give a hint as to how to proceed.
Otherwise, any hotfix or service pack that MSFT releases could easily break your installer and you would only have yourself to blame.
I like to make robust installers that do not rely on anything that is not recommended.
Chad
Otherwise, any hotfix or service pack that MSFT releases could easily break your installer and you would only have yourself to blame.
I like to make robust installers that do not rely on anything that is not recommended.
Chad
‎Jun 09, 2017
03:35 PM
Microsoft changes how all of that works fairly regularly so the recommendation is to never attempt
This /\
I was told once that we absolutely had to do this, because we can't trust our users to know how, so please take a look at it, would you?
What I ended up with was a prerequisite batch file of surprising complexity, because across a handful of supported windows versions you've got:
- Different command line tools for installing windows features
- Even across two versions with the same command line tools, the windows feature names change
- Sometimes they change what subfeature a feature belongs to
- Sometimes they change the dependencies of the feature
- The solution Microsoft created for this (powershell DSC) isn't necessarily supported across all platforms
- And if it was, you'd have to install Powershell to start with
- Which is a windows feature in itself, so return to step 1 and start over with the task of installing a windows feature.