From 2c9b86d8739f7a639c40b8d95be202cccb776acc Mon Sep 17 00:00:00 2001
From: Heiko <61519853+htcfreek@users.noreply.github.com>
Date: Wed, 10 Nov 2021 17:38:27 +0100
Subject: [PATCH] [PT Run] [Settings plugin] Add new settings (#13746)
* Add entries for settings tools (#13741)
* Add UAC entry (#13743)
* fix typo
* Add entries for environment vars (#13734)
* fix typos
* fixes
* Improvements
* fix resource strings
* Fix merge conflicts
* update system env vars command
* fix json schema
* Update settings
* fix typo
* add firstResultScore
* fix typos
---
.github/actions/spell-check/expect.txt | 1 +
.../launcher/plugins/windowssettings.md | 18 +-
.../Classes/WindowsSetting.cs | 6 +
.../Helper/ResultHelper.cs | 16 +-
.../Properties/Resources.Designer.cs | 168 +-
.../Properties/Resources.resx | 69 +-
.../WindowsSettings.json | 3501 +++++++++--------
.../WindowsSettings.schema.json | 124 +-
8 files changed, 2079 insertions(+), 1824 deletions(-)
diff --git a/.github/actions/spell-check/expect.txt b/.github/actions/spell-check/expect.txt
index 53068b7537..5efd5f1d1f 100644
--- a/.github/actions/spell-check/expect.txt
+++ b/.github/actions/spell-check/expect.txt
@@ -787,6 +787,7 @@ hmonitor
HOLDENTER
HOLDESC
homljgmgpmcbpjbnjpfijnhipfkiclkd
+Homepage
HOOKPROC
hostname
hotkeycontrol
diff --git a/doc/devdocs/modules/launcher/plugins/windowssettings.md b/doc/devdocs/modules/launcher/plugins/windowssettings.md
index aa8678577d..62244d928d 100644
--- a/doc/devdocs/modules/launcher/plugins/windowssettings.md
+++ b/doc/devdocs/modules/launcher/plugins/windowssettings.md
@@ -26,6 +26,7 @@ The `WindowsSettings.json` use a JSON schema file that make it easier to edit it
| `Note` | Yes | String | `Note` |
| `IntroducedInBuild` | Yes | Integer | |
| `DeprecatedInBuild` | Yes | Integer | |
+| `ShowAsFirstResult` | Yes | Boolean | |
A minimum entry for the `WindowsSettings.json` looks like:
@@ -48,7 +49,8 @@ A full entry for the `WindowsSettings.json` looks like:
"AltNames": [ "NiceSetting" ],
"Note": "NoteMySettingNote",
"IntroducedInBuild" : 1903,
- "DeprecatedInBuild" : 2004
+ "DeprecatedInBuild" : 2004,
+ "ShowAsFirstResult" : true
}
```
@@ -65,11 +67,12 @@ A full entry for the `WindowsSettings.json` looks like:
There are three different score types with different start values.
-| Score type | Start value |
-| ------------ | ------------ |
-| High score | 10000 |
-| Medium score | 5000 |
-| Low score | 1000 |
+| Score type | Start value |
+| ------------------ | ------------ |
+| First result score | 10500 |
+| High score | 10000 |
+| Medium score | 5000 |
+| Low score | 1000 |
Each score will decreased by one when a condition match.
@@ -83,6 +86,9 @@ Each score will decreased by one when a condition match.
| 6. | One alternative name of the settings starts with the search value | Medium score |
| x. | no condition match | Low score |
+### Remarks
+* For each score condition we check if the property "ShowAsFirstResult" of the setting is true. If yes we use the firstResultScore instead of condition`s score.
+
## Important for developers
### General
diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Classes/WindowsSetting.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Classes/WindowsSetting.cs
index 6c4f23fe99..74fc2653fb 100644
--- a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Classes/WindowsSetting.cs
+++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Classes/WindowsSetting.cs
@@ -19,6 +19,7 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings
Name = string.Empty;
Command = string.Empty;
Type = string.Empty;
+ ShowAsFirstResult = false;
}
///
@@ -62,6 +63,11 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings
///
public uint? DeprecatedInBuild { get; set; }
+ ///
+ /// Gets or sets a value indicating whether to use a higher score as normal for this setting to show it as one of the first results.
+ ///
+ public bool ShowAsFirstResult { get; set; }
+
///
/// Gets or sets the the value with the generated area path as string.
/// This Property IS NOT PART OF THE DATA IN "WindowsSettings.json".
diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ResultHelper.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ResultHelper.cs
index 3a80c5012c..16859bf70a 100644
--- a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ResultHelper.cs
+++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Helper/ResultHelper.cs
@@ -146,6 +146,7 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper
var lowScore = 1_000;
var mediumScore = 5_000;
var highScore = 10_000;
+ var firstResultScore = 10_500;
foreach (var result in resultList)
{
@@ -158,43 +159,44 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper
{
if (windowsSetting.Name.StartsWith(query, StringComparison.CurrentCultureIgnoreCase))
{
- result.Score = highScore--;
+ result.Score = !windowsSetting.ShowAsFirstResult ? highScore-- : firstResultScore--;
continue;
}
// If query starts with second or next word of name, set score.
if (windowsSetting.Name.Contains($" {query}", StringComparison.CurrentCultureIgnoreCase))
{
- result.Score = mediumScore--;
+ result.Score = !windowsSetting.ShowAsFirstResult ? mediumScore-- : firstResultScore--;
continue;
}
if (windowsSetting.Areas is null)
{
- result.Score = lowScore--;
+ result.Score = !windowsSetting.ShowAsFirstResult ? lowScore-- : firstResultScore--;
continue;
}
if (windowsSetting.Areas.Any(x => x.StartsWith(query, StringComparison.CurrentCultureIgnoreCase)))
{
- result.Score = lowScore--;
+ result.Score = !windowsSetting.ShowAsFirstResult ? lowScore-- : firstResultScore--;
continue;
}
if (windowsSetting.AltNames is null)
{
- result.Score = lowScore--;
+ result.Score = !windowsSetting.ShowAsFirstResult ? lowScore-- : firstResultScore--;
continue;
}
if (windowsSetting.AltNames.Any(x => x.StartsWith(query, StringComparison.CurrentCultureIgnoreCase)))
{
- result.Score = mediumScore--;
+ result.Score = !windowsSetting.ShowAsFirstResult ? mediumScore-- : firstResultScore--;
continue;
}
}
- result.Score = lowScore--;
+ // On empty queries
+ result.Score = !windowsSetting.ShowAsFirstResult ? lowScore-- : firstResultScore--;
}
}
diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.Designer.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.Designer.cs
index adb47c9279..0070c3089e 100644
--- a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.Designer.cs
+++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.Designer.cs
@@ -447,15 +447,6 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
- ///
- /// Looks up a localized string similar to Home page.
- ///
- internal static string AreaHomePage {
- get {
- return ResourceManager.GetString("AreaHomePage", resourceCulture);
- }
- }
-
///
/// Looks up a localized string similar to Mixed reality.
///
@@ -510,6 +501,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
+ ///
+ /// Looks up a localized string similar to Security and Maintenance.
+ ///
+ internal static string AreaSecurityAndMaintenance {
+ get {
+ return ResourceManager.GetString("AreaSecurityAndMaintenance", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to SurfaceHub.
///
@@ -537,6 +537,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
+ ///
+ /// Looks up a localized string similar to System Properties.
+ ///
+ internal static string AreaSystemPropertiesAdvanced {
+ get {
+ return ResourceManager.GetString("AreaSystemPropertiesAdvanced", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Time and language.
///
@@ -834,6 +843,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
+ ///
+ /// Looks up a localized string similar to Change User Account Control settings.
+ ///
+ internal static string ChangeUACSettings {
+ get {
+ return ResourceManager.GetString("ChangeUACSettings", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Choose which folders appear on Start.
///
@@ -1230,6 +1248,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
+ ///
+ /// Looks up a localized string similar to Edit environment variables.
+ ///
+ internal static string EditEnvironmentVariables {
+ get {
+ return ResourceManager.GetString("EditEnvironmentVariables", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Edition.
///
@@ -1239,6 +1266,24 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
+ ///
+ /// Looks up a localized string similar to Edit the system environment variables.
+ ///
+ internal static string EditSystemEnvironmentVariables {
+ get {
+ return ResourceManager.GetString("EditSystemEnvironmentVariables", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Edit environment variables for your account.
+ ///
+ internal static string EditUserEnvironmentVariables {
+ get {
+ return ResourceManager.GetString("EditUserEnvironmentVariables", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Email.
///
@@ -1275,6 +1320,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
+ ///
+ /// Looks up a localized string similar to Env vars.
+ ///
+ internal static string EnvVars {
+ get {
+ return ResourceManager.GetString("EnvVars", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Ethernet.
///
@@ -2211,6 +2265,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
+ ///
+ /// Looks up a localized string similar to Editing this setting may require administrative privileges..
+ ///
+ internal static string NoteEditingRequireAdminPrivileges {
+ get {
+ return ResourceManager.GetString("NoteEditingRequireAdminPrivileges", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Only present if user is enrolled in WIP..
///
@@ -2436,6 +2499,24 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
+ ///
+ /// Looks up a localized string similar to Control Panel (Application homepage).
+ ///
+ internal static string OpenControlPanel {
+ get {
+ return ResourceManager.GetString("OpenControlPanel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Settings (Application homepage).
+ ///
+ internal static string OpenSettingsApp {
+ get {
+ return ResourceManager.GetString("OpenSettingsApp", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to OS.
///
@@ -3094,11 +3175,11 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
///
- /// Looks up a localized string similar to Settings home page.
+ /// Looks up a localized string similar to Settings app.
///
- internal static string SettingsHomePage {
+ internal static string SettingsApp {
get {
- return ResourceManager.GetString("SettingsHomePage", resourceCulture);
+ return ResourceManager.GetString("SettingsApp", resourceCulture);
}
}
@@ -3300,6 +3381,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
+ ///
+ /// Looks up a localized string similar to System env vars.
+ ///
+ internal static string SystemEnvVars {
+ get {
+ return ResourceManager.GetString("SystemEnvVars", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to System properties and Add New Hardware wizard.
///
@@ -3309,6 +3399,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
+ ///
+ /// Looks up a localized string similar to System variables.
+ ///
+ internal static string SystemVariables {
+ get {
+ return ResourceManager.GetString("SystemVariables", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Tab.
///
@@ -3516,6 +3615,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
+ ///
+ /// Looks up a localized string similar to UAC.
+ ///
+ internal static string UAC {
+ get {
+ return ResourceManager.GetString("UAC", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Uninstall.
///
@@ -3534,6 +3642,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
+ ///
+ /// Looks up a localized string similar to UserAccountControlSettings.exe.
+ ///
+ internal static string UserAccountControlSettings_exe {
+ get {
+ return ResourceManager.GetString("UserAccountControlSettings.exe", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to User accounts.
///
@@ -3543,6 +3660,33 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
+ ///
+ /// Looks up a localized string similar to User environment variables.
+ ///
+ internal static string UserEnvironmentVariables {
+ get {
+ return ResourceManager.GetString("UserEnvironmentVariables", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to User env vars.
+ ///
+ internal static string UserEnvVars {
+ get {
+ return ResourceManager.GetString("UserEnvVars", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to User variables.
+ ///
+ internal static string UserVariables {
+ get {
+ return ResourceManager.GetString("UserVariables", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Version.
///
diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.resx b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.resx
index e9928c47e2..058572f487 100644
--- a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.resx
+++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/Properties/Resources.resx
@@ -275,9 +275,6 @@
Hardware and Sound
-
- Home page
-
Mixed reality
@@ -296,6 +293,10 @@
Programs
+
+ Security and Maintenance
+ Area Security and Maintenance in legacy Control Panel app.
+
SurfaceHub
@@ -305,6 +306,10 @@
System and Security
+
+ System Properties
+ System Properties dialog sysdm.cpl
+
Time and language
@@ -428,6 +433,9 @@
Cellular and SIM
Area NetworkAndInternet
+
+ Change User Account Control settings
+
Choose which folders appear on Start
Area Personalization
@@ -599,10 +607,20 @@
Ease of access center
Area Control Panel (legacy settings)
+
+ Edit environment variables
+ Used as AltName on EditSystemEnvironmentVars settings to make both entries available via 'Edit environment variables'.
+
Edition
Means the "Windows Edition"
+
+ Edit the system environment variables
+
+
+ Edit environment variables for your account
+
Email
Area Privacy
@@ -619,6 +637,10 @@
Environment
Area MixedReality, only available if the Mixed Reality Portal app is installed.
+
+ Env vars
+ Short english form. Don't translate!
+
Ethernet
Area NetworkAndInternet
@@ -1009,6 +1031,9 @@
Only available on devices that support advanced display options.
+
+ Editing this setting may require administrative privileges.
+
Only present if user is enrolled in WIP.
@@ -1094,6 +1119,14 @@
On-Screen
+
+ Control Panel (Application homepage)
+ 'Control Panel' is here the name of the legacy settings app.
+
+
+ Settings (Application homepage)
+ 'Settings' is here the name of the modern settings app.
+
OS
Means the "Operating System"
@@ -1373,9 +1406,8 @@
Session cleanup
Area SurfaceHub
-
- Settings home page
- Area Home, Overview-page for all areas of settings
+
+ Settings app
Set up a kiosk
@@ -1462,10 +1494,17 @@
System
Area Control Panel (legacy settings)
+
+ System env vars
+ Short english form. Don't translate!
+
System properties and Add New Hardware wizard
Area Control Panel (legacy settings)
+
+ System variables
+
Tab
Means the key "Tabulator" on the keyboard
@@ -1552,6 +1591,10 @@
Typing
Area Device
+
+ UAC
+ Short version of 'User account control'
+
Uninstall
Area MixedReality, only available if the Mixed Reality Portal app is installed.
@@ -1560,10 +1603,24 @@
USB
Area Device
+
+ UserAccountControlSettings.exe
+ Name of the executable
+
User accounts
Area Control Panel (legacy settings)
+
+ User environment variables
+
+
+ User env vars
+ Short english form. Don't translate!
+
+
+ User variables
+
Version
Means The "Windows Version"
diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.json b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.json
index f227919699..93d19335b0 100644
--- a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.json
+++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.json
@@ -1,1739 +1,1770 @@
{
- "$schema" : "./WindowsSettings.schema.json",
+ "$schema": "./WindowsSettings.schema.json",
"Settings": [
{
- "Name": "AccessWorkOrSchool",
- "Areas": [ "AreaAccounts" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Workplace" ],
- "Command": "ms-settings:workplace"
+ "Name": "OpenSettingsApp",
+ "Type": "AppSettingsApp",
+ "AltNames": [ "SettingsApp", "AppSettingsApp" ],
+ "Command": "ms-settings:",
+ "ShowAsFirstResult": true
},
- {
- "Name": "EmailAndAppAccounts",
- "Areas": [ "AreaAccounts" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:emailandaccounts"
- },
- {
- "Name": "FamilyAndOtherPeople",
- "Areas": [ "AreaAccounts" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "OtherUsers" ],
- "Command": "ms-settings:otherusers"
- },
- {
- "Name": "SetUpKiosk",
- "Areas": [ "AreaAccounts" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "AssignedAccess" ],
- "Command": "ms-settings:assignedaccess"
- },
- {
- "Name": "SignInOptions",
- "Areas": [ "AreaAccounts" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:signinoptions"
- },
- {
- "Name": "SignInOptionsDynamicLock",
- "Areas": [ "AreaAccounts" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:signinoptions-dynamiclock"
- },
- {
- "Name": "SyncYourSettings",
- "Areas": [ "AreaAccounts" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:sync"
- },
- {
- "Name": "WindowsHelloSetupFace",
- "Areas": [ "AreaAccounts" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:signinoptions-launchfaceenrollment"
- },
- {
- "Name": "WindowsHelloSetupFingerprint",
- "Areas": [ "AreaAccounts" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:signinoptions-launchfingerprintenrollment"
- },
- {
- "Name": "YourInfo",
- "Areas": [ "AreaAccounts" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:yourinfo"
- },
- {
- "Name": "AppsAndFeatures",
- "Areas": [ "AreaApps" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:appsfeatures"
- },
- {
- "Name": "AppFeatures",
- "Areas": [ "AreaApps" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:appsfeatures-app"
- },
- {
- "Name": "AppsForWebsites",
- "Areas": [ "AreaApps" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:appsforwebsites"
- },
- {
- "Name": "DefaultApps",
- "Areas": [ "AreaApps" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:defaultapps"
- },
- {
- "Name": "ManageOptionalFeatures",
- "Areas": [ "AreaApps" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:optionalfeatures"
- },
- {
- "Name": "OfflineMaps",
- "Areas": [ "AreaApps" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:maps"
- },
- {
- "Name": "OfflineMapsDownloadMaps",
- "Areas": [ "AreaApps" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:maps-downloadmaps"
- },
- {
- "Name": "StartupApps",
- "Areas": [ "AreaApps" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:startupapps"
- },
- {
- "Name": "VideoPlayback",
- "Areas": [ "AreaApps" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:videoplayback"
- },
- {
- "Name": "Notifications",
- "Areas": [ "AreaCortana" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:cortana-notifications"
- },
- {
- "Name": "MoreDetails",
- "Areas": [ "AreaCortana" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:cortana-moredetails"
- },
- {
- "Name": "PermissionsAndHistory",
- "Areas": [ "AreaCortana" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:cortana-permissions"
- },
- {
- "Name": "WindowsSearch",
- "Areas": [ "AreaCortana" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:cortana-windowssearch"
- },
- {
- "Name": "CortanaLanguage",
- "Areas": [ "AreaCortana" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Talk" ],
- "Command": "ms-settings:cortana-language"
- },
- {
- "Name": "Cortana",
- "Areas": [ "AreaCortana" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:cortana"
- },
- {
- "Name": "TalkToCortana",
- "Areas": [ "AreaCortana" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:cortana-talktocortana"
- },
- {
- "Name": "AutoPlay",
- "Areas": [ "AreaDevices" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:autoplay"
- },
- {
- "Name": "Bluetooth",
- "Areas": [ "AreaDevices" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:bluetooth"
- },
- {
- "Name": "ConnectedDevices",
- "Areas": [ "AreaDevices" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:connecteddevices"
- },
- {
- "Name": "DefaultCamera",
- "Areas": [ "AreaDevices" ],
- "Type": "AppSettingsApp",
- "DeprecatedInBuild": 17763,
- "Note": "NoteDeprecated17763",
- "Command": "ms-settings:camera"
- },
- {
- "Name": "MouseAndTouchpad",
- "Areas": [ "AreaDevices" ],
- "Type": "AppSettingsApp",
- "Note": "NoteTouchpad",
- "Command": "ms-settings:mousetouchpad"
- },
- {
- "Name": "PenAndWindowsInk",
- "Areas": [ "AreaDevices" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:pen"
- },
- {
- "Name": "PrintersAndScanners",
- "Areas": [ "AreaDevices" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:printers"
- },
- {
- "Name": "Touchpad",
- "Areas": [ "AreaDevices" ],
- "Type": "AppSettingsApp",
- "Note": "NoteTouchpad",
- "Command": "ms-settings:devices-touchpad"
- },
- {
- "Name": "Typing",
- "Areas": [ "AreaDevices" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:typing"
- },
- {
- "Name": "Usb",
- "Areas": [ "AreaDevices" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:usb"
- },
- {
- "Name": "Wheel",
- "Areas": [ "AreaDevices" ],
- "Type": "AppSettingsApp",
- "Note": "NoteDialPaired",
- "Command": "ms-settings:wheel"
- },
- {
- "Name": "Phone",
- "Areas": [ "AreaPhone" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "MobileDevices" ],
- "Command": "ms-settings:mobile-devices"
- },
- {
- "Name": "Audio",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Mono", "Volume", "AudioAlerts" ],
- "Command": "ms-settings:easeofaccess-audio"
- },
- {
- "Name": "ClosedCaptions",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:easeofaccess-closedcaptioning"
- },
- {
- "Name": "ColorFilters",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "InvertedColors", "Grayscale", "RedGreen", "BlueYellow", "GreenWeek", "RedWeek", "deuteranopia", "protanopia", "tritanopia" ],
- "Command": "ms-settings:easeofaccess-colorfilter"
- },
- {
- "Name": "MousePointer",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "TouchFeedback" ],
- "Command": "ms-settings:easeofaccess-MousePointer"
- },
- {
- "Name": "Display",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Transparency", "Animations", "ScrollBars", "Size" ],
- "Command": "ms-settings:easeofaccess-display"
- },
- {
- "Name": "EyeControl",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:easeofaccess-eyecontrol"
- },
- {
- "Name": "Fonts",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "DeprecatedInBuild": 17763,
- "Note": "NoteDeprecated17763",
- "Command": "ms-settings:fonts"
- },
- {
- "Name": "HighContrast",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:easeofaccess-highcontrast"
- },
- {
- "Name": "Keyboard",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "PrintScreen", "Shortcuts", "OnScreen", "Keys", "ScrollLock", "CapsLock", "NumLock" ],
- "Command": "ms-settings:easeofaccess-keyboard"
- },
- {
- "Name": "Magnifier",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Zoom" ],
- "Command": "ms-settings:easeofaccess-magnifier"
- },
- {
- "Name": "Mouse",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Keypad", "Touch" ],
- "Command": "ms-settings:easeofaccess-mouse"
- },
- {
- "Name": "Narrator",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:easeofaccess-narrator"
- },
- {
- "Name": "OtherOptions",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "DeprecatedInBuild": 17763,
- "Note": "NoteDeprecated17763",
- "Command": "ms-settings:easeofaccess-otheroptions"
- },
- {
- "Name": "Speech",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Recognition", "Talk" ],
- "Command": "ms-settings:easeofaccess-speechrecognition"
- },
- {
- "Name": "Extras",
- "Areas": [ "AreaExtras" ],
- "Type": "AppSettingsApp",
- "Note": "NoteThirdParty",
- "Command": "ms-settings:extras"
- },
- {
- "Name": "Broadcasting",
- "Areas": [ "AreaGaming" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:gaming-broadcasting"
- },
- {
- "Name": "GameBar",
- "Areas": [ "AreaGaming" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:gaming-gamebar"
- },
- {
- "Name": "GameDvr",
- "Areas": [ "AreaGaming" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:gaming-gamedvr"
- },
- {
- "Name": "GameMode",
- "Areas": [ "AreaGaming" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:gaming-gamemode"
- },
- {
- "Name": "PlayingGameFullScreen",
- "Areas": [ "AreaGaming" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "QuietMomentsGame" ],
- "Command": "ms-settings:quietmomentsgame"
- },
- {
- "Name": "TruePlay",
- "Areas": [ "AreaGaming" ],
- "Type": "AppSettingsApp",
- "DeprecatedInBuild": 17763,
- "Note": "NoteDeprecated17763",
- "Command": "ms-settings:gaming-trueplay"
- },
- {
- "Name": "XboxNetworking",
- "Areas": [ "AreaGaming" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:gaming-xboxnetworking"
- },
- {
- "Name": "SettingsHomePage",
- "Areas": [ "AreaHomePage" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:"
- },
- {
- "Name": "AudioAndSpeech",
- "Areas": [ "AreaMixedReality" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "HolographicAudio" ],
- "Note": "NoteMixedReality",
- "Command": "ms-settings:holographic-audio"
- },
- {
- "Name": "Environment",
- "Areas": [ "AreaMixedReality" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "HolographicEnvironment" ],
- "Note": "NoteMixedReality",
- "Command": "ms-settings:privacy-holographic-environment"
- },
- {
- "Name": "HeadsetDisplay",
- "Areas": [ "AreaMixedReality" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "HolographicHeadset" ],
- "Note": "NoteMixedReality",
- "Command": "ms-settings:holographic-headset"
- },
- {
- "Name": "Uninstall",
- "Areas": [ "AreaMixedReality" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "HolographicManagement" ],
- "Note": "NoteMixedReality",
- "Command": "ms-settings:holographic-management"
- },
- {
- "Name": "AirplaneMode",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:network-airplanemode"
- },
- {
- "Name": "Proximity",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:proximity"
- },
- {
- "Name": "CellularAndSim",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:network-cellular"
- },
- {
- "Name": "DataUsage",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:datausage"
- },
- {
- "Name": "DialUp",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:network-dialup"
- },
- {
- "Name": "DirectAccess",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "Note": "NoteDirectAccess",
- "Command": "ms-settings:network-directaccess"
- },
- {
- "Name": "Ethernet",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "DNS", "Sdns", "SecureDNS", "Gateway", "Dhcp", "Ip" ],
- "Command": "ms-settings:network-ethernet"
- },
- {
- "Name": "ManageKnownNetworks",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "WiFiSettings", "ShortNameWiFi" ],
- "Note": "NoteWiFiAdapter",
- "Command": "ms-settings:network-wifisettings"
- },
- {
- "Name": "MobileHotspot",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:network-mobilehotspot"
- },
- {
- "Name": "NFC",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "NFCTransactions" ],
- "Command": "ms-settings:nfctransactions"
- },
- {
- "Name": "Proxy",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:network-proxy"
- },
- {
- "Name": "NetworkStatus",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:network-status"
- },
- {
- "Name": "Network",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "DNS", "Sdns", "SecureDNS", "Gateway", "Dhcp", "Ip" ],
- "Command": "ms-settings:network"
- },
- {
- "Name": "Vpn",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:network-vpn"
- },
- {
- "Name": "WiFi",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Wireless", "MeteredConnection", "ShortNameWiFi" ],
- "Note": "NoteWiFiAdapter",
- "Command": "ms-settings:network-wifi"
- },
- {
- "Name": "WiFiCalling",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "ShortNameWiFi" ],
- "Note": "NoteWiFiAdapter",
- "Command": "ms-settings:network-wificalling"
- },
- {
- "Name": "Background",
- "Areas": [ "AreaPersonalization" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Wallpaper", "Picture", "Image" ],
- "Command": "ms-settings:personalization-background"
- },
- {
- "Name": "ChooseWhichFoldersAppearOnStart",
- "Areas": [ "AreaPersonalization" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "StartPlaces" ],
- "Command": "ms-settings:personalization-start-places"
- },
- {
- "Name": "Colors",
- "Areas": [ "AreaPersonalization" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "DarkMode", "LightMode", "DarkColor", "LightColor", "AppColor", "TaskbarColor", "WindowBorder" ],
- "Command": "ms-settings:colors"
- },
- {
- "Name": "Glance",
- "Areas": [ "AreaPersonalization" ],
- "Type": "AppSettingsApp",
- "DeprecatedInBuild": 17763,
- "Note": "NoteDeprecated17763",
- "Command": "ms-settings:personalization-glance"
- },
- {
- "Name": "LockScreen",
- "Areas": [ "AreaPersonalization" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Image", "Picture" ],
- "Command": "ms-settings:lockscreen"
- },
- {
- "Name": "NavigationBar",
- "Areas": [ "AreaPersonalization" ],
- "Type": "AppSettingsApp",
- "DeprecatedInBuild": 17763,
- "Note": "NoteDeprecated17763",
- "Command": "ms-settings:personalization-navbar"
- },
- {
- "Name": "PersonalizationCategory",
- "Type": "AppSettingsApp",
- "Command": "ms-settings:personalization"
- },
- {
- "Name": "Start",
- "Areas": [ "AreaPersonalization" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:personalization-start"
- },
- {
- "Name": "Taskbar",
- "Areas": [ "AreaPersonalization" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:taskbar"
- },
- {
- "Name": "Themes",
- "Areas": [ "AreaPersonalization" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:themes"
- },
- {
- "Name": "AddYourPhone",
- "Areas": [ "AreaPhone" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:mobile-devices-addphone",
- "Note": "NoteAddYourPhone"
- },
- {
- "Name": "DirectOpenYourPhone",
- "Areas": [ "AreaPhone" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:mobile-devices-addphone-direct",
- "Note": "NoteAddYourPhone"
- },
- {
- "Name": "AccessoryApps",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "DeprecatedInBuild": 17763,
- "Note": "NoteDeprecated17763",
- "Command": "ms-settings:privacy-accessoryapps"
- },
- {
- "Name": "AccountInfo",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-accountinfo"
- },
- {
- "Name": "ActivityHistory",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-activityhistory"
- },
- {
- "Name": "AdvertisingId",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "DeprecatedInBuild": 17763,
- "Note": "NoteDeprecated17763",
- "Command": "ms-settings:privacy-advertisingid"
- },
- {
- "Name": "AppDiagnostics",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-appdiagnostics"
- },
- {
- "Name": "AutomaticFileDownloads",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-automaticfiledownloads"
- },
- {
- "Name": "BackgroundApps",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-backgroundapps"
- },
- {
- "Name": "Calendar",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-calendar"
- },
- {
- "Name": "CallHistory",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-callhistory"
- },
- {
- "Name": "Camera",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-webcam"
- },
- {
- "Name": "Contacts",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-contacts"
- },
- {
- "Name": "Documents",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-documents"
- },
- {
- "Name": "Email",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-email"
- },
- {
- "Name": "EyeTracker",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Note": "NoteEyetrackerHardware",
- "Command": "ms-settings:privacy-eyetracker"
- },
- {
- "Name": "FeedbackAndDiagnostics",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-feedback"
- },
- {
- "Name": "FileSystem",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-broadfilesystemaccess"
- },
- {
- "Name": "General",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-general"
- },
- {
- "Name": "InkingAndTyping",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "SpeechTyping" ],
- "Command": "ms-settings:privacy-speechtyping"
- },
- {
- "Name": "Location",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-location"
- },
- {
- "Name": "Messaging",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-messaging"
- },
- {
- "Name": "Microphone",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-microphone"
- },
- {
- "Name": "Motion",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-motion"
- },
- {
- "Name": "Notifications",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-notifications"
- },
- {
- "Name": "OtherDevices",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "CustomDevices" ],
- "Command": "ms-settings:privacy-customdevices"
- },
- {
- "Name": "PhoneCalls",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-phonecalls"
- },
- {
- "Name": "Pictures",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-pictures"
- },
- {
- "Name": "Radios",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-radios"
- },
- {
- "Name": "Speech",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-speech"
- },
- {
- "Name": "Tasks",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-tasks"
- },
- {
- "Name": "Videos",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-videos"
- },
- {
- "Name": "VoiceActivation",
- "Areas": [ "AreaPrivacy" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:privacy-voiceactivation"
- },
- {
- "Name": "Accounts",
- "Areas": [ "AreaSurfaceHub" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:surfacehub-accounts"
- },
- {
- "Name": "SessionCleanup",
- "Areas": [ "AreaSurfaceHub" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:surfacehub-sessioncleanup"
- },
- {
- "Name": "TeamConferencing",
- "Areas": [ "AreaSurfaceHub" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "calling" ],
- "Command": "ms-settings:surfacehub-calling"
- },
- {
- "Name": "TeamDeviceManagement",
- "Areas": [ "AreaSurfaceHub" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:surfacehub-devicemanagenent"
- },
- {
- "Name": "WelcomeScreen",
- "Areas": [ "AreaSurfaceHub" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:surfacehub-welcome"
- },
- {
- "Name": "About",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Ram", "Processor", "Os", "Id", "Edition", "Version" ],
- "Command": "ms-settings:about"
- },
- {
- "Name": "AdvancedDisplaySettings",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Note": "NoteDisplayGraphics",
- "Command": "ms-settings:display-advanced"
- },
- {
- "Name": "AppVolumeAndDevicePreferences",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "IntroducedInBuild": 18362,
- "Note": "NoteSince18362",
- "Command": "ms-settings:apps-volume"
- },
- {
- "Name": "BatterySaver",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Note": "NoteBattery",
- "Command": "ms-settings:batterysaver"
- },
- {
- "Name": "BatterySaverSettings",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Note": "NoteBattery",
- "Command": "ms-settings:batterysaver-settings"
- },
- {
- "Name": "BatteryUse",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "BatterySaverUsageDetails" ],
- "Note": "NoteBattery",
- "Command": "ms-settings:batterysaver-usagedetails"
- },
- {
- "Name": "Clipboard",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:clipboard"
- },
- {
- "Name": "Display",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "NightLight", "BlueLight", "WarmerColor", "RedEye" ],
- "Command": "ms-settings:display"
- },
- {
- "Name": "DefaultSaveLocations",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:savelocations"
- },
- {
- "Name": "ScreenRotation",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:screenrotation"
- },
- {
- "Name": "DuplicatingMyDisplay",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Presentation" ],
- "Command": "ms-settings:quietmomentspresentation"
- },
- {
- "Name": "DuringTheseHours",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Scheduled" ],
- "Command": "ms-settings:quietmomentsscheduled"
- },
- {
- "Name": "Encryption",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:deviceencryption"
- },
- {
- "Name": "FocusAssistQuietHours",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:quiethours"
- },
- {
- "Name": "FocusAssistQuietMoments",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:quietmomentshome"
- },
- {
- "Name": "GraphicsSettings",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "AdvancedGraphics" ],
- "Note": "NoteAdvancedGraphics",
- "Command": "ms-settings:display-advancedgraphics"
- },
- {
- "Name": "Messaging",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:messaging"
- },
- {
- "Name": "Multitasking",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Timeline", "Tab", "AltAndTab", "VirtualDesktops" ],
- "Command": "ms-settings:multitasking"
- },
- {
- "Name": "NightLightSettings",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:nightlight"
- },
- {
- "Name": "PhoneDefaultApps",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:phone-defaultapps"
- },
- {
- "Name": "ProjectingToThisPc",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:project"
- },
- {
- "Name": "SharedExperiences",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "Crossdevice" ],
- "Command": "ms-settings:crossdevice"
- },
- {
- "Name": "TabletMode",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:tabletmode"
- },
- {
- "Name": "Taskbar",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:taskbar"
- },
- {
- "Name": "NotificationsAndActions",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:notifications"
- },
- {
- "Name": "RemoteDesktop",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:remotedesktop"
- },
- {
- "Name": "Phone",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "DeprecatedInBuild": 17763,
- "Note": "NoteDeprecated17763",
- "Command": "ms-settings:phone"
- },
- {
- "Name": "PowerAndSleep",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:powersleep"
- },
- {
- "Name": "Sound",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:sound"
- },
- {
- "Name": "StorageSense",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:storagesense"
- },
- {
- "Name": "StoragePolicies",
- "Areas": [ "AreaSystem" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:storagepolicies"
- },
- {
- "Name": "DateAndTime",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:dateandtime"
- },
- {
- "Name": "JapanImeSettings",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "jpnime" ],
- "Note": "NoteImeJapan",
- "Command": "ms-settings:regionlanguage-jpnime"
- },
- {
- "Name": "Region",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "RegionFormatting" ],
- "Command": "ms-settings:regionformatting"
- },
- {
- "Name": "Keyboard",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:keyboard"
- },
- {
- "Name": "RegionalLanguage",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:regionlanguage"
- },
- {
- "Name": "BopomofoIme",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "bpmf" ],
- "Command": "ms-settings:regionlanguage-bpmfime"
- },
- {
- "Name": "CangjieIme",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:regionlanguage-cangjieime"
- },
- {
- "Name": "PinyinImeSettingsDomainLexicon",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:regionlanguage-chsime-pinyin-domainlexicon"
- },
- {
- "Name": "PinyinImeSettingsKeyConfiguration",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:regionlanguage-chsime-pinyin-keyconfig"
- },
- {
- "Name": "PinyinImeSettingsUdp",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:regionlanguage-chsime-pinyin-udp"
- },
- {
- "Name": "WubiImeSettingsUdp",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:regionlanguage-chsime-wubi-udp"
- },
- {
- "Name": "Quickime",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:regionlanguage-quickime"
- },
- {
- "Name": "PinyinImeSettings",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "Note": "NoteImePinyin",
- "Command": "ms-settings:regionlanguage-chsime-pinyin"
- },
- {
- "Name": "Speech",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:speech"
- },
- {
- "Name": "WubiImeSettings",
- "Areas": [ "AreaTimeAndLanguage" ],
- "Type": "AppSettingsApp",
- "Note": "NoteImeWubi",
- "Command": "ms-settings:regionlanguage-chsime-wubi"
- },
- {
- "Name": "Activation",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:activation"
- },
- {
- "Name": "Backup",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:backup"
- },
- {
- "Name": "DeliveryOptimization",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:delivery-optimization"
- },
- {
- "Name": "FindMyDevice",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:findmydevice"
- },
- {
- "Name": "ForDevelopers",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:developers"
- },
- {
- "Name": "Recovery",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:recovery"
- },
- {
- "Name": "Troubleshoot",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:troubleshoot"
- },
- {
- "Name": "WindowsSecurity",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "AltNames": [ "WindowsDefender", "Firewall", "Virus", "CoreIsolation", "SecurityProcessor", "IsolatedBrowsing", "ExploitProtection" ],
- "Command": "ms-settings:windowsdefender"
- },
- {
- "Name": "WindowsInsiderProgram",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "Note": "NoteEnrolledWIP",
- "Command": "ms-settings:windowsinsider"
- },
- {
- "Name": "WindowsUpdate",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:windowsupdate"
- },
- {
- "Name": "WindowsUpdateCheckForUpdates",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:windowsupdate-action"
- },
- {
- "Name": "WindowsUpdateAdvancedOptions",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:windowsupdate-options"
- },
- {
- "Name": "WindowsUpdateRestartOptions",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:windowsupdate-restartoptions"
- },
- {
- "Name": "WindowsUpdateViewUpdateHistory",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "Command": "ms-settings:windowsupdate-history"
- },
- {
- "Name": "WindowsUpdateViewOptionalUpdates",
- "Areas": [ "AreaUpdateAndSecurity" ],
- "Type": "AppSettingsApp",
- "IntroducedInBuild": 19041,
- "Note": "NoteSince19041",
- "Command": "ms-settings:windowsupdate-optionalupdates"
- },
- {
- "Name": "WorkplaceProvisioning",
- "Areas": [ "AreaUserAccounts" ],
- "Type": "AppSettingsApp",
- "Note": "NoteWorkplaceProvisioning",
- "Command": "ms-settings:workplace-provisioning"
- },
- {
- "Name": "Provisioning",
- "Areas": [ "AreaUserAccounts" ],
- "Type": "AppSettingsApp",
- "Note": "NoteMobileProvisioning",
- "Command": "ms-settings:provisioning"
- },
- {
- "Name": "WindowsAnywhere",
- "Areas": [ "AreaUserAccounts" ],
- "Type": "AppSettingsApp",
- "Note": "NoteWindowsAnywhere",
- "Command": "ms-settings:windowsanywhere"
- },
- {
- "Name": "AccessibilityOptions",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppControlPanel",
- "AltNames": [ "access.cpl" ],
- "Command": "control access.cpl"
- },
- {
- "Name": "ActionCenter",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.ActionCenter"
- },
- {
- "Name": "AddHardware",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.AddHardware"
- },
- {
- "Name": "AddRemovePrograms",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "AltNames": [ "appwiz.cpl" ],
- "Command": "control appwiz.cpl"
- },
- {
- "Name": "AdministrativeTools",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.AdministrativeTools"
- },
- {
- "Name": "AutoPlay",
- "Areas": [ "AreaPrograms" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.AutoPlay"
- },
- {
- "Name": "BackupAndRestore",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.BackupAndRestore"
- },
- {
- "Name": "BiometricDevices",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.BiometricDevices"
- },
- {
- "Name": "BitLockerDriveEncryption",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.BitLockerDriveEncryption"
- },
- {
- "Name": "BluetoothDevices",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.BluetoothDevices"
- },
- {
- "Name": "ColorManagement",
- "Areas": [ "AreaAppearanceAndPersonalization" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.ColorManagement"
- },
- {
- "Name": "CredentialManager",
- "Areas": [ "AreaUserAccounts" ],
- "Type": "AppControlPanel",
- "AltNames": [ "Password" ],
- "Command": "control /name Microsoft.CredentialManager"
- },
- {
- "Name": "ClientServiceForNetWare",
- "Areas": [ "AreaPrograms" ],
- "Type": "AppControlPanel",
- "AltNames": [ "nwc.cpl" ],
- "Command": "control nwc.cpl"
- },
- {
- "Name": "DateAndTime",
- "Areas": [ "AreaClockAndRegion" ],
- "Type": "AppControlPanel",
- "AltNames": [ "timedate.cpl" ],
- "Command": "control /name Microsoft.DateAndTime"
- },
- {
- "Name": "DefaultLocation",
- "Areas": [ "AreaClockAndRegion" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.DefaultLocation"
- },
- {
- "Name": "DefaultPrograms",
- "Areas": [ "AreaPrograms" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.DefaultPrograms"
- },
- {
- "Name": "DeviceManager",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.DeviceManager"
- },
- {
- "Name": "DevicesAndPrinters",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.DevicesAndPrinters"
- },
- {
- "Name": "EaseOfAccessCenter",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.EaseOfAccessCenter"
- },
- {
- "Name": "FolderOptions",
- "Areas": [ "AreaAppearanceAndPersonalization" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.FolderOptions"
- },
- {
- "Name": "Fonts",
- "Areas": [ "AreaAppearanceAndPersonalization" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.Fonts"
- },
- {
- "Name": "GameControllers",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.GameControllers"
- },
- {
- "Name": "GetPrograms",
- "Areas": [ "AreaPrograms" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.GetPrograms"
- },
- {
- "Name": "GettingStarted",
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.GettingStarted"
- },
- {
- "Name": "HomeGroup",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.HomeGroup"
- },
- {
- "Name": "IndexingOptions",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.IndexingOptions"
- },
- {
- "Name": "Infrared",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.Infrared"
- },
- {
- "Name": "InternetOptions",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppControlPanel",
- "AltNames": [ "inetcpl.cpl" ],
- "Command": "control /name Microsoft.InternetOptions"
- },
- {
- "Name": "MailMicrosoftExchangeOrWindowsMessaging",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppControlPanel",
- "AltNames": [ "mlcfg32.cpl" ],
- "Command": "control mlcfg32.cpl"
- },
- {
- "Name": "Mouse",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.Mouse"
- },
- {
- "Name": "NetworkAndSharingCenter",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.NetworkAndSharingCenter"
- },
- {
- "Name": "NetworkConnection",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppControlPanel",
- "Command": "control netconnections"
- },
- {
- "Name": "NetworkSetupWizard",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppControlPanel",
- "AltNames": [ "netsetup.cpl" ],
- "Command": "control netsetup.cpl"
- },
- {
- "Name": "OdbcDataSourceAdministrator32Bit",
- "Areas": [ "AreaSystemAndSecurity", "AreaAdministrativeTools" ],
- "Type": "AppControlPanel",
- "AltNames": [ "odbccp32.cpl" ],
- "Command": "%windir%/syswow64/odbcad32.exe"
- },
- {
- "Name": "OdbcDataSourceAdministrator64Bit",
- "Areas": [ "AreaSystemAndSecurity", "AreaAdministrativeTools" ],
- "Type": "AppControlPanel",
- "Command": "%windir%/system32/odbcad32.exe"
- },
- {
- "Name": "OfflineFiles",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.OfflineFiles"
- },
- {
- "Name": "ParentalControls",
- "Areas": [ "AreaUserAccounts" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.ParentalControls"
- },
- {
- "Name": "PenAndInputDevices",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.PenAndInputDevices"
- },
- {
- "Name": "PenAndTouch",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.PenAndTouch"
- },
- {
- "Name": "PeopleNearMe",
- "Areas": [ "AreaUserAccounts" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.PeopleNearMe"
- },
- {
- "Name": "PerformanceInformationAndTools",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.PerformanceInformationAndTools"
- },
- {
- "Name": "PhoneAndModemOptions",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.PhoneAndModemOptions"
- },
- {
- "Name": "PhoneAndModem",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppControlPanel",
- "AltNames": [ "modem.cpl" ],
- "Command": "control /name Microsoft.PhoneAndModem"
- },
- {
- "Name": "PowerOptions",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "AltNames": [ "powercfg.cpl" ],
- "Command": "control /name Microsoft.PowerOptions"
- },
- {
- "Name": "Printers",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.Printers"
- },
- {
- "Name": "ProblemReportsAndSolutions",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.ProblemReportsAndSolutions"
- },
- {
- "Name": "ProgramsAndFeatures",
- "Areas": [ "AreaPrograms" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.ProgramsAndFeatures"
- },
- {
- "Name": "Recovery",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.Recovery"
- },
- {
- "Name": "RegionAndLanguage",
- "Areas": [ "AreaClockAndRegion" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.RegionAndLanguage"
- },
- {
- "Name": "RemoteAppAndDesktopConnections",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.RemoteAppAndDesktopConnections"
- },
- {
- "Name": "ScannersAndCameras",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "AltNames": [ "sticpl.cpl" ],
- "Command": "control /name Microsoft.ScannersAndCameras"
- },
- {
- "Name": "ScheduledTasks",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "AltNames": [ "schedtasks" ],
- "Command": "control schedtasks"
- },
- {
- "Name": "SecurityCenter",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.SecurityCenter"
- },
- {
- "Name": "Sound",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.Sound"
- },
- {
- "Name": "SpeechRecognition",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.SpeechRecognition"
- },
- {
- "Name": "SyncCenter",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.SyncCenter"
- },
- {
- "Name": "System",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "AltNames": [ "sysdm.cpl" ],
- "Command": "control sysdm.cpl"
- },
- {
- "Name": "TabletPcSettings",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.TabletPCSettings"
- },
- {
- "Name": "TextToSpeech",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.TextToSpeech"
- },
- {
- "Name": "UserAccounts",
- "Areas": [ "AreaUserAccounts" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.UserAccounts"
- },
- {
- "Name": "WelcomeCenter",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.WelcomeCenter"
- },
- {
- "Name": "WindowsAnytimeUpgrade",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.WindowsAnytimeUpgrade"
- },
- {
- "Name": "WindowsCardSpace",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.CardSpace"
- },
- {
- "Name": "WindowsDefender",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.WindowsDefender"
- },
- {
- "Name": "WindowsFirewall",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.WindowsFirewall"
- },
- {
- "Name": "WindowsMobilityCenter",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppControlPanel",
- "Command": "control /name Microsoft.MobilityCenter"
- },
- {
- "Name": "DisplayProperties",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "AltNames": [ "desk.cpl" ],
- "Command": "control Desk.cpl"
- },
- {
- "Name": "FindFast",
- "Areas": [ "AreaSystemAndSecurity" ],
- "Type": "AppControlPanel",
- "AltNames": [ "findfast.cpl" ],
- "Command": "control FindFast.cpl"
- },
- {
- "Name": "RegionalSettingsProperties",
- "Areas": [ "AreaEaseOfAccess" ],
- "Type": "AppControlPanel",
- "AltNames": [ "intl.cpl" ],
- "Command": "control Intl.cpl"
- },
- {
- "Name": "JoystickProperties",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "AltNames": [ "joy.cpl" ],
- "Command": "control Joy.cpl"
- },
- {
- "Name": "MouseFontsKeyboardAndPrintersProperties",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "AltNames": [ "main.cpl" ],
- "Command": "control Main.cpl"
- },
- {
- "Name": "MultimediaProperties",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "AltNames": [ "mmsys.cpl" ],
- "Command": "control Mmsys.cpl"
- },
- {
- "Name": "NetworkProperties",
- "Areas": [ "AreaNetworkAndInternet" ],
- "Type": "AppControlPanel",
- "AltNames": [ "netcpl.cpl" ],
- "Command": "control Netcpl.cpl"
- },
- {
- "Name": "PasswordProperties",
- "Areas": [ "AreaUserAccounts" ],
- "Type": "AppControlPanel",
- "AltNames": [ "password.cpl" ],
- "Command": "control Password.cpl"
- },
- {
- "Name": "SystemPropertiesAndAddNewHardwareWizard",
- "Areas": [ "AreaHardwareAndSound" ],
- "Type": "AppControlPanel",
- "AltNames": [ "sysdm.cpl" ],
- "Command": "control Sysdm.cpl"
- },
- {
- "Name": "DesktopThemes",
- "Areas": [ "AreaAppearanceAndPersonalization" ],
- "Type": "AppControlPanel",
- "AltNames": [ "themes.cpl" ],
- "Command": "control Themes.cpl"
- },
- {
- "Name": "MicrosoftMailPostOffice",
- "Areas": [ "AreaPrograms" ],
- "Type": "AppControlPanel",
- "AltNames": [ "wgpocpl.cpl" ],
- "Command": "control Wgpocpl.cpl"
- }
-]}
+ {
+ "Name": "OpenControlPanel",
+ "Type": "AppControlPanel",
+ "Command": "control.exe",
+ "ShowAsFirstResult": true
+ },
+ {
+ "Name": "AccessWorkOrSchool",
+ "Areas": [ "AreaAccounts" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Workplace" ],
+ "Command": "ms-settings:workplace"
+ },
+ {
+ "Name": "EmailAndAppAccounts",
+ "Areas": [ "AreaAccounts" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:emailandaccounts"
+ },
+ {
+ "Name": "FamilyAndOtherPeople",
+ "Areas": [ "AreaAccounts" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "OtherUsers" ],
+ "Command": "ms-settings:otherusers"
+ },
+ {
+ "Name": "SetUpKiosk",
+ "Areas": [ "AreaAccounts" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "AssignedAccess" ],
+ "Command": "ms-settings:assignedaccess"
+ },
+ {
+ "Name": "SignInOptions",
+ "Areas": [ "AreaAccounts" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:signinoptions"
+ },
+ {
+ "Name": "SignInOptionsDynamicLock",
+ "Areas": [ "AreaAccounts" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:signinoptions-dynamiclock"
+ },
+ {
+ "Name": "SyncYourSettings",
+ "Areas": [ "AreaAccounts" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:sync"
+ },
+ {
+ "Name": "WindowsHelloSetupFace",
+ "Areas": [ "AreaAccounts" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:signinoptions-launchfaceenrollment"
+ },
+ {
+ "Name": "WindowsHelloSetupFingerprint",
+ "Areas": [ "AreaAccounts" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:signinoptions-launchfingerprintenrollment"
+ },
+ {
+ "Name": "YourInfo",
+ "Areas": [ "AreaAccounts" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:yourinfo"
+ },
+ {
+ "Name": "AppsAndFeatures",
+ "Areas": [ "AreaApps" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:appsfeatures"
+ },
+ {
+ "Name": "AppFeatures",
+ "Areas": [ "AreaApps" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:appsfeatures-app"
+ },
+ {
+ "Name": "AppsForWebsites",
+ "Areas": [ "AreaApps" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:appsforwebsites"
+ },
+ {
+ "Name": "DefaultApps",
+ "Areas": [ "AreaApps" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:defaultapps"
+ },
+ {
+ "Name": "ManageOptionalFeatures",
+ "Areas": [ "AreaApps" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:optionalfeatures"
+ },
+ {
+ "Name": "OfflineMaps",
+ "Areas": [ "AreaApps" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:maps"
+ },
+ {
+ "Name": "OfflineMapsDownloadMaps",
+ "Areas": [ "AreaApps" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:maps-downloadmaps"
+ },
+ {
+ "Name": "StartupApps",
+ "Areas": [ "AreaApps" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:startupapps"
+ },
+ {
+ "Name": "VideoPlayback",
+ "Areas": [ "AreaApps" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:videoplayback"
+ },
+ {
+ "Name": "Notifications",
+ "Areas": [ "AreaCortana" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:cortana-notifications"
+ },
+ {
+ "Name": "MoreDetails",
+ "Areas": [ "AreaCortana" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:cortana-moredetails"
+ },
+ {
+ "Name": "PermissionsAndHistory",
+ "Areas": [ "AreaCortana" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:cortana-permissions"
+ },
+ {
+ "Name": "WindowsSearch",
+ "Areas": [ "AreaCortana" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:cortana-windowssearch"
+ },
+ {
+ "Name": "CortanaLanguage",
+ "Areas": [ "AreaCortana" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Talk" ],
+ "Command": "ms-settings:cortana-language"
+ },
+ {
+ "Name": "Cortana",
+ "Areas": [ "AreaCortana" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:cortana"
+ },
+ {
+ "Name": "TalkToCortana",
+ "Areas": [ "AreaCortana" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:cortana-talktocortana"
+ },
+ {
+ "Name": "AutoPlay",
+ "Areas": [ "AreaDevices" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:autoplay"
+ },
+ {
+ "Name": "Bluetooth",
+ "Areas": [ "AreaDevices" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:bluetooth"
+ },
+ {
+ "Name": "ConnectedDevices",
+ "Areas": [ "AreaDevices" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:connecteddevices"
+ },
+ {
+ "Name": "DefaultCamera",
+ "Areas": [ "AreaDevices" ],
+ "Type": "AppSettingsApp",
+ "DeprecatedInBuild": 17763,
+ "Note": "NoteDeprecated17763",
+ "Command": "ms-settings:camera"
+ },
+ {
+ "Name": "MouseAndTouchpad",
+ "Areas": [ "AreaDevices" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteTouchpad",
+ "Command": "ms-settings:mousetouchpad"
+ },
+ {
+ "Name": "PenAndWindowsInk",
+ "Areas": [ "AreaDevices" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:pen"
+ },
+ {
+ "Name": "PrintersAndScanners",
+ "Areas": [ "AreaDevices" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:printers"
+ },
+ {
+ "Name": "Touchpad",
+ "Areas": [ "AreaDevices" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteTouchpad",
+ "Command": "ms-settings:devices-touchpad"
+ },
+ {
+ "Name": "Typing",
+ "Areas": [ "AreaDevices" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:typing"
+ },
+ {
+ "Name": "Usb",
+ "Areas": [ "AreaDevices" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:usb"
+ },
+ {
+ "Name": "Wheel",
+ "Areas": [ "AreaDevices" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteDialPaired",
+ "Command": "ms-settings:wheel"
+ },
+ {
+ "Name": "Phone",
+ "Areas": [ "AreaPhone" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "MobileDevices" ],
+ "Command": "ms-settings:mobile-devices"
+ },
+ {
+ "Name": "Audio",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Mono", "Volume", "AudioAlerts" ],
+ "Command": "ms-settings:easeofaccess-audio"
+ },
+ {
+ "Name": "ClosedCaptions",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:easeofaccess-closedcaptioning"
+ },
+ {
+ "Name": "ColorFilters",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "InvertedColors", "Grayscale", "RedGreen", "BlueYellow", "GreenWeek", "RedWeek", "deuteranopia", "protanopia", "tritanopia" ],
+ "Command": "ms-settings:easeofaccess-colorfilter"
+ },
+ {
+ "Name": "MousePointer",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "TouchFeedback" ],
+ "Command": "ms-settings:easeofaccess-MousePointer"
+ },
+ {
+ "Name": "Display",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Transparency", "Animations", "ScrollBars", "Size" ],
+ "Command": "ms-settings:easeofaccess-display"
+ },
+ {
+ "Name": "EyeControl",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:easeofaccess-eyecontrol"
+ },
+ {
+ "Name": "Fonts",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "DeprecatedInBuild": 17763,
+ "Note": "NoteDeprecated17763",
+ "Command": "ms-settings:fonts"
+ },
+ {
+ "Name": "HighContrast",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:easeofaccess-highcontrast"
+ },
+ {
+ "Name": "Keyboard",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "PrintScreen", "Shortcuts", "OnScreen", "Keys", "ScrollLock", "CapsLock", "NumLock" ],
+ "Command": "ms-settings:easeofaccess-keyboard"
+ },
+ {
+ "Name": "Magnifier",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Zoom" ],
+ "Command": "ms-settings:easeofaccess-magnifier"
+ },
+ {
+ "Name": "Mouse",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Keypad", "Touch" ],
+ "Command": "ms-settings:easeofaccess-mouse"
+ },
+ {
+ "Name": "Narrator",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:easeofaccess-narrator"
+ },
+ {
+ "Name": "OtherOptions",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "DeprecatedInBuild": 17763,
+ "Note": "NoteDeprecated17763",
+ "Command": "ms-settings:easeofaccess-otheroptions"
+ },
+ {
+ "Name": "Speech",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Recognition", "Talk" ],
+ "Command": "ms-settings:easeofaccess-speechrecognition"
+ },
+ {
+ "Name": "Extras",
+ "Areas": [ "AreaExtras" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteThirdParty",
+ "Command": "ms-settings:extras"
+ },
+ {
+ "Name": "Broadcasting",
+ "Areas": [ "AreaGaming" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:gaming-broadcasting"
+ },
+ {
+ "Name": "GameBar",
+ "Areas": [ "AreaGaming" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:gaming-gamebar"
+ },
+ {
+ "Name": "GameDvr",
+ "Areas": [ "AreaGaming" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:gaming-gamedvr"
+ },
+ {
+ "Name": "GameMode",
+ "Areas": [ "AreaGaming" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:gaming-gamemode"
+ },
+ {
+ "Name": "PlayingGameFullScreen",
+ "Areas": [ "AreaGaming" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "QuietMomentsGame" ],
+ "Command": "ms-settings:quietmomentsgame"
+ },
+ {
+ "Name": "TruePlay",
+ "Areas": [ "AreaGaming" ],
+ "Type": "AppSettingsApp",
+ "DeprecatedInBuild": 17763,
+ "Note": "NoteDeprecated17763",
+ "Command": "ms-settings:gaming-trueplay"
+ },
+ {
+ "Name": "XboxNetworking",
+ "Areas": [ "AreaGaming" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:gaming-xboxnetworking"
+ },
+ {
+ "Name": "AudioAndSpeech",
+ "Areas": [ "AreaMixedReality" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "HolographicAudio" ],
+ "Note": "NoteMixedReality",
+ "Command": "ms-settings:holographic-audio"
+ },
+ {
+ "Name": "Environment",
+ "Areas": [ "AreaMixedReality" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "HolographicEnvironment" ],
+ "Note": "NoteMixedReality",
+ "Command": "ms-settings:privacy-holographic-environment"
+ },
+ {
+ "Name": "HeadsetDisplay",
+ "Areas": [ "AreaMixedReality" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "HolographicHeadset" ],
+ "Note": "NoteMixedReality",
+ "Command": "ms-settings:holographic-headset"
+ },
+ {
+ "Name": "Uninstall",
+ "Areas": [ "AreaMixedReality" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "HolographicManagement" ],
+ "Note": "NoteMixedReality",
+ "Command": "ms-settings:holographic-management"
+ },
+ {
+ "Name": "AirplaneMode",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:network-airplanemode"
+ },
+ {
+ "Name": "Proximity",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:proximity"
+ },
+ {
+ "Name": "CellularAndSim",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:network-cellular"
+ },
+ {
+ "Name": "DataUsage",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:datausage"
+ },
+ {
+ "Name": "DialUp",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:network-dialup"
+ },
+ {
+ "Name": "DirectAccess",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteDirectAccess",
+ "Command": "ms-settings:network-directaccess"
+ },
+ {
+ "Name": "Ethernet",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "DNS", "Sdns", "SecureDNS", "Gateway", "Dhcp", "Ip" ],
+ "Command": "ms-settings:network-ethernet"
+ },
+ {
+ "Name": "ManageKnownNetworks",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "WiFiSettings", "ShortNameWiFi" ],
+ "Note": "NoteWiFiAdapter",
+ "Command": "ms-settings:network-wifisettings"
+ },
+ {
+ "Name": "MobileHotspot",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:network-mobilehotspot"
+ },
+ {
+ "Name": "NFC",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "NFCTransactions" ],
+ "Command": "ms-settings:nfctransactions"
+ },
+ {
+ "Name": "Proxy",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:network-proxy"
+ },
+ {
+ "Name": "NetworkStatus",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:network-status"
+ },
+ {
+ "Name": "Network",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "DNS", "Sdns", "SecureDNS", "Gateway", "Dhcp", "Ip" ],
+ "Command": "ms-settings:network"
+ },
+ {
+ "Name": "Vpn",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:network-vpn"
+ },
+ {
+ "Name": "WiFi",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Wireless", "MeteredConnection", "ShortNameWiFi" ],
+ "Note": "NoteWiFiAdapter",
+ "Command": "ms-settings:network-wifi"
+ },
+ {
+ "Name": "WiFiCalling",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "ShortNameWiFi" ],
+ "Note": "NoteWiFiAdapter",
+ "Command": "ms-settings:network-wificalling"
+ },
+ {
+ "Name": "Background",
+ "Areas": [ "AreaPersonalization" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Wallpaper", "Picture", "Image" ],
+ "Command": "ms-settings:personalization-background"
+ },
+ {
+ "Name": "ChooseWhichFoldersAppearOnStart",
+ "Areas": [ "AreaPersonalization" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "StartPlaces" ],
+ "Command": "ms-settings:personalization-start-places"
+ },
+ {
+ "Name": "Colors",
+ "Areas": [ "AreaPersonalization" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "DarkMode", "LightMode", "DarkColor", "LightColor", "AppColor", "TaskbarColor", "WindowBorder" ],
+ "Command": "ms-settings:colors"
+ },
+ {
+ "Name": "Glance",
+ "Areas": [ "AreaPersonalization" ],
+ "Type": "AppSettingsApp",
+ "DeprecatedInBuild": 17763,
+ "Note": "NoteDeprecated17763",
+ "Command": "ms-settings:personalization-glance"
+ },
+ {
+ "Name": "LockScreen",
+ "Areas": [ "AreaPersonalization" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Image", "Picture" ],
+ "Command": "ms-settings:lockscreen"
+ },
+ {
+ "Name": "NavigationBar",
+ "Areas": [ "AreaPersonalization" ],
+ "Type": "AppSettingsApp",
+ "DeprecatedInBuild": 17763,
+ "Note": "NoteDeprecated17763",
+ "Command": "ms-settings:personalization-navbar"
+ },
+ {
+ "Name": "PersonalizationCategory",
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:personalization"
+ },
+ {
+ "Name": "Start",
+ "Areas": [ "AreaPersonalization" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:personalization-start"
+ },
+ {
+ "Name": "Taskbar",
+ "Areas": [ "AreaPersonalization" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:taskbar"
+ },
+ {
+ "Name": "Themes",
+ "Areas": [ "AreaPersonalization" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:themes"
+ },
+ {
+ "Name": "AddYourPhone",
+ "Areas": [ "AreaPhone" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:mobile-devices-addphone",
+ "Note": "NoteAddYourPhone"
+ },
+ {
+ "Name": "DirectOpenYourPhone",
+ "Areas": [ "AreaPhone" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:mobile-devices-addphone-direct",
+ "Note": "NoteAddYourPhone"
+ },
+ {
+ "Name": "AccessoryApps",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "DeprecatedInBuild": 17763,
+ "Note": "NoteDeprecated17763",
+ "Command": "ms-settings:privacy-accessoryapps"
+ },
+ {
+ "Name": "AccountInfo",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-accountinfo"
+ },
+ {
+ "Name": "ActivityHistory",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-activityhistory"
+ },
+ {
+ "Name": "AdvertisingId",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "DeprecatedInBuild": 17763,
+ "Note": "NoteDeprecated17763",
+ "Command": "ms-settings:privacy-advertisingid"
+ },
+ {
+ "Name": "AppDiagnostics",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-appdiagnostics"
+ },
+ {
+ "Name": "AutomaticFileDownloads",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-automaticfiledownloads"
+ },
+ {
+ "Name": "BackgroundApps",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-backgroundapps"
+ },
+ {
+ "Name": "Calendar",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-calendar"
+ },
+ {
+ "Name": "CallHistory",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-callhistory"
+ },
+ {
+ "Name": "Camera",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-webcam"
+ },
+ {
+ "Name": "Contacts",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-contacts"
+ },
+ {
+ "Name": "Documents",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-documents"
+ },
+ {
+ "Name": "Email",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-email"
+ },
+ {
+ "Name": "EyeTracker",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteEyetrackerHardware",
+ "Command": "ms-settings:privacy-eyetracker"
+ },
+ {
+ "Name": "FeedbackAndDiagnostics",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-feedback"
+ },
+ {
+ "Name": "FileSystem",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-broadfilesystemaccess"
+ },
+ {
+ "Name": "General",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-general"
+ },
+ {
+ "Name": "InkingAndTyping",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "SpeechTyping" ],
+ "Command": "ms-settings:privacy-speechtyping"
+ },
+ {
+ "Name": "Location",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-location"
+ },
+ {
+ "Name": "Messaging",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-messaging"
+ },
+ {
+ "Name": "Microphone",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-microphone"
+ },
+ {
+ "Name": "Motion",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-motion"
+ },
+ {
+ "Name": "Notifications",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-notifications"
+ },
+ {
+ "Name": "OtherDevices",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "CustomDevices" ],
+ "Command": "ms-settings:privacy-customdevices"
+ },
+ {
+ "Name": "PhoneCalls",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-phonecalls"
+ },
+ {
+ "Name": "Pictures",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-pictures"
+ },
+ {
+ "Name": "Radios",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-radios"
+ },
+ {
+ "Name": "Speech",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-speech"
+ },
+ {
+ "Name": "Tasks",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-tasks"
+ },
+ {
+ "Name": "Videos",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-videos"
+ },
+ {
+ "Name": "VoiceActivation",
+ "Areas": [ "AreaPrivacy" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:privacy-voiceactivation"
+ },
+ {
+ "Name": "Accounts",
+ "Areas": [ "AreaSurfaceHub" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:surfacehub-accounts"
+ },
+ {
+ "Name": "SessionCleanup",
+ "Areas": [ "AreaSurfaceHub" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:surfacehub-sessioncleanup"
+ },
+ {
+ "Name": "TeamConferencing",
+ "Areas": [ "AreaSurfaceHub" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "calling" ],
+ "Command": "ms-settings:surfacehub-calling"
+ },
+ {
+ "Name": "TeamDeviceManagement",
+ "Areas": [ "AreaSurfaceHub" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:surfacehub-devicemanagenent"
+ },
+ {
+ "Name": "WelcomeScreen",
+ "Areas": [ "AreaSurfaceHub" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:surfacehub-welcome"
+ },
+ {
+ "Name": "About",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Ram", "Processor", "Os", "Id", "Edition", "Version" ],
+ "Command": "ms-settings:about"
+ },
+ {
+ "Name": "AdvancedDisplaySettings",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteDisplayGraphics",
+ "Command": "ms-settings:display-advanced"
+ },
+ {
+ "Name": "AppVolumeAndDevicePreferences",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "IntroducedInBuild": 18362,
+ "Note": "NoteSince18362",
+ "Command": "ms-settings:apps-volume"
+ },
+ {
+ "Name": "BatterySaver",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteBattery",
+ "Command": "ms-settings:batterysaver"
+ },
+ {
+ "Name": "BatterySaverSettings",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteBattery",
+ "Command": "ms-settings:batterysaver-settings"
+ },
+ {
+ "Name": "BatteryUse",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "BatterySaverUsageDetails" ],
+ "Note": "NoteBattery",
+ "Command": "ms-settings:batterysaver-usagedetails"
+ },
+ {
+ "Name": "Clipboard",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:clipboard"
+ },
+ {
+ "Name": "Display",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "NightLight", "BlueLight", "WarmerColor", "RedEye" ],
+ "Command": "ms-settings:display"
+ },
+ {
+ "Name": "DefaultSaveLocations",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:savelocations"
+ },
+ {
+ "Name": "ScreenRotation",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:screenrotation"
+ },
+ {
+ "Name": "DuplicatingMyDisplay",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Presentation" ],
+ "Command": "ms-settings:quietmomentspresentation"
+ },
+ {
+ "Name": "DuringTheseHours",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Scheduled" ],
+ "Command": "ms-settings:quietmomentsscheduled"
+ },
+ {
+ "Name": "Encryption",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:deviceencryption"
+ },
+ {
+ "Name": "FocusAssistQuietHours",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:quiethours"
+ },
+ {
+ "Name": "FocusAssistQuietMoments",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:quietmomentshome"
+ },
+ {
+ "Name": "GraphicsSettings",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "AdvancedGraphics" ],
+ "Note": "NoteAdvancedGraphics",
+ "Command": "ms-settings:display-advancedgraphics"
+ },
+ {
+ "Name": "Messaging",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:messaging"
+ },
+ {
+ "Name": "Multitasking",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Timeline", "Tab", "AltAndTab", "VirtualDesktops" ],
+ "Command": "ms-settings:multitasking"
+ },
+ {
+ "Name": "NightLightSettings",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:nightlight"
+ },
+ {
+ "Name": "PhoneDefaultApps",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:phone-defaultapps"
+ },
+ {
+ "Name": "ProjectingToThisPc",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:project"
+ },
+ {
+ "Name": "SharedExperiences",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "Crossdevice" ],
+ "Command": "ms-settings:crossdevice"
+ },
+ {
+ "Name": "TabletMode",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:tabletmode"
+ },
+ {
+ "Name": "Taskbar",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:taskbar"
+ },
+ {
+ "Name": "NotificationsAndActions",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:notifications"
+ },
+ {
+ "Name": "RemoteDesktop",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:remotedesktop"
+ },
+ {
+ "Name": "Phone",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "DeprecatedInBuild": 17763,
+ "Note": "NoteDeprecated17763",
+ "Command": "ms-settings:phone"
+ },
+ {
+ "Name": "PowerAndSleep",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:powersleep"
+ },
+ {
+ "Name": "Sound",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:sound"
+ },
+ {
+ "Name": "StorageSense",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:storagesense"
+ },
+ {
+ "Name": "StoragePolicies",
+ "Areas": [ "AreaSystem" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:storagepolicies"
+ },
+ {
+ "Name": "DateAndTime",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:dateandtime"
+ },
+ {
+ "Name": "JapanImeSettings",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "jpnime" ],
+ "Note": "NoteImeJapan",
+ "Command": "ms-settings:regionlanguage-jpnime"
+ },
+ {
+ "Name": "Region",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "RegionFormatting" ],
+ "Command": "ms-settings:regionformatting"
+ },
+ {
+ "Name": "Keyboard",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:keyboard"
+ },
+ {
+ "Name": "RegionalLanguage",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:regionlanguage"
+ },
+ {
+ "Name": "BopomofoIme",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "bpmf" ],
+ "Command": "ms-settings:regionlanguage-bpmfime"
+ },
+ {
+ "Name": "CangjieIme",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:regionlanguage-cangjieime"
+ },
+ {
+ "Name": "PinyinImeSettingsDomainLexicon",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:regionlanguage-chsime-pinyin-domainlexicon"
+ },
+ {
+ "Name": "PinyinImeSettingsKeyConfiguration",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:regionlanguage-chsime-pinyin-keyconfig"
+ },
+ {
+ "Name": "PinyinImeSettingsUdp",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:regionlanguage-chsime-pinyin-udp"
+ },
+ {
+ "Name": "WubiImeSettingsUdp",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:regionlanguage-chsime-wubi-udp"
+ },
+ {
+ "Name": "Quickime",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:regionlanguage-quickime"
+ },
+ {
+ "Name": "PinyinImeSettings",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteImePinyin",
+ "Command": "ms-settings:regionlanguage-chsime-pinyin"
+ },
+ {
+ "Name": "Speech",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:speech"
+ },
+ {
+ "Name": "WubiImeSettings",
+ "Areas": [ "AreaTimeAndLanguage" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteImeWubi",
+ "Command": "ms-settings:regionlanguage-chsime-wubi"
+ },
+ {
+ "Name": "Activation",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:activation"
+ },
+ {
+ "Name": "Backup",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:backup"
+ },
+ {
+ "Name": "DeliveryOptimization",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:delivery-optimization"
+ },
+ {
+ "Name": "FindMyDevice",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:findmydevice"
+ },
+ {
+ "Name": "ForDevelopers",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:developers"
+ },
+ {
+ "Name": "Recovery",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:recovery"
+ },
+ {
+ "Name": "Troubleshoot",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:troubleshoot"
+ },
+ {
+ "Name": "WindowsSecurity",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "AltNames": [ "WindowsDefender", "Firewall", "Virus", "CoreIsolation", "SecurityProcessor", "IsolatedBrowsing", "ExploitProtection" ],
+ "Command": "ms-settings:windowsdefender"
+ },
+ {
+ "Name": "WindowsInsiderProgram",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteEnrolledWIP",
+ "Command": "ms-settings:windowsinsider"
+ },
+ {
+ "Name": "WindowsUpdate",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:windowsupdate"
+ },
+ {
+ "Name": "WindowsUpdateCheckForUpdates",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:windowsupdate-action"
+ },
+ {
+ "Name": "WindowsUpdateAdvancedOptions",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:windowsupdate-options"
+ },
+ {
+ "Name": "WindowsUpdateRestartOptions",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:windowsupdate-restartoptions"
+ },
+ {
+ "Name": "WindowsUpdateViewUpdateHistory",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "Command": "ms-settings:windowsupdate-history"
+ },
+ {
+ "Name": "WindowsUpdateViewOptionalUpdates",
+ "Areas": [ "AreaUpdateAndSecurity" ],
+ "Type": "AppSettingsApp",
+ "IntroducedInBuild": 19041,
+ "Note": "NoteSince19041",
+ "Command": "ms-settings:windowsupdate-optionalupdates"
+ },
+ {
+ "Name": "WorkplaceProvisioning",
+ "Areas": [ "AreaUserAccounts" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteWorkplaceProvisioning",
+ "Command": "ms-settings:workplace-provisioning"
+ },
+ {
+ "Name": "Provisioning",
+ "Areas": [ "AreaUserAccounts" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteMobileProvisioning",
+ "Command": "ms-settings:provisioning"
+ },
+ {
+ "Name": "WindowsAnywhere",
+ "Areas": [ "AreaUserAccounts" ],
+ "Type": "AppSettingsApp",
+ "Note": "NoteWindowsAnywhere",
+ "Command": "ms-settings:windowsanywhere"
+ },
+ {
+ "Name": "AccessibilityOptions",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "access.cpl" ],
+ "Command": "control access.cpl"
+ },
+ {
+ "Name": "ActionCenter",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.ActionCenter"
+ },
+ {
+ "Name": "AddHardware",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.AddHardware"
+ },
+ {
+ "Name": "AddRemovePrograms",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "appwiz.cpl" ],
+ "Command": "control appwiz.cpl"
+ },
+ {
+ "Name": "AdministrativeTools",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.AdministrativeTools"
+ },
+ {
+ "Name": "AutoPlay",
+ "Areas": [ "AreaPrograms" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.AutoPlay"
+ },
+ {
+ "Name": "BackupAndRestore",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.BackupAndRestore"
+ },
+ {
+ "Name": "BiometricDevices",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.BiometricDevices"
+ },
+ {
+ "Name": "BitLockerDriveEncryption",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.BitLockerDriveEncryption"
+ },
+ {
+ "Name": "BluetoothDevices",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.BluetoothDevices"
+ },
+ {
+ "Name": "ColorManagement",
+ "Areas": [ "AreaAppearanceAndPersonalization" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.ColorManagement"
+ },
+ {
+ "Name": "CredentialManager",
+ "Areas": [ "AreaUserAccounts" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "Password" ],
+ "Command": "control /name Microsoft.CredentialManager"
+ },
+ {
+ "Name": "ClientServiceForNetWare",
+ "Areas": [ "AreaPrograms" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "nwc.cpl" ],
+ "Command": "control nwc.cpl"
+ },
+ {
+ "Name": "DateAndTime",
+ "Areas": [ "AreaClockAndRegion" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "timedate.cpl" ],
+ "Command": "control /name Microsoft.DateAndTime"
+ },
+ {
+ "Name": "DefaultLocation",
+ "Areas": [ "AreaClockAndRegion" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.DefaultLocation"
+ },
+ {
+ "Name": "DefaultPrograms",
+ "Areas": [ "AreaPrograms" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.DefaultPrograms"
+ },
+ {
+ "Name": "DeviceManager",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.DeviceManager"
+ },
+ {
+ "Name": "DevicesAndPrinters",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.DevicesAndPrinters"
+ },
+ {
+ "Name": "EaseOfAccessCenter",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.EaseOfAccessCenter"
+ },
+ {
+ "Name": "FolderOptions",
+ "Areas": [ "AreaAppearanceAndPersonalization" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.FolderOptions"
+ },
+ {
+ "Name": "Fonts",
+ "Areas": [ "AreaAppearanceAndPersonalization" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.Fonts"
+ },
+ {
+ "Name": "GameControllers",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.GameControllers"
+ },
+ {
+ "Name": "GetPrograms",
+ "Areas": [ "AreaPrograms" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.GetPrograms"
+ },
+ {
+ "Name": "GettingStarted",
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.GettingStarted"
+ },
+ {
+ "Name": "HomeGroup",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.HomeGroup"
+ },
+ {
+ "Name": "IndexingOptions",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.IndexingOptions"
+ },
+ {
+ "Name": "Infrared",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.Infrared"
+ },
+ {
+ "Name": "InternetOptions",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "inetcpl.cpl" ],
+ "Command": "control /name Microsoft.InternetOptions"
+ },
+ {
+ "Name": "MailMicrosoftExchangeOrWindowsMessaging",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "mlcfg32.cpl" ],
+ "Command": "control mlcfg32.cpl"
+ },
+ {
+ "Name": "Mouse",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.Mouse"
+ },
+ {
+ "Name": "NetworkAndSharingCenter",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.NetworkAndSharingCenter"
+ },
+ {
+ "Name": "NetworkConnection",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppControlPanel",
+ "Command": "control netconnections"
+ },
+ {
+ "Name": "NetworkSetupWizard",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "netsetup.cpl" ],
+ "Command": "control netsetup.cpl"
+ },
+ {
+ "Name": "OdbcDataSourceAdministrator32Bit",
+ "Areas": [ "AreaSystemAndSecurity", "AreaAdministrativeTools" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "odbccp32.cpl" ],
+ "Command": "%windir%/syswow64/odbcad32.exe"
+ },
+ {
+ "Name": "OdbcDataSourceAdministrator64Bit",
+ "Areas": [ "AreaSystemAndSecurity", "AreaAdministrativeTools" ],
+ "Type": "AppControlPanel",
+ "Command": "%windir%/system32/odbcad32.exe"
+ },
+ {
+ "Name": "OfflineFiles",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.OfflineFiles"
+ },
+ {
+ "Name": "ParentalControls",
+ "Areas": [ "AreaUserAccounts" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.ParentalControls"
+ },
+ {
+ "Name": "PenAndInputDevices",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.PenAndInputDevices"
+ },
+ {
+ "Name": "PenAndTouch",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.PenAndTouch"
+ },
+ {
+ "Name": "PeopleNearMe",
+ "Areas": [ "AreaUserAccounts" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.PeopleNearMe"
+ },
+ {
+ "Name": "PerformanceInformationAndTools",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.PerformanceInformationAndTools"
+ },
+ {
+ "Name": "PhoneAndModemOptions",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.PhoneAndModemOptions"
+ },
+ {
+ "Name": "PhoneAndModem",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "modem.cpl" ],
+ "Command": "control /name Microsoft.PhoneAndModem"
+ },
+ {
+ "Name": "PowerOptions",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "powercfg.cpl" ],
+ "Command": "control /name Microsoft.PowerOptions"
+ },
+ {
+ "Name": "Printers",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.Printers"
+ },
+ {
+ "Name": "ProblemReportsAndSolutions",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.ProblemReportsAndSolutions"
+ },
+ {
+ "Name": "ProgramsAndFeatures",
+ "Areas": [ "AreaPrograms" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.ProgramsAndFeatures"
+ },
+ {
+ "Name": "Recovery",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.Recovery"
+ },
+ {
+ "Name": "RegionAndLanguage",
+ "Areas": [ "AreaClockAndRegion" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.RegionAndLanguage"
+ },
+ {
+ "Name": "RemoteAppAndDesktopConnections",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.RemoteAppAndDesktopConnections"
+ },
+ {
+ "Name": "ScannersAndCameras",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "sticpl.cpl" ],
+ "Command": "control /name Microsoft.ScannersAndCameras"
+ },
+ {
+ "Name": "ScheduledTasks",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "schedtasks" ],
+ "Command": "control schedtasks"
+ },
+ {
+ "Name": "SecurityCenter",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.SecurityCenter"
+ },
+ {
+ "Name": "Sound",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.Sound"
+ },
+ {
+ "Name": "SpeechRecognition",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.SpeechRecognition"
+ },
+ {
+ "Name": "SyncCenter",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.SyncCenter"
+ },
+ {
+ "Name": "System",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "sysdm.cpl" ],
+ "Command": "control sysdm.cpl"
+ },
+ {
+ "Name": "TabletPcSettings",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.TabletPCSettings"
+ },
+ {
+ "Name": "TextToSpeech",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.TextToSpeech"
+ },
+ {
+ "Name": "UserAccounts",
+ "Areas": [ "AreaUserAccounts" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.UserAccounts"
+ },
+ {
+ "Name": "WelcomeCenter",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.WelcomeCenter"
+ },
+ {
+ "Name": "WindowsAnytimeUpgrade",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.WindowsAnytimeUpgrade"
+ },
+ {
+ "Name": "WindowsCardSpace",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.CardSpace"
+ },
+ {
+ "Name": "WindowsDefender",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.WindowsDefender"
+ },
+ {
+ "Name": "WindowsFirewall",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.WindowsFirewall"
+ },
+ {
+ "Name": "WindowsMobilityCenter",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppControlPanel",
+ "Command": "control /name Microsoft.MobilityCenter"
+ },
+ {
+ "Name": "DisplayProperties",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "desk.cpl" ],
+ "Command": "control Desk.cpl"
+ },
+ {
+ "Name": "FindFast",
+ "Areas": [ "AreaSystemAndSecurity" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "findfast.cpl" ],
+ "Command": "control FindFast.cpl"
+ },
+ {
+ "Name": "RegionalSettingsProperties",
+ "Areas": [ "AreaEaseOfAccess" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "intl.cpl" ],
+ "Command": "control Intl.cpl"
+ },
+ {
+ "Name": "JoystickProperties",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "joy.cpl" ],
+ "Command": "control Joy.cpl"
+ },
+ {
+ "Name": "MouseFontsKeyboardAndPrintersProperties",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "main.cpl" ],
+ "Command": "control Main.cpl"
+ },
+ {
+ "Name": "MultimediaProperties",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "mmsys.cpl" ],
+ "Command": "control Mmsys.cpl"
+ },
+ {
+ "Name": "NetworkProperties",
+ "Areas": [ "AreaNetworkAndInternet" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "netcpl.cpl" ],
+ "Command": "control Netcpl.cpl"
+ },
+ {
+ "Name": "PasswordProperties",
+ "Areas": [ "AreaUserAccounts" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "password.cpl" ],
+ "Command": "control Password.cpl"
+ },
+ {
+ "Name": "SystemPropertiesAndAddNewHardwareWizard",
+ "Areas": [ "AreaHardwareAndSound" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "sysdm.cpl" ],
+ "Command": "control Sysdm.cpl"
+ },
+ {
+ "Name": "DesktopThemes",
+ "Areas": [ "AreaAppearanceAndPersonalization" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "themes.cpl" ],
+ "Command": "control Themes.cpl"
+ },
+ {
+ "Name": "MicrosoftMailPostOffice",
+ "Areas": [ "AreaPrograms" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "wgpocpl.cpl" ],
+ "Command": "control Wgpocpl.cpl"
+ },
+ {
+ "Name": "ChangeUACSettings",
+ "Areas": [ "AreaSystemAndSecurity", "AreaSecurityAndMaintenance" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "UserAccountControlSettings.exe", "UserAccounts", "UAC" ],
+ "Command": "UserAccountControlSettings.exe",
+ "Note": "NoteEditingRequireAdminPrivileges"
+ },
+ {
+ "Name": "EditSystemEnvironmentVariables",
+ "Areas": [ "AreaSystemAndSecurity", "AreaSystemPropertiesAdvanced" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "EditEnvironmentVariables", "SystemVariables", "EnvVars", "SystemEnvVars", "sysdm.cpl" ],
+ "Command": "SystemPropertiesAdvanced.exe",
+ "Note": "NoteEditingRequireAdminPrivileges"
+ },
+ {
+ "Name": "EditUserEnvironmentVariables",
+ "Areas": [ "AreaSystemAndSecurity", "AreaSystemPropertiesAdvanced" ],
+ "Type": "AppControlPanel",
+ "AltNames": [ "UserEnvironmentVariables", "UserVariables", "EnvVars", "UserEnvVars", "sysdm.cpl" ],
+ "Command": "rundll32.exe sysdm.cpl,EditEnvironmentVariables"
+ }
+ ]
+}
diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.schema.json b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.schema.json
index 2e7a281e11..a60e5c5ffd 100644
--- a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.schema.json
+++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.WindowsSettings/WindowsSettings.schema.json
@@ -1,65 +1,73 @@
{
- "$schema": "http://json-schema.org/draft-04/schema",
- "additionalProperties": false,
- "required": [ "Settings" ],
- "properties": {
- "Settings": {
- "description": "A list with all possible windows settings.",
+ "$schema": "http://json-schema.org/draft-04/schema",
+ "additionalProperties": false,
+ "required": [ "Settings" ],
+ "properties": {
+ "$schema": {
+ "description": "Path to the schema file.",
+ "type": "string"
+ },
+ "Settings": {
+ "description": "A list with all possible windows settings.",
+ "type": "array",
+ "items": {
+ "additionalProperties": false,
+ "required": [ "Name", "Command", "Type" ],
+ "type": "object",
+ "properties": {
+ "Name": {
+ "description": "The name of this setting.",
+ "type": "string"
+ },
+ "Areas": {
+ "description": "A list of areas of this setting",
"type": "array",
"items": {
- "additionalProperties": false,
- "required": [ "Name", "Command", "Type" ],
- "type": "object",
- "properties": {
- "Name": {
- "description": "The name of this setting.",
- "type": "string"
- },
- "Areas": {
- "description": "A list of areas of this setting",
- "type": "array",
- "items": {
- "description": "A area of this setting",
- "type": "string",
- "pattern": "^Area"
- }
- },
- "Type": {
- "description": "The type of this setting.",
- "type": "string",
- "pattern": "^App"
- },
- "AltNames": {
- "description": "A list with alternative names for this setting",
- "type": "array",
- "items": {
- "description": "A alternative name for this setting",
- "type": "string"
- }
- },
- "Command": {
- "description": "The command for this setting.",
- "type": "string"
- },
- "Note": {
- "description": "A additional note for this setting.",
- "type": "string",
- "pattern": "^Note"
- },
- "DeprecatedInBuild": {
- "description": "The Windows build since this settings is not longer present.",
- "type": "integer",
- "minimum": 0,
- "maximum": 4294967295
- },
- "IntroducedInBuild": {
- "description": "The minimum need Windows build for this setting.",
- "type": "integer",
- "minimum": 0,
- "maximum": 4294967295
- }
- }
+ "description": "A area of this setting",
+ "type": "string",
+ "pattern": "^Area"
}
+ },
+ "Type": {
+ "description": "The type of this setting.",
+ "type": "string",
+ "pattern": "^App"
+ },
+ "AltNames": {
+ "description": "A list with alternative names for this setting",
+ "type": "array",
+ "items": {
+ "description": "A alternative name for this setting",
+ "type": "string"
+ }
+ },
+ "Command": {
+ "description": "The command for this setting.",
+ "type": "string"
+ },
+ "Note": {
+ "description": "A additional note for this setting.",
+ "type": "string",
+ "pattern": "^Note"
+ },
+ "DeprecatedInBuild": {
+ "description": "The Windows build since this settings is not longer present.",
+ "type": "integer",
+ "minimum": 0,
+ "maximum": 4294967295
+ },
+ "IntroducedInBuild": {
+ "description": "The minimum need Windows build for this setting.",
+ "type": "integer",
+ "minimum": 0,
+ "maximum": 4294967295
+ },
+ "ShowAsFirstResult": {
+ "description": "Use a higher score as normal for this setting to show it as one of the first results.",
+ "type": "boolean"
+ }
}
+ }
}
+ }
}