Fixes simple typo/grammar error. It's easier to understand if it is spelled correctly. This is especially important for those for whom english may not be their first language Signed-off-by: brian teeman <brian@teeman.net>
6.2 KiB
Windows System Commands Plugin
As the name suggests, the Windows System Commands Plugin is used to directly run Windows system commands that have been entered by the user as a query. This is done by parsing the entry and validating the command, followed by executing it.
The user can change the behavior of the plugin (language, confirmation dialog, ...) with optional plugin settings.
Available commands:
- Shutdown
- Restart
- Sign Out
- Lock
- Sleep
- Hibernate
- Open / Empty Recycle Bin
- UEFI Firmware Settings (Only available on systems, that boot in UEFI mode.)
- IP / MAC / Address => Show information about network connections.
Optional plugin settings
-
We have the following settings that the user can configure to change the behavior of the plugin:
Key Default value Name/Description ConfirmSystemCommandsfalseShow a dialog to confirm system commands LocalizeSystemCommandstrueUse localized system commands instead of English ones ReduceNetworkResultScoretrueReduce the priority of 'IP' and 'MAC' results to improve the order in the global results -
The optional plugin settings are implemented via the
ISettingProviderinterface fromWox.Pluginproject. All available settings for the plugin are defined in theMainclass of the plugin.
Technical details
Main
-
Tries to parse the user input and returns a specific Windows system command by using a
Resultlist. -
While parsing, the plugin uses
FuzzyMatchto get characters matching a result in the list.
Commands.cs
- The
Commandsclass contains the definition of all available commands/results.
ResultHelper.cs
- The
ResultHelperclass contains methods for working with the results and some of the result features (tool tip, copy to clipboard, execute command). - Recycle Bin command: The context menu action to empty the Recycle Bin is executed as an async task to not block PowerToys Run. (While the task is running the static class variable
executingEmptyRecycleBinTaskis set to true, to block multiple executions at the same time)
NetworkConnectionProperties.cs
- The
NetworkConnectionPropertiesclass contains methods to get the properties of a network interface/connection. - An instance of this class collects/provides all required information about one connection/adapter.
SystemPluginContext.cs
- An instance of the class
SystemPluginContextcontains/defines the context data of a system plugin result. We select the context menu based on the defined properties. - It is used for the
ContextDataproperty of theWox.Plugin.Result.
UEFI command
-
The UEFI command is only available on systems, that boot in UEFI mode.
-
This is validated by checking the result of the method
GetSystemFirmwareType, which uses the native methodGetFirmwareTypeinkernel32.dll.
Search
Score
CalculateSearchScoreA match found near the beginning of a string is scored more than a match found near the end. A match is scored more if the characters in the patterns are closer to each other, while the score is lower if they are more spread out.- For network results (IP address and MAC address) the score is reduced by 25 percent.
Network results on global queries
- The network results (IP and MAC address) are only shown on global queries, if the search term starts with either IP, MAC or Address. (We compare case-insensitive.)
Returning results
We return the results in two steps:
- All results which we can create very fast like shutdown or logoff via
Main.Query(Query query). - All results which need some time to create like the network results (IP, MAC) via
Main.Query(Query query, bool delayedExecution).
Unit Tests
We have a Unit Test project that executes various test to ensure that the plugin works as expected.
ImageTests.cs
- The
ImageTests.csclass contains tests to validate that each result shows the expected and correct image.
QueryTests.cs
- The
QueryTests.csclass contains tests to validate that the user gets the correct results when searching.
