2018-12-21 11:36:20 +01:00
|
|
|
|
/*
|
2024-03-05 18:37:42 +01:00
|
|
|
|
* Copyright (c) 2024 ETH Zürich, IT Services
|
2018-12-21 11:36:20 +01: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/.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace SafeExamBrowser.Configuration.ConfigurationData
|
|
|
|
|
{
|
|
|
|
|
internal static class Keys
|
|
|
|
|
{
|
2019-10-01 11:30:53 +02:00
|
|
|
|
internal const int WINDOWS = 1;
|
|
|
|
|
|
2019-01-09 16:01:56 +01:00
|
|
|
|
internal static class Applications
|
2018-12-21 11:36:20 +01:00
|
|
|
|
{
|
2019-10-30 11:08:42 +01:00
|
|
|
|
internal const string Active = "active";
|
|
|
|
|
internal const string AllowCustomPath = "allowUserToChooseApp";
|
|
|
|
|
internal const string AllowRunning = "runInBackground";
|
|
|
|
|
internal const string Argument = "argument";
|
|
|
|
|
internal const string Arguments = "arguments";
|
|
|
|
|
internal const string AutoStart = "autostart";
|
|
|
|
|
internal const string AutoTerminate = "strongKill";
|
2019-10-01 11:30:53 +02:00
|
|
|
|
internal const string Blacklist = "prohibitedProcesses";
|
2019-11-06 08:45:37 +01:00
|
|
|
|
internal const string Description = "description";
|
2019-10-30 11:08:42 +01:00
|
|
|
|
internal const string DisplayName = "title";
|
|
|
|
|
internal const string ExecutableName = "executable";
|
|
|
|
|
internal const string ExecutablePath = "path";
|
|
|
|
|
internal const string OperatingSystem = "os";
|
|
|
|
|
internal const string OriginalName = "originalName";
|
|
|
|
|
internal const string ShowInShell = "iconInTaskbar";
|
2023-05-01 18:29:00 +02:00
|
|
|
|
internal const string Signature = "signature";
|
2019-10-01 11:30:53 +02:00
|
|
|
|
internal const string Whitelist = "permittedProcesses";
|
2018-12-21 11:36:20 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-16 08:26:11 +02:00
|
|
|
|
internal static class Audio
|
|
|
|
|
{
|
|
|
|
|
internal const string InitialVolumeLevel = "audioVolumeLevel";
|
|
|
|
|
internal const string MuteAudio = "audioMute";
|
|
|
|
|
internal const string SetInitialVolumeLevel = "audioSetVolumeLevel";
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-21 11:36:20 +01:00
|
|
|
|
internal static class Browser
|
|
|
|
|
{
|
2019-01-23 14:37:24 +01:00
|
|
|
|
internal const string AllowConfigurationDownloads = "downloadAndOpenSebConfig";
|
2020-08-05 22:55:38 +02:00
|
|
|
|
internal const string AllowCustomDownUploadLocation = "allowCustomDownUploadLocation";
|
2019-05-22 11:42:31 +02:00
|
|
|
|
internal const string AllowDeveloperConsole = "allowDeveloperConsole";
|
2024-03-05 11:04:54 +01:00
|
|
|
|
internal const string AllowDownloads = "allowDownloads";
|
2020-01-24 10:19:11 +01:00
|
|
|
|
internal const string AllowDownloadsAndUploads = "allowDownUploads";
|
2020-08-11 17:52:51 +02:00
|
|
|
|
internal const string AllowFind = "allowFind";
|
2019-01-17 11:12:17 +01:00
|
|
|
|
internal const string AllowPageZoom = "enableZoomPage";
|
2020-01-30 11:15:28 +01:00
|
|
|
|
internal const string AllowPdfReaderToolbar = "allowPDFReaderToolbar";
|
2022-07-25 20:25:42 +02:00
|
|
|
|
internal const string AllowPrint = "allowPrint";
|
2020-03-05 09:38:26 +01:00
|
|
|
|
internal const string AllowSpellChecking = "allowSpellCheck";
|
2024-03-05 11:04:54 +01:00
|
|
|
|
internal const string AllowUploads = "allowUploads";
|
2019-01-11 08:25:40 +01:00
|
|
|
|
internal const string CustomUserAgentDesktop = "browserUserAgentWinDesktopModeCustom";
|
|
|
|
|
internal const string CustomUserAgentMobile = "browserUserAgentWinTouchModeCustom";
|
2020-02-21 15:11:35 +01:00
|
|
|
|
internal const string DeleteCacheOnShutdown = "removeBrowserProfile";
|
2020-02-17 12:10:04 +01:00
|
|
|
|
internal const string DeleteCookiesOnShutdown = "examSessionClearCookiesOnEnd";
|
|
|
|
|
internal const string DeleteCookiesOnStartup = "examSessionClearCookiesOnStart";
|
2020-01-20 16:13:08 +01:00
|
|
|
|
internal const string DownloadDirectory = "downloadDirectoryWin";
|
2020-01-30 11:15:28 +01:00
|
|
|
|
internal const string DownloadPdfFiles = "downloadPDFFiles";
|
2020-01-10 10:25:51 +01:00
|
|
|
|
internal const string EnableBrowser = "enableSebBrowser";
|
2020-02-13 11:01:07 +01:00
|
|
|
|
internal const string ExamKeySalt = "examKeySalt";
|
2020-10-05 23:37:23 +02:00
|
|
|
|
internal const string HomeButtonMessage = "restartExamText";
|
|
|
|
|
internal const string HomeButtonRequiresPassword = "restartExamPasswordProtected";
|
|
|
|
|
internal const string HomeButtonUrl = "restartExamURL";
|
|
|
|
|
internal const string HomeButtonUseStartUrl = "restartExamUseStartURL";
|
2019-12-12 15:41:05 +01:00
|
|
|
|
internal const string PopupPolicy = "newBrowserWindowByLinkPolicy";
|
2019-12-13 16:10:10 +01:00
|
|
|
|
internal const string PopupBlockForeignHost = "newBrowserWindowByLinkBlockForeign";
|
2019-12-19 15:02:40 +01:00
|
|
|
|
internal const string QuitUrl = "quitURL";
|
|
|
|
|
internal const string QuitUrlConfirmation = "quitURLConfirm";
|
2020-09-21 19:22:15 +02:00
|
|
|
|
internal const string ResetOnQuitUrl = "quitURLRestart";
|
2023-03-09 22:49:54 +01:00
|
|
|
|
internal const string SendCustomHeaders = "sendBrowserExamKey";
|
|
|
|
|
internal const string ShowFileSystemElementPath = "browserShowFileSystemElementPath";
|
2020-05-04 12:56:08 +02:00
|
|
|
|
internal const string ShowReloadButton = "showReloadButton";
|
2020-01-08 09:55:23 +01:00
|
|
|
|
internal const string ShowToolbar = "enableBrowserWindowToolbar";
|
2019-12-19 15:02:40 +01:00
|
|
|
|
internal const string StartUrl = "startURL";
|
2019-01-11 08:25:40 +01:00
|
|
|
|
internal const string UserAgentModeDesktop = "browserUserAgentWinDesktopMode";
|
|
|
|
|
internal const string UserAgentModeMobile = "browserUserAgentWinTouchMode";
|
2020-02-19 15:32:38 +01:00
|
|
|
|
internal const string UserAgentSuffix = "browserUserAgent";
|
2020-09-24 12:55:20 +02:00
|
|
|
|
internal const string UseStartUrlQuery = "startURLAppendQueryParameter";
|
2021-07-01 18:54:43 +02:00
|
|
|
|
internal const string UseTemporaryDownUploadDirectory = "useTemporaryDownUploadDirectory";
|
2019-05-22 11:42:31 +02:00
|
|
|
|
|
2019-12-11 11:09:24 +01:00
|
|
|
|
internal static class AdditionalWindow
|
|
|
|
|
{
|
|
|
|
|
internal const string AllowAddressBar = "newBrowserWindowAllowAddressBar";
|
|
|
|
|
internal const string AllowNavigation = "newBrowserWindowNavigation";
|
|
|
|
|
internal const string AllowReload = "newBrowserWindowAllowReload";
|
|
|
|
|
internal const string ShowReloadWarning = "newBrowserWindowShowReloadWarning";
|
2020-09-29 14:01:17 +02:00
|
|
|
|
internal const string UrlPolicy = "newBrowserWindowShowURL";
|
2019-12-11 11:09:24 +01:00
|
|
|
|
internal const string WindowHeight = "newBrowserWindowByLinkHeight";
|
|
|
|
|
internal const string WindowWidth = "newBrowserWindowByLinkWidth";
|
|
|
|
|
internal const string WindowPosition = "newBrowserWindowByLinkPositioning";
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-06 08:13:27 +02:00
|
|
|
|
internal static class Filter
|
|
|
|
|
{
|
|
|
|
|
internal const string EnableContentRequestFilter = "URLFilterEnableContentFilter";
|
|
|
|
|
internal const string EnableMainRequestFilter = "URLFilterEnable";
|
2019-12-18 08:09:59 +01:00
|
|
|
|
internal const string FilterRules = "URLFilterRules";
|
2019-09-06 08:13:27 +02:00
|
|
|
|
internal const string RuleAction = "action";
|
|
|
|
|
internal const string RuleIsActive = "active";
|
|
|
|
|
internal const string RuleExpression = "expression";
|
|
|
|
|
internal const string RuleExpressionIsRegex = "regex";
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-22 11:42:31 +02:00
|
|
|
|
internal static class MainWindow
|
|
|
|
|
{
|
|
|
|
|
internal const string AllowAddressBar = "browserWindowAllowAddressBar";
|
|
|
|
|
internal const string AllowNavigation = "allowBrowsingBackForward";
|
|
|
|
|
internal const string AllowReload = "browserWindowAllowReload";
|
|
|
|
|
internal const string ShowReloadWarning = "showReloadWarning";
|
2020-09-29 14:01:17 +02:00
|
|
|
|
internal const string UrlPolicy = "browserWindowShowURL";
|
2019-12-11 11:09:24 +01:00
|
|
|
|
internal const string WindowHeight = "mainBrowserWindowHeight";
|
|
|
|
|
internal const string WindowMode = "browserViewMode";
|
|
|
|
|
internal const string WindowWidth = "mainBrowserWindowWidth";
|
|
|
|
|
internal const string WindowPosition = "mainBrowserWindowPositioning";
|
2019-05-22 11:42:31 +02:00
|
|
|
|
}
|
2019-12-18 08:09:59 +01:00
|
|
|
|
|
|
|
|
|
internal static class Proxy
|
|
|
|
|
{
|
|
|
|
|
internal const string AutoConfigure = "AutoConfigurationEnabled";
|
|
|
|
|
internal const string AutoConfigureUrl = "AutoConfigurationURL";
|
|
|
|
|
internal const string AutoDetect = "AutoDiscoveryEnabled";
|
|
|
|
|
internal const string BypassList = "ExceptionsList";
|
|
|
|
|
internal const string Policy = "proxySettingsPolicy";
|
|
|
|
|
internal const string Settings = "proxies";
|
|
|
|
|
|
|
|
|
|
internal static class Ftp
|
|
|
|
|
{
|
|
|
|
|
internal const string Enable = "FTPEnable";
|
|
|
|
|
internal const string Host = "FTPProxy";
|
|
|
|
|
internal const string Password = "FTPPassword";
|
|
|
|
|
internal const string Port = "FTPPort";
|
|
|
|
|
internal const string RequiresAuthentication = "FTPRequiresPassword";
|
|
|
|
|
internal const string Username = "FTPUsername";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static class Http
|
|
|
|
|
{
|
2022-07-25 20:25:42 +02:00
|
|
|
|
internal const string Enable = "HTTPEnable";
|
2019-12-18 08:09:59 +01:00
|
|
|
|
internal const string Host = "HTTPProxy";
|
|
|
|
|
internal const string Password = "HTTPPassword";
|
|
|
|
|
internal const string Port = "HTTPPort";
|
|
|
|
|
internal const string RequiresAuthentication = "HTTPRequiresPassword";
|
|
|
|
|
internal const string Username = "HTTPUsername";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static class Https
|
|
|
|
|
{
|
|
|
|
|
internal const string Enable = "HTTPSEnable";
|
|
|
|
|
internal const string Host = "HTTPSProxy";
|
|
|
|
|
internal const string Password = "HTTPSPassword";
|
|
|
|
|
internal const string Port = "HTTPSPort";
|
|
|
|
|
internal const string RequiresAuthentication = "HTTPSRequiresPassword";
|
|
|
|
|
internal const string Username = "HTTPSUsername";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static class Socks
|
|
|
|
|
{
|
|
|
|
|
internal const string Enable = "SOCKSEnable";
|
|
|
|
|
internal const string Host = "SOCKSProxy";
|
|
|
|
|
internal const string Password = "SOCKSPassword";
|
|
|
|
|
internal const string Port = "SOCKSPort";
|
|
|
|
|
internal const string RequiresAuthentication = "SOCKSRequiresPassword";
|
|
|
|
|
internal const string Username = "SOCKSUsername";
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-21 11:36:20 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-09 16:01:56 +01:00
|
|
|
|
internal static class ConfigurationFile
|
2018-12-21 11:36:20 +01:00
|
|
|
|
{
|
2019-01-09 16:01:56 +01:00
|
|
|
|
internal const string ConfigurationPurpose = "sebConfigPurpose";
|
|
|
|
|
internal const string KeepClientConfigEncryption = "clientConfigKeepEncryption";
|
2020-07-01 13:39:17 +02:00
|
|
|
|
internal const string SessionMode = "sebMode";
|
2018-12-21 11:36:20 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-30 20:04:44 +02:00
|
|
|
|
internal static class Display
|
|
|
|
|
{
|
|
|
|
|
internal const string AllowedDisplays = "allowedDisplaysMaxNumber";
|
2024-01-11 12:32:48 +01:00
|
|
|
|
internal const string AlwaysOn = "displayAlwaysOn";
|
2021-05-30 20:04:44 +02:00
|
|
|
|
internal const string IgnoreError = "allowedDisplaysIgnoreFailure";
|
|
|
|
|
internal const string InternalDisplayOnly = "allowedDisplayBuiltinEnforce";
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-09 16:01:56 +01:00
|
|
|
|
internal static class General
|
2018-12-21 11:36:20 +01:00
|
|
|
|
{
|
2019-01-23 08:12:15 +01:00
|
|
|
|
internal const string LogLevel = "logLevel";
|
2020-01-10 08:54:10 +01:00
|
|
|
|
internal const string OriginatorVersion = "originatorVersion";
|
2018-12-21 11:36:20 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 15:02:40 +01:00
|
|
|
|
internal static class Keyboard
|
2018-12-21 11:36:20 +01:00
|
|
|
|
{
|
2019-12-19 15:02:40 +01:00
|
|
|
|
internal const string EnableAltEsc = "enableAltEsc";
|
|
|
|
|
internal const string EnableAltTab = "enableAltTab";
|
|
|
|
|
internal const string EnableAltF4 = "enableAltF4";
|
|
|
|
|
internal const string EnableCtrlEsc = "enableCtrlEsc";
|
|
|
|
|
internal const string EnableEsc = "enableEsc";
|
|
|
|
|
internal const string EnableF1 = "enableF1";
|
|
|
|
|
internal const string EnableF2 = "enableF2";
|
|
|
|
|
internal const string EnableF3 = "enableF3";
|
|
|
|
|
internal const string EnableF4 = "enableF4";
|
|
|
|
|
internal const string EnableF5 = "enableF5";
|
|
|
|
|
internal const string EnableF6 = "enableF6";
|
|
|
|
|
internal const string EnableF7 = "enableF7";
|
|
|
|
|
internal const string EnableF8 = "enableF8";
|
|
|
|
|
internal const string EnableF9 = "enableF9";
|
|
|
|
|
internal const string EnableF10 = "enableF10";
|
|
|
|
|
internal const string EnableF11 = "enableF11";
|
|
|
|
|
internal const string EnableF12 = "enableF12";
|
|
|
|
|
internal const string EnablePrintScreen = "enablePrintScreen";
|
|
|
|
|
internal const string EnableSystemKey = "enableStartMenu";
|
|
|
|
|
}
|
2019-01-09 16:01:56 +01:00
|
|
|
|
|
2019-12-19 15:02:40 +01:00
|
|
|
|
internal static class Mouse
|
|
|
|
|
{
|
2021-08-06 12:55:49 +02:00
|
|
|
|
internal const string EnableMiddleMouseButton = "enableMiddleMouse";
|
|
|
|
|
internal const string EnableRightMouseButton = "enableRightMouse";
|
2018-12-21 11:36:20 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static class Network
|
|
|
|
|
{
|
|
|
|
|
internal static class Certificates
|
|
|
|
|
{
|
|
|
|
|
internal const string CertificateData = "certificateData";
|
|
|
|
|
internal const string CertificateType = "type";
|
|
|
|
|
internal const string EmbeddedCertificates = "embeddedCertificates";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-10 00:49:32 +01:00
|
|
|
|
internal static class Proctoring
|
2021-02-09 14:44:59 +01:00
|
|
|
|
{
|
2021-10-21 11:17:27 +02:00
|
|
|
|
internal const string ForceRaiseHandMessage = "raiseHandButtonAlwaysPromptMessage";
|
|
|
|
|
internal const string ShowRaiseHand = "raiseHandButtonShow";
|
2021-03-25 13:49:45 +01:00
|
|
|
|
internal const string ShowTaskbarNotification = "showProctoringViewButton";
|
2021-02-09 14:44:59 +01:00
|
|
|
|
|
2024-02-01 17:36:11 +01:00
|
|
|
|
internal static class ScreenProctoring
|
|
|
|
|
{
|
|
|
|
|
internal const string ClientId = "screenProctoringClientId";
|
|
|
|
|
internal const string ClientSecret = "screenProctoringClientSecret";
|
|
|
|
|
internal const string Enabled = "enableScreenProctoring";
|
|
|
|
|
internal const string GroupId = "screenProctoringGroupId";
|
|
|
|
|
internal const string ImageDownscaling = "screenProctoringImageDownscale";
|
|
|
|
|
internal const string ImageFormat = "screenProctoringImageFormat";
|
|
|
|
|
internal const string ImageQuantization = "screenProctoringImageQuantization";
|
|
|
|
|
internal const string MaxInterval = "screenProctoringScreenshotMaxInterval";
|
|
|
|
|
internal const string MinInterval = "screenProctoringScreenshotMinInterval";
|
|
|
|
|
internal const string ServiceUrl = "screenProctoringServiceURL";
|
2024-02-22 18:04:00 +01:00
|
|
|
|
|
|
|
|
|
internal static class MetaData
|
|
|
|
|
{
|
|
|
|
|
internal const string CaptureApplicationData = "screenProctoringMetadataActiveAppEnabled";
|
|
|
|
|
internal const string CaptureBrowserData = "screenProctoringMetadataURLEnabled";
|
|
|
|
|
internal const string CaptureWindowTitle = "screenProctoringMetadataWindowTitleEnabled";
|
|
|
|
|
}
|
2024-02-01 17:36:11 +01:00
|
|
|
|
}
|
2021-02-09 14:44:59 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-09 16:01:56 +01:00
|
|
|
|
internal static class Security
|
2018-12-21 11:36:20 +01:00
|
|
|
|
{
|
2020-07-01 13:39:17 +02:00
|
|
|
|
internal const string AdminPasswordHash = "hashedAdminPassword";
|
2020-02-19 11:53:29 +01:00
|
|
|
|
internal const string AllowApplicationLog = "allowApplicationLog";
|
2020-09-10 12:35:58 +02:00
|
|
|
|
internal const string AllowReconfiguration = "examSessionReconfigureAllow";
|
2024-07-24 20:31:08 +02:00
|
|
|
|
internal const string AllowStickyKeys = "allowStickyKeys";
|
2020-05-04 12:37:54 +02:00
|
|
|
|
internal const string AllowTermination = "allowQuit";
|
2019-12-20 10:03:47 +01:00
|
|
|
|
internal const string AllowVirtualMachine = "allowVirtualMachine";
|
2023-08-11 18:24:45 +02:00
|
|
|
|
internal const string ClipboardPolicy = "clipboardPolicy";
|
2024-01-11 19:01:56 +01:00
|
|
|
|
internal const string DisableSessionChangeLockScreen = "disableSessionChangeLockScreen";
|
2019-03-07 08:34:47 +01:00
|
|
|
|
internal const string KioskModeCreateNewDesktop = "createNewDesktop";
|
|
|
|
|
internal const string KioskModeDisableExplorerShell = "killExplorerShell";
|
2019-12-19 15:02:40 +01:00
|
|
|
|
internal const string QuitPasswordHash = "hashedQuitPassword";
|
2020-09-10 12:35:58 +02:00
|
|
|
|
internal const string ReconfigurationUrl = "examSessionReconfigureConfigURL";
|
2024-03-05 16:39:21 +01:00
|
|
|
|
internal const string VerifyCursorConfiguration = "enableCursorVerification";
|
2024-06-05 19:30:35 +02:00
|
|
|
|
internal const string VerifySessionIntegrity = "enableSessionVerification";
|
2023-07-03 15:25:31 +02:00
|
|
|
|
internal const string VersionRestrictions = "sebAllowedVersions";
|
2018-12-21 11:36:20 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-01 13:39:17 +02:00
|
|
|
|
internal static class Server
|
|
|
|
|
{
|
|
|
|
|
internal const string ApiUrl = "apiDiscovery";
|
|
|
|
|
internal const string ClientName = "clientName";
|
|
|
|
|
internal const string ClientSecret = "clientSecret";
|
|
|
|
|
internal const string Configuration = "sebServerConfiguration";
|
2020-11-30 18:30:29 +01:00
|
|
|
|
internal const string ExamId = "exam";
|
2020-07-01 13:39:17 +02:00
|
|
|
|
internal const string FallbackPasswordHash = "sebServerFallbackPasswordHash";
|
|
|
|
|
internal const string Institution = "institution";
|
|
|
|
|
internal const string PerformFallback = "sebServerFallback";
|
2022-01-03 17:38:15 +01:00
|
|
|
|
internal const string PingInterval = "pingInterval";
|
2020-07-01 13:39:17 +02:00
|
|
|
|
internal const string RequestAttempts = "sebServerFallbackAttempts";
|
|
|
|
|
internal const string RequestAttemptInterval = "sebServerFallbackAttemptInterval";
|
|
|
|
|
internal const string RequestTimeout = "sebServerFallbackTimeout";
|
|
|
|
|
internal const string ServerUrl = "sebServerURL";
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-28 15:00:17 +01:00
|
|
|
|
internal static class Service
|
|
|
|
|
{
|
|
|
|
|
internal const string EnableChromeNotifications = "enableChromeNotifications";
|
|
|
|
|
internal const string EnableEaseOfAccessOptions = "insideSebEnableEaseOfAccess";
|
2022-07-26 15:10:48 +02:00
|
|
|
|
internal const string EnableFindPrinter = "enableFindPrinter";
|
2020-04-17 10:39:58 +02:00
|
|
|
|
internal const string EnableNetworkOptions = "insideSebEnableNetworkConnectionSelector";
|
2020-02-28 15:00:17 +01:00
|
|
|
|
internal const string EnablePasswordChange = "insideSebEnableChangeAPassword";
|
|
|
|
|
internal const string EnablePowerOptions = "insideSebEnableShutDown";
|
|
|
|
|
internal const string EnableRemoteConnections = "allowScreenSharing";
|
|
|
|
|
internal const string EnableSignout = "insideSebEnableLogOff";
|
|
|
|
|
internal const string EnableTaskManager = "insideSebEnableStartTaskManager";
|
|
|
|
|
internal const string EnableUserLock = "insideSebEnableLockThisComputer";
|
|
|
|
|
internal const string EnableUserSwitch = "insideSebEnableSwitchUser";
|
2020-05-20 12:03:54 +02:00
|
|
|
|
internal const string EnableVmwareOverlay = "insideSebEnableVmWareClientShade";
|
2020-02-28 15:00:17 +01:00
|
|
|
|
internal const string EnableWindowsUpdate = "enableWindowsUpdate";
|
2020-06-23 13:53:10 +02:00
|
|
|
|
internal const string IgnoreService = "sebServiceIgnore";
|
|
|
|
|
internal const string Policy = "sebServicePolicy";
|
2020-05-20 12:03:54 +02:00
|
|
|
|
internal const string SetVmwareConfiguration = "setVmwareConfiguration";
|
2020-02-28 15:00:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
2024-01-11 12:32:48 +01:00
|
|
|
|
internal static class System
|
|
|
|
|
{
|
|
|
|
|
internal const string AlwaysOn = "systemAlwaysOn";
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-09 16:01:56 +01:00
|
|
|
|
internal static class UserInterface
|
2018-12-21 11:36:20 +01:00
|
|
|
|
{
|
2019-01-11 08:25:40 +01:00
|
|
|
|
internal const string UserInterfaceMode = "touchOptimized";
|
2019-05-22 15:16:50 +02:00
|
|
|
|
|
2020-02-19 11:53:29 +01:00
|
|
|
|
internal static class ActionCenter
|
|
|
|
|
{
|
|
|
|
|
internal const string EnableActionCenter = "showSideMenu";
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-12 17:30:19 +02:00
|
|
|
|
internal static class LockScreen
|
|
|
|
|
{
|
|
|
|
|
internal const string BackgroundColor = "lockScreenBackgroundColor";
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-11 17:35:52 +01:00
|
|
|
|
internal static class SystemControls
|
|
|
|
|
{
|
|
|
|
|
internal static class Audio
|
|
|
|
|
{
|
|
|
|
|
internal const string Show = "audioControlEnabled";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static class Clock
|
|
|
|
|
{
|
|
|
|
|
internal const string Show = "showTime";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static class KeyboardLayout
|
|
|
|
|
{
|
|
|
|
|
internal const string Show = "showInputLanguage";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static class Network
|
|
|
|
|
{
|
|
|
|
|
internal const string Show = "allowWlan";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static class PowerSupply
|
|
|
|
|
{
|
|
|
|
|
internal const string ChargeThresholdCritical = "batteryChargeThresholdCritical";
|
|
|
|
|
internal const string ChargeThresholdLow = "batteryChargeThresholdLow";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-22 15:16:50 +02:00
|
|
|
|
internal static class Taskbar
|
|
|
|
|
{
|
2020-02-19 11:53:29 +01:00
|
|
|
|
internal const string EnableTaskbar = "showTaskBar";
|
2019-05-22 15:16:50 +02:00
|
|
|
|
internal const string ShowApplicationLog = "showApplicationLogButton";
|
|
|
|
|
}
|
2018-12-21 11:36:20 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|