2019-06-20 10:55:24 +02:00
|
|
|
|
/*
|
2024-03-05 18:37:42 +01:00
|
|
|
|
* Copyright (c) 2024 ETH Zürich, IT Services
|
2019-06-20 10:55:24 +02:00
|
|
|
|
*
|
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-09-06 09:39:28 +02:00
|
|
|
|
namespace SafeExamBrowser.Settings.Service
|
2019-06-20 10:55:24 +02:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2019-09-10 11:53:30 +02:00
|
|
|
|
/// Defines all settings for the service application component.
|
2019-06-20 10:55:24 +02:00
|
|
|
|
/// </summary>
|
|
|
|
|
public class ServiceSettings
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
/// Determines whether desktop notifications of Google Chrome should be deactivated.
|
2019-06-20 10:55:24 +02:00
|
|
|
|
/// </summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
public bool DisableChromeNotifications { get; set; }
|
2019-06-20 10:55:24 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
/// Determines whether the user can access the ease of access options on the security screen.
|
2019-06-20 10:55:24 +02:00
|
|
|
|
/// </summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
public bool DisableEaseOfAccessOptions { get; set; }
|
2019-06-20 10:55:24 +02:00
|
|
|
|
|
2022-07-26 15:10:48 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether the user can access the find printer option in the print dialog of Windows.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool DisableFindPrinter { get; set; }
|
|
|
|
|
|
2019-06-20 10:55:24 +02:00
|
|
|
|
/// <summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
/// Determines whether the user can access the network options on the security screen.
|
2019-06-20 10:55:24 +02:00
|
|
|
|
/// </summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
public bool DisableNetworkOptions { get; set; }
|
2019-06-20 10:55:24 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
/// Determines whether the user can change the password for a user account via the security screen.
|
2019-06-20 10:55:24 +02:00
|
|
|
|
/// </summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
public bool DisablePasswordChange { get; set; }
|
2019-06-20 10:55:24 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
/// Determines whether the user can access the power options on the security screen.
|
2019-06-20 10:55:24 +02:00
|
|
|
|
/// </summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
public bool DisablePowerOptions { get; set; }
|
2019-06-20 10:55:24 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
/// Determines whether remote desktop connections should be deactivated.
|
2019-06-20 10:55:24 +02:00
|
|
|
|
/// </summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
public bool DisableRemoteConnections { get; set; }
|
2019-06-20 10:55:24 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
/// Determines whether the user can sign out of their account via the security screen.
|
2019-06-20 10:55:24 +02:00
|
|
|
|
/// </summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
public bool DisableSignout { get; set; }
|
2019-06-20 10:55:24 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
/// Determines whether the user can access the task manager of Windows.
|
2019-06-20 10:55:24 +02:00
|
|
|
|
/// </summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
public bool DisableTaskManager { get; set; }
|
2019-06-20 10:55:24 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
/// Determines whether the user can lock the computer via the security screen.
|
2019-06-20 10:55:24 +02:00
|
|
|
|
/// </summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
public bool DisableUserLock { get; set; }
|
2019-06-20 10:55:24 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
/// Determines whether the user can switch to another user account via the security screen.
|
2019-06-20 10:55:24 +02:00
|
|
|
|
/// </summary>
|
2019-06-21 15:05:31 +02:00
|
|
|
|
public bool DisableUserSwitch { get; set; }
|
2019-06-20 10:55:24 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether the user interface overlay for VMware clients should be deactivated.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool DisableVmwareOverlay { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether Windows Update should be deactivated.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool DisableWindowsUpdate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-23 13:53:10 +02:00
|
|
|
|
/// Determines whether the service will be completely ignored, i.e. no actions will be performed by the service component.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IgnoreService { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The active policy for the service component. Has no effect if <see cref="IgnoreService"/> is set to <c>true</c>.
|
2019-06-20 10:55:24 +02:00
|
|
|
|
/// </summary>
|
|
|
|
|
public ServicePolicy Policy { get; set; }
|
2020-05-20 12:03:54 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether the VMware configuration will be set by the service.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool SetVmwareConfiguration { get; set; }
|
2019-06-20 10:55:24 +02:00
|
|
|
|
}
|
|
|
|
|
}
|