[PTRun][Settings]Add missing cpl names and MMC/MSC commands (#23695)

* add msc files and mmc

* add missing cpl names

* spell checker

* spell checker 2

* Update Main.cs

* Update ResultHelper.cs

* review feedback and remove ActiveX

* Show mmc note in subtitle

* update docs for mmc note

* fix typo
This commit is contained in:
Heiko 2023-02-14 16:42:17 +01:00 committed by GitHub
parent e4e1b5b43d
commit 44e28886d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 1015 additions and 5 deletions

View File

@ -118,6 +118,7 @@ Avanc
awakeness
awakeversion
AYUV
azman
backtracer
bak
Bashkortostan
@ -163,6 +164,7 @@ BRIGHTGREEN
Browsable
bsd
bstr
bthprops
bti
btn
BTNFACE
@ -193,6 +195,8 @@ CDEF
cdpx
CENTERALIGN
ceq
certlm
certmgr
cguid
changecursor
Changemove
@ -257,11 +261,13 @@ comctl
COMDAT
comdef
comdlg
comexp
cominterop
commandline
COMMANDTITLE
commctrl
Comoros
compmgmt
COMPOSITIONFULL
comsupp
comsuppw
@ -396,11 +402,13 @@ devdocs
devenum
DEVMON
devpkey
devmgmt
DEVSOURCE
DIIRFLAG
dimm
directshow
DISABLEASACTIONKEY
diskmgmt
DISPLAYCHANGE
DISPLAYCONFIG
displayname
@ -499,6 +507,7 @@ Eucla
EUQ
eurochange
eventlog
eventvwr
everytime
evt
EWXFORCE
@ -567,6 +576,7 @@ frankychen
Froml
FROMTOUCH
FSCTL
fsmgmt
FTYPE
Functiondiscoverykeys
Futuna
@ -603,7 +613,9 @@ Globbing
GMEM
GNumber
google
gpedit
gpo
GPT
gpu
GSM
gtm
@ -639,6 +651,7 @@ HCRYPTHASH
HCRYPTPROV
hcwhite
hdc
hdwwiz
hdrop
HEB
Heiko
@ -797,6 +810,7 @@ ipreviewhandler
ipreviewhandlervisualssetfont
IProperty
IPublic
irprops
isbi
ISearch
ISettings
@ -958,6 +972,7 @@ LTRB
LTRREADING
Luhansk
luid
lusrmgr
LWA
lwin
LZero
@ -992,6 +1007,7 @@ MAXIMIZEBOX
MAXSHORTCUTSIZE
maxversiontested
Mbits
MBR
MBs
MBUTTON
MBUTTONDBLCLK
@ -1020,6 +1036,7 @@ mfobjects
mfplat
Mfsensorgroup
mftransform
Mgmt
mic
microsoft
Midl
@ -1041,6 +1058,8 @@ mjpg
mkd
mkdn
mlcfg
mmc
mmcexe
MMdd
mmdeviceapi
mmi
@ -1120,6 +1139,7 @@ NCMBUTTONUP
NCMOUSELEAVE
NCMOUSEMOVE
NCol
ncpa
NCPAINT
NCRBUTTONDBLCLK
NCRBUTTONDOWN
@ -1289,6 +1309,7 @@ pdw
PDWORD
pedrolamas
PERCEIVEDFLAG
perfmon
pesi
peteblois
PEXCEPTION
@ -1321,6 +1342,7 @@ plocm
plugins
pluginsmodel
PMSIHANDLE
Pnp
Pohnpei
Popups
POPUPWINDOW
@ -1363,6 +1385,7 @@ prevpane
prgms
pri
Primorsky
printmanagement
PRINTCLIENT
prm
proactively
@ -1517,6 +1540,7 @@ RRF
rrr
RSAT
rshift
rsop
Rsp
Rstrtmgr
RTB
@ -1560,6 +1584,7 @@ SDKDDK
sdns
searchterm
secauthz
secpol
Secur
securityoverview
segoe
@ -1786,6 +1811,7 @@ tdbuild
TDefault
TDevice
telem
telephon
Templated
templatenamespace
Tenggara
@ -2057,6 +2083,7 @@ wmain
Wman
wmi
WMICIM
wmimgmt
WMKEYDOWN
WMKEYUP
wmp
@ -2084,6 +2111,7 @@ WResize
writefile
Wrk
wrl
wscui
wsf
wsh
wsl
@ -2107,6 +2135,7 @@ XBUTTONDBLCLK
XBUTTONDOWN
XBUTTONUP
xcopy
XControl
XDocument
XElement
XFile

View File

@ -62,6 +62,7 @@ A full entry for the `WindowsSettings.json` looks like:
* The strings for `Name`, `AltNames`, `Areas`, `Type` and `Note` must not contain whitespace(s) or special characters (#, €, $, etc.)
* The strings for `Name`, `AltNames`, `Areas`, `Type` and `Note` are used as ids for the resource file under `Properties\Resources.resx`
* When you add new strings make sure you have added all translations for it.
* If a result has `mmc.exe` as command and the note property is filled, the note is shown in the sub title too. (This is for special MMC results where we don't have a .msc file.)
## Scores

View File

@ -45,7 +45,18 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Helper
AddOptionalToolTip(entry, result);
resultList.Add(result);
// There is a case with MMC snap-ins where we don't have .msc files fort them. Then we need to show the note for this results in subtitle too.
// These results have mmc.exe as command and their note property is filled.
if (entry.Command == "mmc.exe" && !string.IsNullOrEmpty(entry.Note))
{
result.SubTitle = result.SubTitle + $"\u0020\u0020\u002D\u0020\u0020{Resources.Note}: {entry.Note}"; // "\u0020\u0020\u002D\u0020\u0020" = "<space><space><minus><space><space>"
}
// To not show duplicate entries we check the existing results on the list before adding the new entry. Example: Device Manager entry for Control Panel and Device Manager entry for MMC.
if (!resultList.Any(x => x.Title == result.Title))
{
resultList.Add(result);
}
}
SetScores(resultList, query);

View File

@ -294,6 +294,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Microsoft Management Console.
/// </summary>
internal static string AppMMC {
get {
return ResourceManager.GetString("AppMMC", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Apps &amp; Features.
/// </summary>
@ -609,6 +618,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Authorization Manager.
/// </summary>
internal static string AuthorizationManager {
get {
return ResourceManager.GetString("AuthorizationManager", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Automatic file downloads.
/// </summary>
@ -780,6 +798,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to bthprops.cpl.
/// </summary>
internal static string bthprops_cpl {
get {
return ResourceManager.GetString("bthprops.cpl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Calendar.
/// </summary>
@ -843,6 +870,24 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Certificates - Current User.
/// </summary>
internal static string CertificatesCurrentUser {
get {
return ResourceManager.GetString("CertificatesCurrentUser", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Certificates - Local Computer.
/// </summary>
internal static string CertificatesLocalComputer {
get {
return ResourceManager.GetString("CertificatesLocalComputer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Change programs.
/// </summary>
@ -906,6 +951,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to collab.cpl.
/// </summary>
internal static string collab_cpl {
get {
return ResourceManager.GetString("collab.cpl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Color filters.
/// </summary>
@ -942,6 +996,33 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to COM-Objects.
/// </summary>
internal static string ComObjects {
get {
return ResourceManager.GetString("ComObjects", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Component Services.
/// </summary>
internal static string ComponentServices {
get {
return ResourceManager.GetString("ComponentServices", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer Management.
/// </summary>
internal static string ComputerManagement {
get {
return ResourceManager.GetString("ComputerManagement", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Connectable devices.
/// </summary>
@ -1041,6 +1122,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Create and format hard disk partitions.
/// </summary>
internal static string CreateAndFormatHardDiskPartitions {
get {
return ResourceManager.GetString("CreateAndFormatHardDiskPartitions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Credential manager.
/// </summary>
@ -1149,6 +1239,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Windows Defender Firewall with Advanced Security.
/// </summary>
internal static string DefenderFirewallAdvancedSecurity {
get {
return ResourceManager.GetString("DefenderFirewallAdvancedSecurity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Delivery Optimization.
/// </summary>
@ -1203,6 +1302,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Device Manager.
/// </summary>
internal static string DeviceManagerSnapIn {
get {
return ResourceManager.GetString("DeviceManagerSnapIn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Devices and printers.
/// </summary>
@ -1248,6 +1356,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Disk Management.
/// </summary>
internal static string DiskManagement {
get {
return ResourceManager.GetString("DiskManagement", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Display.
/// </summary>
@ -1401,6 +1518,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Event Viewer.
/// </summary>
internal static string EventViewer {
get {
return ResourceManager.GetString("EventViewer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Exploit Protection.
/// </summary>
@ -1500,6 +1626,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Firewall.cpl.
/// </summary>
internal static string Firewall_cpl {
get {
return ResourceManager.GetString("Firewall.cpl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Focus assist - Quiet hours.
/// </summary>
@ -1626,6 +1761,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to GPT.
/// </summary>
internal static string GPT {
get {
return ResourceManager.GetString("GPT", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Graphics settings.
/// </summary>
@ -1653,6 +1797,24 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Group Policy.
/// </summary>
internal static string GroupPolicy {
get {
return ResourceManager.GetString("GroupPolicy", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to hdwwiz.cpl.
/// </summary>
internal static string hdwwiz_cpl {
get {
return ResourceManager.GetString("hdwwiz.cpl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Headset display.
/// </summary>
@ -1806,6 +1968,33 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to IP Security Monitor.
/// </summary>
internal static string IpSecurityMonitor {
get {
return ResourceManager.GetString("IpSecurityMonitor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to IP Security Policies on Local Computer.
/// </summary>
internal static string IpSecurityPoliciesOnLocalComputer {
get {
return ResourceManager.GetString("IpSecurityPoliciesOnLocalComputer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to irprops.cpl.
/// </summary>
internal static string irprops_cpl {
get {
return ResourceManager.GetString("irprops.cpl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Isolated Browsing.
/// </summary>
@ -1905,6 +2094,24 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Local Computer Policy.
/// </summary>
internal static string LocalGroupPolicy {
get {
return ResourceManager.GetString("LocalGroupPolicy", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Local Users and Groups.
/// </summary>
internal static string LocalUsersAndGroups {
get {
return ResourceManager.GetString("LocalUsersAndGroups", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Location.
/// </summary>
@ -1968,6 +2175,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to MBR.
/// </summary>
internal static string MBR {
get {
return ResourceManager.GetString("MBR", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Messaging.
/// </summary>
@ -2013,6 +2229,195 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to azman.msc.
/// </summary>
internal static string MMC_azman {
get {
return ResourceManager.GetString("MMC_azman", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to certlm.msc.
/// </summary>
internal static string MMC_certlm {
get {
return ResourceManager.GetString("MMC_certlm", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to certmgr.msc.
/// </summary>
internal static string MMC_certmgr {
get {
return ResourceManager.GetString("MMC_certmgr", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to comexp.msc.
/// </summary>
internal static string MMC_comexp {
get {
return ResourceManager.GetString("MMC_comexp", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to compmgmt.msc.
/// </summary>
internal static string MMC_compmgmt {
get {
return ResourceManager.GetString("MMC_compmgmt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to devmgmt.msc.
/// </summary>
internal static string MMC_devmgmt {
get {
return ResourceManager.GetString("MMC_devmgmt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to diskmgmt.msc.
/// </summary>
internal static string MMC_diskmgmt {
get {
return ResourceManager.GetString("MMC_diskmgmt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to eventvwr.msc.
/// </summary>
internal static string MMC_eventvwr {
get {
return ResourceManager.GetString("MMC_eventvwr", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to fsmgmt.msc.
/// </summary>
internal static string MMC_fsmgmt {
get {
return ResourceManager.GetString("MMC_fsmgmt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to gpedit.msc.
/// </summary>
internal static string MMC_gpedit {
get {
return ResourceManager.GetString("MMC_gpedit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to lusrmgr.msc.
/// </summary>
internal static string MMC_lusrmgr {
get {
return ResourceManager.GetString("MMC_lusrmgr", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to mmc.exe.
/// </summary>
internal static string MMC_mmcexe {
get {
return ResourceManager.GetString("MMC_mmcexe", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to perfmon.msc.
/// </summary>
internal static string MMC_perfmon {
get {
return ResourceManager.GetString("MMC_perfmon", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to printmanagement.msc.
/// </summary>
internal static string MMC_printmanagement {
get {
return ResourceManager.GetString("MMC_printmanagement", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to rsop.msc.
/// </summary>
internal static string MMC_rsop {
get {
return ResourceManager.GetString("MMC_rsop", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to secpol.msc.
/// </summary>
internal static string MMC_secpol {
get {
return ResourceManager.GetString("MMC_secpol", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to services.msc.
/// </summary>
internal static string MMC_services {
get {
return ResourceManager.GetString("MMC_services", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to taskschd.msc.
/// </summary>
internal static string MMC_taskschd {
get {
return ResourceManager.GetString("MMC_taskschd", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to tpm.msc.
/// </summary>
internal static string MMC_tpm {
get {
return ResourceManager.GetString("MMC_tpm", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to WF.msc.
/// </summary>
internal static string MMC_wf {
get {
return ResourceManager.GetString("MMC_wf", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to WmiMgmt.msc.
/// </summary>
internal static string MMC_wmimgmt {
get {
return ResourceManager.GetString("MMC_wmimgmt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to mmsys.cpl.
/// </summary>
@ -2149,7 +2554,16 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
/// <summary>
/// Looks up a localized string similar to Nearby share settings.
/// Looks up a localized string similar to ncpa.cpl.
/// </summary>
internal static string ncpa_cpl {
get {
return ResourceManager.GetString("ncpa.cpl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Nearby sharing settings.
/// </summary>
internal static string NearbyShareSettings {
get {
@ -2211,6 +2625,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Network sessions.
/// </summary>
internal static string NetworkSessions {
get {
return ResourceManager.GetString("NetworkSessions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Network Setup Wizard.
/// </summary>
@ -2409,6 +2832,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to You have to add this snap-in manually..
/// </summary>
internal static string NoteNoMscFileExist {
get {
return ResourceManager.GetString("NoteNoMscFileExist", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Added in Windows 10, version 1903 (build 18362)..
/// </summary>
@ -2706,6 +3138,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Performance Monitor.
/// </summary>
internal static string PerformanceMonitor {
get {
return ResourceManager.GetString("PerformanceMonitor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Permissions and history.
/// </summary>
@ -2850,6 +3291,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to PNP Device.
/// </summary>
internal static string PnpDevice {
get {
return ResourceManager.GetString("PnpDevice", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Power and sleep.
/// </summary>
@ -2904,6 +3354,24 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Printer Spooler.
/// </summary>
internal static string PrinterSpooler {
get {
return ResourceManager.GetString("PrinterSpooler", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Print Management.
/// </summary>
internal static string PrintManagement {
get {
return ResourceManager.GetString("PrintManagement", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Print screen.
/// </summary>
@ -3147,6 +3615,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Resultant Set of Policy.
/// </summary>
internal static string ResultantSetOfPolicy {
get {
return ResourceManager.GetString("ResultantSetOfPolicy", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Scanners and cameras.
/// </summary>
@ -3255,6 +3732,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Security Configuration and Analysis.
/// </summary>
internal static string SecurityConfigurationAndAnalysis {
get {
return ResourceManager.GetString("SecurityConfigurationAndAnalysis", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Security Processor.
/// </summary>
@ -3264,6 +3750,24 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Security Templates.
/// </summary>
internal static string SecurityTemplates {
get {
return ResourceManager.GetString("SecurityTemplates", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Services.
/// </summary>
internal static string ServicesSnapIn {
get {
return ResourceManager.GetString("ServicesSnapIn", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Session cleanup.
/// </summary>
@ -3309,6 +3813,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Shared Folders.
/// </summary>
internal static string SharedFolders {
get {
return ResourceManager.GetString("SharedFolders", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Shortcuts.
/// </summary>
@ -3354,6 +3867,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to SMB.
/// </summary>
internal static string SMB {
get {
return ResourceManager.GetString("SMB", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sound.
/// </summary>
@ -3507,6 +4029,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to System Tools.
/// </summary>
internal static string SystemTools {
get {
return ResourceManager.GetString("SystemTools", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to System variables.
/// </summary>
@ -3534,6 +4065,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to TabletPC.cpl.
/// </summary>
internal static string TabletPC_cpl {
get {
return ResourceManager.GetString("TabletPC.cpl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Tablet PC settings.
/// </summary>
@ -3588,6 +4128,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Task Scheduler.
/// </summary>
internal static string TaskScheduler {
get {
return ResourceManager.GetString("TaskScheduler", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Team Conferencing.
/// </summary>
@ -3606,6 +4155,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to telephon.cpl.
/// </summary>
internal static string telephon_cpl {
get {
return ResourceManager.GetString("telephon.cpl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Text to speech.
/// </summary>
@ -3687,6 +4245,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to TPM Management.
/// </summary>
internal static string TpmManagement {
get {
return ResourceManager.GetString("TpmManagement", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Transparency.
/// </summary>
@ -4056,6 +4623,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Windows Management Instrumentation.
/// </summary>
internal static string WindowsManagementInstrumentation {
get {
return ResourceManager.GetString("WindowsManagementInstrumentation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Windows Mobility Center.
/// </summary>
@ -4155,6 +4731,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to WMI Control.
/// </summary>
internal static string WmiControl {
get {
return ResourceManager.GetString("WmiControl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Workplace.
/// </summary>
@ -4173,6 +4758,15 @@ namespace Microsoft.PowerToys.Run.Plugin.WindowsSettings.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to wscui.cpl.
/// </summary>
internal static string wscui_cpl {
get {
return ResourceManager.GetString("wscui.cpl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Wubi IME settings.
/// </summary>

View File

@ -217,6 +217,9 @@
<value>App</value>
<comment>Short/modern name for application</comment>
</data>
<data name="AppMMC" xml:space="preserve">
<value>Microsoft Management Console</value>
</data>
<data name="AppsAndFeatures" xml:space="preserve">
<value>Apps &amp; Features</value>
<comment>Area Apps</comment>
@ -333,6 +336,10 @@
<value>Audio and speech</value>
<comment>Area MixedReality, only available if the Mixed Reality Portal app is installed.</comment>
</data>
<data name="AuthorizationManager" xml:space="preserve">
<value>Authorization Manager</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="AutomaticFileDownloads" xml:space="preserve">
<value>Automatic file downloads</value>
<comment>Area Privacy</comment>
@ -406,6 +413,9 @@
<value>Broadcasting</value>
<comment>Area Gaming</comment>
</data>
<data name="bthprops.cpl" xml:space="preserve">
<value>bthprops.cpl</value>
</data>
<data name="Calendar" xml:space="preserve">
<value>Calendar</value>
<comment>Area Privacy</comment>
@ -433,6 +443,14 @@
<value>Cellular and SIM</value>
<comment>Area NetworkAndInternet</comment>
</data>
<data name="CertificatesCurrentUser" xml:space="preserve">
<value>Certificates - Current User</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="CertificatesLocalComputer" xml:space="preserve">
<value>Certificates - Local Computer</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="ChangePrograms" xml:space="preserve">
<value>Change programs</value>
</data>
@ -458,6 +476,9 @@
<value>Closed captions</value>
<comment>Area EaseOfAccess</comment>
</data>
<data name="collab.cpl" xml:space="preserve">
<value>collab.cpl</value>
</data>
<data name="ColorFilters" xml:space="preserve">
<value>Color filters</value>
<comment>Area EaseOfAccess</comment>
@ -474,6 +495,17 @@
<value>Command</value>
<comment>The command to direct start a setting</comment>
</data>
<data name="ComObjects" xml:space="preserve">
<value>COM-Objects</value>
</data>
<data name="ComponentServices" xml:space="preserve">
<value>Component Services</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="ComputerManagement" xml:space="preserve">
<value>Computer Management</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="ConnectableDevices" xml:space="preserve">
<value>Connectable devices</value>
</data>
@ -513,6 +545,9 @@
<value>Cortana - Language</value>
<comment>Area Cortana</comment>
</data>
<data name="CreateAndFormatHardDiskPartitions" xml:space="preserve">
<value>Create and format hard disk partitions</value>
</data>
<data name="CredentialManager" xml:space="preserve">
<value>Credential manager</value>
<comment>Area Control Panel (legacy settings)</comment>
@ -557,6 +592,10 @@
<value>Default Save Locations</value>
<comment>Area System</comment>
</data>
<data name="DefenderFirewallAdvancedSecurity" xml:space="preserve">
<value>Windows Defender Firewall with Advanced Security</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="DeliveryOptimization" xml:space="preserve">
<value>Delivery Optimization</value>
<comment>Area UpdateAndSecurity</comment>
@ -580,6 +619,10 @@
<value>Device manager</value>
<comment>Area Control Panel (legacy settings)</comment>
</data>
<data name="DeviceManagerSnapIn" xml:space="preserve">
<value>Device Manager</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="DevicesAndPrinters" xml:space="preserve">
<value>Devices and printers</value>
<comment>Area Control Panel (legacy settings)</comment>
@ -600,6 +643,10 @@
<value>Direct open your phone</value>
<comment>Area EaseOfAccess</comment>
</data>
<data name="DiskManagement" xml:space="preserve">
<value>Disk Management</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="Display" xml:space="preserve">
<value>Display</value>
<comment>Area EaseOfAccess</comment>
@ -666,6 +713,10 @@
<value>Ethernet</value>
<comment>Area NetworkAndInternet</comment>
</data>
<data name="EventViewer" xml:space="preserve">
<value>Event Viewer</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="ExploitProtection" xml:space="preserve">
<value>Exploit Protection</value>
</data>
@ -708,6 +759,9 @@
<data name="Firewall" xml:space="preserve">
<value>Firewall</value>
</data>
<data name="Firewall.cpl" xml:space="preserve">
<value>Firewall.cpl</value>
</data>
<data name="FocusAssistQuietHours" xml:space="preserve">
<value>Focus assist - Quiet hours</value>
<comment>Area System</comment>
@ -764,6 +818,9 @@
<value>Glance</value>
<comment>Area Personalization, Deprecated in Windows 10, version 1809 and later</comment>
</data>
<data name="GPT" xml:space="preserve">
<value>GPT</value>
</data>
<data name="GraphicsSettings" xml:space="preserve">
<value>Graphics settings</value>
<comment>Area System</comment>
@ -775,6 +832,12 @@
<value>Green week</value>
<comment>Mean you don't can see green colors</comment>
</data>
<data name="GroupPolicy" xml:space="preserve">
<value>Group Policy</value>
</data>
<data name="hdwwiz.cpl" xml:space="preserve">
<value>hdwwiz.cpl</value>
</data>
<data name="HeadsetDisplay" xml:space="preserve">
<value>Headset display</value>
<comment>Area MixedReality, only available if the Mixed Reality Portal app is installed.</comment>
@ -837,6 +900,17 @@
<value>IP</value>
<comment>Should not translated</comment>
</data>
<data name="IpSecurityMonitor" xml:space="preserve">
<value>IP Security Monitor</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="IpSecurityPoliciesOnLocalComputer" xml:space="preserve">
<value>IP Security Policies on Local Computer</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="irprops.cpl" xml:space="preserve">
<value>irprops.cpl</value>
</data>
<data name="IsolatedBrowsing" xml:space="preserve">
<value>Isolated Browsing</value>
</data>
@ -876,6 +950,14 @@
<data name="LightMode" xml:space="preserve">
<value>Light mode</value>
</data>
<data name="LocalGroupPolicy" xml:space="preserve">
<value>Local Computer Policy</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="LocalUsersAndGroups" xml:space="preserve">
<value>Local Users and Groups</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="Location" xml:space="preserve">
<value>Location</value>
<comment>Area Privacy</comment>
@ -904,6 +986,9 @@
<value>Manage optional features</value>
<comment>Area Apps</comment>
</data>
<data name="MBR" xml:space="preserve">
<value>MBR</value>
</data>
<data name="Messaging" xml:space="preserve">
<value>Messaging</value>
<comment>Area Privacy</comment>
@ -923,6 +1008,69 @@
<value>mlcfg32.cpl</value>
<comment>File name, Should not translated</comment>
</data>
<data name="MMC_azman" xml:space="preserve">
<value>azman.msc</value>
</data>
<data name="MMC_certlm" xml:space="preserve">
<value>certlm.msc</value>
</data>
<data name="MMC_certmgr" xml:space="preserve">
<value>certmgr.msc</value>
</data>
<data name="MMC_comexp" xml:space="preserve">
<value>comexp.msc</value>
</data>
<data name="MMC_compmgmt" xml:space="preserve">
<value>compmgmt.msc</value>
</data>
<data name="MMC_devmgmt" xml:space="preserve">
<value>devmgmt.msc</value>
</data>
<data name="MMC_diskmgmt" xml:space="preserve">
<value>diskmgmt.msc</value>
</data>
<data name="MMC_eventvwr" xml:space="preserve">
<value>eventvwr.msc</value>
</data>
<data name="MMC_fsmgmt" xml:space="preserve">
<value>fsmgmt.msc</value>
</data>
<data name="MMC_gpedit" xml:space="preserve">
<value>gpedit.msc</value>
</data>
<data name="MMC_lusrmgr" xml:space="preserve">
<value>lusrmgr.msc</value>
</data>
<data name="MMC_mmcexe" xml:space="preserve">
<value>mmc.exe</value>
</data>
<data name="MMC_perfmon" xml:space="preserve">
<value>perfmon.msc</value>
</data>
<data name="MMC_printmanagement" xml:space="preserve">
<value>printmanagement.msc</value>
</data>
<data name="MMC_rsop" xml:space="preserve">
<value>rsop.msc</value>
</data>
<data name="MMC_secpol" xml:space="preserve">
<value>secpol.msc</value>
</data>
<data name="MMC_services" xml:space="preserve">
<value>services.msc</value>
</data>
<data name="MMC_taskschd" xml:space="preserve">
<value>taskschd.msc</value>
</data>
<data name="MMC_tpm" xml:space="preserve">
<value>tpm.msc</value>
</data>
<data name="MMC_wf" xml:space="preserve">
<value>WF.msc</value>
</data>
<data name="MMC_wmimgmt" xml:space="preserve">
<value>WmiMgmt.msc</value>
</data>
<data name="mmsys.cpl" xml:space="preserve">
<value>mmsys.cpl</value>
<comment>File name, Should not translated</comment>
@ -981,6 +1129,9 @@
<value>Navigation bar</value>
<comment>Area Personalization</comment>
</data>
<data name="ncpa.cpl" xml:space="preserve">
<value>ncpa.cpl</value>
</data>
<data name="NearbyShareSettings" xml:space="preserve">
<value>Nearby sharing settings</value>
<comment>Area System</comment>
@ -1009,6 +1160,9 @@
<value>Network properties</value>
<comment>Area Control Panel (legacy settings)</comment>
</data>
<data name="NetworkSessions" xml:space="preserve">
<value>Network sessions</value>
</data>
<data name="NetworkSetupWizard" xml:space="preserve">
<value>Network Setup Wizard</value>
<comment>Area Control Panel (legacy settings)</comment>
@ -1080,6 +1234,9 @@
<data name="NoteMobileProvisioning" xml:space="preserve">
<value>Only available on mobile and if the enterprise has deployed a provisioning package.</value>
</data>
<data name="NoteNoMscFileExist" xml:space="preserve">
<value>You have to add this snap-in manually.</value>
</data>
<data name="NoteSince18362" xml:space="preserve">
<value>Added in Windows 10, version 1903 (build 18362).</value>
</data>
@ -1202,6 +1359,10 @@
<value>Performance information and tools</value>
<comment>Area Control Panel (legacy settings)</comment>
</data>
<data name="PerformanceMonitor" xml:space="preserve">
<value>Performance Monitor</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="PermissionsAndHistory" xml:space="preserve">
<value>Permissions and history</value>
<comment>Area Cortana</comment>
@ -1263,6 +1424,9 @@
<data name="PluginTitle" xml:space="preserve">
<value>Windows settings</value>
</data>
<data name="PnpDevice" xml:space="preserve">
<value>PNP Device</value>
</data>
<data name="PowerAndSleep" xml:space="preserve">
<value>Power and sleep</value>
<comment>Area System</comment>
@ -1286,6 +1450,13 @@
<value>Printers and scanners</value>
<comment>Area Device</comment>
</data>
<data name="PrinterSpooler" xml:space="preserve">
<value>Printer Spooler</value>
</data>
<data name="PrintManagement" xml:space="preserve">
<value>Print Management</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="PrintScreen" xml:space="preserve">
<value>Print screen</value>
<comment>Mean the "Print screen" key</comment>
@ -1388,6 +1559,10 @@
<data name="RepairPrograms" xml:space="preserve">
<value>Repair programs</value>
</data>
<data name="ResultantSetOfPolicy" xml:space="preserve">
<value>Resultant Set of Policy</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="ScannersAndCameras" xml:space="preserve">
<value>Scanners and cameras</value>
<comment>Area Control Panel (legacy settings)</comment>
@ -1433,9 +1608,21 @@
<value>Security Center</value>
<comment>Area Control Panel (legacy settings)</comment>
</data>
<data name="SecurityConfigurationAndAnalysis" xml:space="preserve">
<value>Security Configuration and Analysis</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="SecurityProcessor" xml:space="preserve">
<value>Security Processor</value>
</data>
<data name="SecurityTemplates" xml:space="preserve">
<value>Security Templates</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="ServicesSnapIn" xml:space="preserve">
<value>Services</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="SessionCleanup" xml:space="preserve">
<value>Session cleanup</value>
<comment>Area SurfaceHub</comment>
@ -1455,6 +1642,10 @@
<value>Shared experience settings</value>
<comment>Area System</comment>
</data>
<data name="SharedFolders" xml:space="preserve">
<value>Shared Folders</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="Shortcuts" xml:space="preserve">
<value>Shortcuts</value>
</data>
@ -1474,6 +1665,9 @@
<value>Size</value>
<comment>Size for text and symbols</comment>
</data>
<data name="SMB" xml:space="preserve">
<value>SMB</value>
</data>
<data name="Sound" xml:space="preserve">
<value>Sound</value>
<comment>Area System</comment>
@ -1540,6 +1734,9 @@
<value>System properties and Add New Hardware wizard</value>
<comment>Area Control Panel (legacy settings)</comment>
</data>
<data name="SystemTools" xml:space="preserve">
<value>System Tools</value>
</data>
<data name="SystemVariables" xml:space="preserve">
<value>System variables</value>
</data>
@ -1551,6 +1748,9 @@
<value>Tablet mode</value>
<comment>Area System</comment>
</data>
<data name="TabletPC.cpl" xml:space="preserve">
<value>TabletPC.cpl</value>
</data>
<data name="TabletPcSettings" xml:space="preserve">
<value>Tablet PC settings</value>
<comment>Area Control Panel (legacy settings)</comment>
@ -1573,6 +1773,10 @@
<value>Tasks</value>
<comment>Area Privacy</comment>
</data>
<data name="TaskScheduler" xml:space="preserve">
<value>Task Scheduler</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="TeamConferencing" xml:space="preserve">
<value>Team Conferencing</value>
<comment>Area SurfaceHub</comment>
@ -1581,6 +1785,9 @@
<value>Team device management</value>
<comment>Area SurfaceHub</comment>
</data>
<data name="telephon.cpl" xml:space="preserve">
<value>telephon.cpl</value>
</data>
<data name="TextToSpeech" xml:space="preserve">
<value>Text to speech</value>
<comment>Area Control Panel (legacy settings)</comment>
@ -1613,6 +1820,10 @@
<value>Touchpad</value>
<comment>Area Device</comment>
</data>
<data name="TpmManagement" xml:space="preserve">
<value>TPM Management</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="Transparency" xml:space="preserve">
<value>Transparency</value>
</data>
@ -1767,6 +1978,9 @@
<value>Windows Insider Program</value>
<comment>Area UpdateAndSecurity</comment>
</data>
<data name="WindowsManagementInstrumentation" xml:space="preserve">
<value>Windows Management Instrumentation</value>
</data>
<data name="WindowsMobilityCenter" xml:space="preserve">
<value>Windows Mobility Center</value>
<comment>Area Control Panel (legacy settings)</comment>
@ -1810,6 +2024,10 @@
<data name="Wireless" xml:space="preserve">
<value>Wireless</value>
</data>
<data name="WmiControl" xml:space="preserve">
<value>WMI Control</value>
<comment>Name of MMC Snap-In.</comment>
</data>
<data name="Workplace" xml:space="preserve">
<value>Workplace</value>
</data>
@ -1817,6 +2035,9 @@
<value>Workplace provisioning</value>
<comment>Area UserAccounts</comment>
</data>
<data name="wscui.cpl" xml:space="preserve">
<value>wscui.cpl</value>
</data>
<data name="WubiImeSettings" xml:space="preserve">
<value>Wubi IME settings</value>
<comment>Area TimeAndLanguage, available if the Microsoft Wubi input method editor is installed</comment>

View File

@ -1284,6 +1284,7 @@
"Name": "ActionCenter",
"Areas": [ "AreaSystemAndSecurity" ],
"Type": "AppControlPanel",
"AltNames": [ "wscui.cpl" ],
"Command": "control /name Microsoft.ActionCenter"
},
{
@ -1331,7 +1332,7 @@
},
{
"Name": "BluetoothDevices",
"Areas": [ "AreaHardwareAndSound" ],
"Areas": [ "AreaHardwareAndSound", "bthprops.cpl" ],
"Type": "AppControlPanel",
"Command": "control /name Microsoft.BluetoothDevices"
},
@ -1378,6 +1379,7 @@
"Name": "DeviceManager",
"Areas": [ "AreaHardwareAndSound" ],
"Type": "AppControlPanel",
"AltNames": [ "hdwwiz.cpl" ],
"Command": "control /name Microsoft.DeviceManager"
},
{
@ -1437,6 +1439,7 @@
"Name": "Infrared",
"Areas": [ "AreaHardwareAndSound" ],
"Type": "AppControlPanel",
"AltNames": [ "irprops.cpl" ],
"Command": "control /name Microsoft.Infrared"
},
{
@ -1469,6 +1472,7 @@
"Name": "NetworkConnection",
"Areas": [ "AreaNetworkAndInternet" ],
"Type": "AppControlPanel",
"AltNames": [ "ncpa.cpl" ],
"Command": "control netconnections"
},
{
@ -1531,13 +1535,14 @@
"Name": "PhoneAndModemOptions",
"Areas": [ "AreaNetworkAndInternet" ],
"Type": "AppControlPanel",
"AltNames": [ "modem.cpl", "telephon.cpl" ],
"Command": "control /name Microsoft.PhoneAndModemOptions"
},
{
"Name": "PhoneAndModem",
"Areas": [ "AreaNetworkAndInternet" ],
"Type": "AppControlPanel",
"AltNames": [ "modem.cpl" ],
"AltNames": [ "modem.cpl", "telephon.cpl" ],
"Command": "control /name Microsoft.PhoneAndModem"
},
{
@ -1632,6 +1637,7 @@
"Name": "TabletPcSettings",
"Areas": [ "AreaSystemAndSecurity" ],
"Type": "AppControlPanel",
"AltNames": [ "TabletPC.cpl" ],
"Command": "control /name Microsoft.TabletPCSettings"
},
{
@ -1672,7 +1678,7 @@
},
{
"Name": "WindowsFirewall",
"Areas": [ "AreaSystemAndSecurity" ],
"Areas": [ "AreaSystemAndSecurity", "Firewall.cpl" ],
"Type": "AppControlPanel",
"Command": "control /name Microsoft.WindowsFirewall"
},
@ -1794,6 +1800,154 @@
"Type": "AppSettingsApp",
"AltNames": [ "ConnectPanel", "ConnectableDevices", "ConnectWirelessAudio", "DeviceDiscovery" ],
"Command": "ms-settings-connectabledevices:devicediscovery"
},
{
"Name": "AppMMC",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe" ],
"Command": "mmc.exe",
"ShowAsFirstResult" : true
},
{
"Name": "AuthorizationManager",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_azman" ],
"Command": "azman.msc"
},
{
"Name": "CertificatesCurrentUser",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_certmgr" ],
"Command": "certmgr.msc"
},
{
"Name": "CertificatesLocalComputer",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_certlm" ],
"Command": "certlm.msc"
},
{
"Name": "ComponentServices",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_comexp", "ComObjects" ],
"Command": "comexp.msc"
},
{
"Name": "ComputerManagement",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_compmgmt", "SystemTools", "TaskScheduler", "EventViewer", "SharedFolders", "NetworkSessions", "SMB", "LocalUsersAndGroups", "PerformanceMonitor", "DeviceManager", "PnpDevice", "Storage", "DiskManagement", "CreateAndFormatHardDiskPartitions", "GPT", "MBR", "ServicesSnapIn", "WmiControl", "WindowsManagementInstrumentation" ],
"Command": "compmgmt.msc"
},
{
"Name": "DeviceManager",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_devmgmt", "PnpDevice" ],
"Command": "devmgmt.msc"
},
{
"Name": "DiskManagement",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_diskmgmt", "Storage", "CreateAndFormatHardDiskPartitions", "GPT", "MBR" ],
"Command": "diskmgmt.msc"
},
{
"Name": "EventViewer",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_eventvwr" ],
"Command": "eventvwr.msc"
},
{
"Name": "LocalGroupPolicy",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_gpedit", "GroupPolicy" ],
"Command": "gpedit.msc"
},
{
"Name": "IpSecurityMonitor",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe" ],
"Command": "mmc.exe",
"Note": "NoteNoMscFileExist"
},
{
"Name": "IpSecurityPoliciesOnLocalComputer",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe" ],
"Command": "mmc.exe",
"Note": "NoteNoMscFileExist"
},
{
"Name": "LocalUsersAndGroups",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_lusrmgr" ],
"Command": "lusrmgr.msc"
},
{
"Name": "PerformanceMonitor",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_perfmon" ],
"Command": "perfmon.msc"
},
{
"Name": "PrintManagement",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_printmanagement", "PrinterSpooler" ],
"Command": "printmanagement.msc"
},
{
"Name": "ResultantSetOfPolicy",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_rsop" ],
"Command": "rsop.msc"
},
{
"Name": "SecurityConfigurationAndAnalysis",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_secpol" ],
"Command": "secpol.msc"
},
{
"Name": "SecurityTemplates",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe" ],
"Command": "mmc.exe",
"Note": "NoteNoMscFileExist"
},
{
"Name": "ServicesSnapIn",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_services" ],
"Command": "services.msc"
},
{
"Name": "SharedFolders",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_fsmgmt", "NetworkSessions" ],
"Command": "fsmgmt.msc"
},
{
"Name": "TaskScheduler",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_taskschd" ],
"Command": "taskschd.msc"
},
{
"Name": "TpmManagement",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_tpm" ],
"Command": "tpm.msc"
},
{
"Name": "DefenderFirewallAdvancedSecurity",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_wf" ],
"Command": "wf.msc"
},
{
"Name": "WmiControl",
"Type": "AppMMC",
"AltNames": [ "MMC_mmcexe", "MMC_wmimgmt", "WindowsManagementInstrumentation" ],
"Command": "wmimgmt.msc"
}
]
}