Foundation Sharepoint Server fixes
This commit is contained in:
parent
73b48c75b4
commit
83872d2437
22 changed files with 1141 additions and 235 deletions
|
@ -10,16 +10,25 @@ 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 const string LOCK_SCREEN_TIMEOUT_VALUE = "LockScreenTimeoutValue";
|
||||
public const string LOCK_SCREEN_TIMEOUT_ADMINISTRATORS = "LockScreenTimeoutAdministrators";
|
||||
public const string LOCK_SCREEN_TIMEOUT_USERS = "LockScreenTimeoutUsers";
|
||||
public const string REMOVE_RUN_COMMAND_ADMINISTRATORS = "RemoveRunCommandAdministrators";
|
||||
public const string REMOVE_RUN_COMMAND_USERS = "RemoveRunCommandUsers";
|
||||
public const string REMOVE_POWERSHELL_COMMAND_ADMINISTRATORS = "RemovePowershellCommandAdministrators";
|
||||
public const string REMOVE_POWERSHELL_COMMAND_USERS = "RemovePowershellCommandUsers";
|
||||
public const string HIDE_C_DRIVE_ADMINISTRATORS = "HideCDriveAdministrators";
|
||||
public const string HIDE_C_DRIVE_USERS = "HideCDriveUsers";
|
||||
public const string REMOVE_SHUTDOWN_RESTART_ADMINISTRATORS = "RemoveShutdownRestartAdministrators";
|
||||
public const string REMOVE_SHUTDOWN_RESTART_USERS = "RemoveShutdownRestartUsers";
|
||||
public const string DISABLE_TASK_MANAGER_ADMINISTRATORS = "DisableTaskManagerAdministrators";
|
||||
public const string DISABLE_TASK_MANAGER_USERS = "DisableTaskManagerUsers";
|
||||
public const string CHANGE_DESKTOP_DISABLED_ADMINISTRATORS = "ChangingDesktopDisabledAdministrators";
|
||||
public const string CHANGE_DESKTOP_DISABLED_USERS = "ChangingDesktopDisabledUsers";
|
||||
public const string SCREEN_SAVER_DISABLED_ADMINISTRATORS = "ScreenSaverDisabledAdministrators";
|
||||
public const string SCREEN_SAVER_DISABLED_USERS = "ScreenSaverDisabledUsers";
|
||||
public const string DRIVE_SPACE_THRESHOLD_VALUE = "DriveSpaceThresholdValue";
|
||||
|
||||
public string SettingsName { get; set; }
|
||||
public int ServerId { get; set; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue