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
- :
- Installing IIS
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 14, 2007
09:16 PM
Can we install IIS using Install Shield setup
I am using IIS in my application and while installing that, I wan't to install automatically IIS also in the client PC. Can we do that with Install Shield....?
As I am new to Install shield I don't know....
Any help on this would be appreciable..
Thank you,
Narayan Ayyagari.
narayana@rcg.tv
As I am new to Install shield I don't know....
Any help on this would be appreciable..
Thank you,
Narayan Ayyagari.
narayana@rcg.tv
(11) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 17, 2007
10:05 AM
IIS is generally part of windows, and thus cannot be installed by an external setup.exe. One common option is to have your install check for the presence of IIS and refuse to install if it is not there.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 17, 2007
02:25 PM
I know other customers have launched sysocmgr.exe as part of their setup. You might want to search these forums for examples.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 18, 2007
12:30 AM
thanks for reply.....
can u plz tell me in detail....
As with u r worsd I can understand that we cannot install IIS from our setup.
But, u said we can detect the presence of IIS in the client pc.
I wan't to know how we can do that....can u plz give any example code to do so....
Narayana.
can u plz tell me in detail....
As with u r worsd I can understand that we cannot install IIS from our setup.
But, u said we can detect the presence of IIS in the client pc.
I wan't to know how we can do that....can u plz give any example code to do so....
Narayana.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 18, 2007
12:34 AM
Hello Mr. Davidh,
thanks 4 u r reply....by the way may I know what is sysocmgr.exe and in what way it is related with IIS in install shield....
sorry if I am asking anything wrong as I am new to Install Shield.
Thank you,
Narayana.
thanks 4 u r reply....by the way may I know what is sysocmgr.exe and in what way it is related with IIS in install shield....
sorry if I am asking anything wrong as I am new to Install Shield.
Thank you,
Narayana.
Not applicable
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 18, 2007
08:44 AM
If you simply search for sysocmgr.exe, you will find many results that describe how to do this.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 13, 2011
04:13 AM
Hi Is this still holds true or not. I am investigating about installing IIS 7 using Installshield 2010.
Please help us to know more about it.
Please help us to know more about it.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 13, 2011
11:06 AM
Yes you can still search for sysocmgr.exe
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 21, 2011
07:37 AM
Hi Narayana
You can install IIS via installshield.
For windows 7, use:
DISM.exe /Online /Enable-Feature /FeatureName:IIS-WebServer /FeatureName:IIS-WebServerRole /FeatureName:IIS-IIS6ManagementCompatibility /Featurename:<>...............
For Vista, use pkgmgr with an unattended .xml file:
Start /w PkgMgr.exe /n:" + '":\Unattend.xml"
Read more: http://learn.iis.net/page.aspx/133/using-unattended-setup-to-install-iis-70/
You can install IIS via installshield.
For windows 7, use:
DISM.exe /Online /Enable-Feature /FeatureName:IIS-WebServer /FeatureName:IIS-WebServerRole /FeatureName:IIS-IIS6ManagementCompatibility /Featurename:<>...............
For Vista, use pkgmgr with an unattended .xml file:
Start /w PkgMgr.exe /n:" + '"
Read more: http://learn.iis.net/page.aspx/133/using-unattended-setup-to-install-iis-70/
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 20, 2011
11:25 AM
I've always been against installing windows components for various reasons but now with the way Win 7 / Server 2008 can more easily be scripted to do the job I wonder if my opinion should change.
Anyone have thoughts on this?
Anyone have thoughts on this?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Apr 18, 2013
10:31 PM
Install_guy wrote:
Hi Narayana
You can install IIS via installshield.
For windows 7, use:
DISM.exe /Online /Enable-Feature /FeatureName:IIS-WebServer /FeatureName:IIS-WebServerRole /FeatureName:IIS-IIS6ManagementCompatibility /Featurename:<>...............
For Vista, use pkgmgr with an unattended .xml file:
Start /w PkgMgr.exe /n:" + '":\Unattend.xml"
Read more: http://learn.iis.net/page.aspx/133/using-unattended-setup-to-install-iis-70/
Hi,
how to use this commanDISM.exe /Online /Enable-Feature /FeatureName:IIS-WebServer /FeatureName:IIS-WebServerRole
in installscipt custom action in installshield.
I am trying but not able to do.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 23, 2014
05:03 AM
Jagdishk wrote:
Hi,
how to use this commanDISM.exe /Online /Enable-Feature /FeatureName:IIS-WebServer /FeatureName:IIS-WebServerRole
in installscipt custom action in installshield.
I am trying but not able to do.
Disable File system redirection:
if (GetEnvVar ("WINDIR", szTemp) >= 0) then
Disable(WOW64FSREDIRECTION);
SdShowMsg("Configuring IIS Feature ...", TRUE); Delay(1);
szCommand = szTemp^"System32\\DISM.exe";
LaunchAppAndWait(szCommand, "/Online /Enable-Feature /FeatureName:IIS-WebServer /FeatureName:IIS-WebServerRole /FeatureName:IIS-IIS6ManagementCompatibility /norestart", WAIT|LAAW_OPTION_HIDDEN|LAAW_OPTION_SHOW_HOURGLASS);
SdShowMsg("", FALSE);
Enable(WOW64FSREDIRECTION);
endif;