IIS 8 support in installer
This commit is contained in:
parent
74d82950d3
commit
0200086e6f
13 changed files with 29 additions and 32 deletions
|
@ -135,7 +135,7 @@ namespace WebsitePanel.Installer.Common
|
|||
{
|
||||
get
|
||||
{
|
||||
if (IISVersion.Major == 7)
|
||||
if (IISVersion.Major >= 7)
|
||||
{
|
||||
return new string[] { "IIS_IUSRS" };
|
||||
}
|
||||
|
@ -167,7 +167,7 @@ namespace WebsitePanel.Installer.Common
|
|||
{
|
||||
get
|
||||
{
|
||||
if (IISVersion.Major == 7)
|
||||
if (IISVersion.Major >= 7)
|
||||
{
|
||||
return new string[] { "IIS_IUSRS" };
|
||||
}
|
||||
|
|
|
@ -284,7 +284,7 @@ namespace WebsitePanel.Installer.Common
|
|||
return;
|
||||
|
||||
//ignore win64 check on IIS7
|
||||
if (Global.IISVersion.Major == 7)
|
||||
if (Global.IISVersion.Major >= 7)
|
||||
return;
|
||||
|
||||
if (!IIS32Enabled())
|
||||
|
|
|
@ -7,8 +7,6 @@ namespace WebsitePanel.Installer.Core
|
|||
{
|
||||
class ServiceComponentNotFoundException : Exception
|
||||
{
|
||||
private string p;
|
||||
|
||||
public ServiceComponentNotFoundException(string p)
|
||||
: base(p)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue