IIS 8 support in installer
This commit is contained in:
parent
74d82950d3
commit
0200086e6f
13 changed files with 29 additions and 32 deletions
|
@ -114,7 +114,7 @@ namespace WebsitePanel.Setup
|
|||
{
|
||||
get
|
||||
{
|
||||
if (IISVersion.Major == 7)
|
||||
if (IISVersion.Major >= 7)
|
||||
{
|
||||
return new string[] { "AD:Domain Admins", "SID:" + SystemSID.ADMINISTRATORS, "IIS_IUSRS" };
|
||||
}
|
||||
|
@ -146,7 +146,7 @@ namespace WebsitePanel.Setup
|
|||
{
|
||||
get
|
||||
{
|
||||
if (IISVersion.Major == 7)
|
||||
if (IISVersion.Major >= 7)
|
||||
{
|
||||
return new string[] { "IIS_IUSRS" };
|
||||
}
|
||||
|
@ -178,7 +178,7 @@ namespace WebsitePanel.Setup
|
|||
{
|
||||
get
|
||||
{
|
||||
if (IISVersion.Major == 7)
|
||||
if (IISVersion.Major >= 7)
|
||||
{
|
||||
return new string[] { "IIS_IUSRS" };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue