Removed old sharepoint service item

This commit is contained in:
vfedosevich 2015-03-23 03:02:01 -07:00
parent dc7bc79cae
commit 1b1748cd86
21 changed files with 1154 additions and 56 deletions

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WebsitePanel.EnterpriseServer.Base.RDS
{
public class RdsServerSetting
{
public string PropertyName { get; set; }
public string PropertyValue { get; set; }
public bool ApplyUsers { get; set; }
public bool ApplyAdministrators { get; set; }
}
}

View file

@ -0,0 +1,43 @@
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace WebsitePanel.EnterpriseServer.Base.RDS
{
public class RdsServerSettings
{
private List<RdsServerSetting> settings = null;
public const string LOCK_SCREEN_TIMEOUT = "LockScreenTimeout";
public const string REMOVE_RUN_COMMAND = "RemoveRunCommand";
public const string REMOVE_POWERSHELL_COMMAND = "RemovePowershellCommand";
public const string HIDE_C_DRIVE = "HideCDrive";
public const string REMOVE_SHUTDOWN_RESTART = "RemoveShutdownRestart";
public const string DISABLE_TASK_MANAGER = "DisableTaskManager";
public const string CHANGE_DESKTOP_DISABLED = "ChangingDesktopDisabled";
public const string SCREEN_SAVER_DISABLED = "ScreenSaverDisabled";
public const string DRIVE_SPACE_THRESHOLD = "DriveSpaceThreshold";
public string SettingsName { get; set; }
public int ServerId { get; set; }
public List<RdsServerSetting> Settings
{
get
{
if (settings == null)
{
settings = new List<RdsServerSetting>();
}
return settings;
}
set
{
settings = value;
}
}
}
}

View file

@ -64,6 +64,7 @@ namespace WebsitePanel.EnterpriseServer
public const string DEFAULT_MAILBOXPLANS = "DefaultMailboxPlans";
public const string DEFAULT_LYNCUSERPLANS = "DefaultLyncUserPlans";
public const string RDS_SETUP_LETTER = "RDSSetupLetter";
public const string RDS_POLICY = "RdsPolicy";
public int UserId;
public string SettingsName;

View file

@ -134,6 +134,8 @@
<Compile Include="Packages\PackageSettings.cs" />
<Compile Include="Packages\PackageStatus.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RDS\RdsServerSetting.cs" />
<Compile Include="RDS\RdsServerSettings.cs" />
<Compile Include="Reports\OverusageReport.custom.cs">
<SubType>Component</SubType>
</Compile>