Installer: old to new update #3
This commit is contained in:
parent
51645d124c
commit
7fcbcb18d5
8 changed files with 221 additions and 295 deletions
|
@ -43,6 +43,13 @@ namespace WebsitePanel.WIXInstaller.Common
|
|||
Result |= CheckAspNetRegValue(LMKey);
|
||||
return Result;
|
||||
}
|
||||
public static bool AppPoolExists(string Pool)
|
||||
{
|
||||
if (GetWebServerVersion().Major > MINIMUM_WEBSERVER_MAJOR_VERSION)
|
||||
return WebUtils.IIS7ApplicationPoolExists(Pool);
|
||||
else
|
||||
return WebUtils.ApplicationPoolExists(Pool);
|
||||
}
|
||||
public static bool CheckAspNetRegValue(RegistryKey BaseKey)
|
||||
{
|
||||
var WebComponentsKey = "SOFTWARE\\Microsoft\\InetStp\\Components";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue