gitextract_lcydtlch/ ├── LICENSE ├── Patcher/ │ ├── 安装.CMD │ └── 安装组策略.cmd ├── PowerToys/ │ ├── global.json │ └── src/ │ ├── ActionRunner/ │ │ └── Resources.resx │ ├── Monaco/ │ │ └── index.html │ ├── Update/ │ │ └── Resources.resx │ ├── Version.props │ ├── common/ │ │ ├── interop/ │ │ │ └── keyboard_layout.cpp │ │ └── sysinternals/ │ │ └── Eula/ │ │ └── eula.c │ ├── gpo/ │ │ └── assets/ │ │ └── zh-CN/ │ │ └── PowerToys.adml │ ├── modules/ │ │ ├── AdvancedPaste/ │ │ │ └── AdvancedPaste/ │ │ │ └── Strings/ │ │ │ └── en-us/ │ │ │ └── Resources.resw │ │ ├── CropAndLock/ │ │ │ └── CropAndLock/ │ │ │ └── main.cpp │ │ ├── EnvironmentVariables/ │ │ │ └── EnvironmentVariablesUILib/ │ │ │ └── Strings/ │ │ │ └── en-us/ │ │ │ └── Resources.resw │ │ ├── FileLocksmith/ │ │ │ ├── FileLocksmithContextMenu/ │ │ │ │ ├── Resources.resx │ │ │ │ └── dllmain.cpp │ │ │ ├── FileLocksmithExt/ │ │ │ │ └── Resources.resx │ │ │ └── FileLocksmithUI/ │ │ │ └── Strings/ │ │ │ └── en-us/ │ │ │ └── Resources.resw │ │ ├── Hosts/ │ │ │ └── HostsUILib/ │ │ │ └── Strings/ │ │ │ └── en-us/ │ │ │ └── Resources.resw │ │ ├── MeasureTool/ │ │ │ └── MeasureToolUI/ │ │ │ └── Strings/ │ │ │ └── en-us/ │ │ │ └── Resources.resw │ │ ├── MouseWithoutBorders/ │ │ │ ├── App/ │ │ │ │ ├── Class/ │ │ │ │ │ ├── Common.Clipboard.cs │ │ │ │ │ ├── Common.Encryption.cs │ │ │ │ │ ├── Common.Event.cs │ │ │ │ │ ├── Common.Helper.cs │ │ │ │ │ ├── Common.MachineStuff.cs │ │ │ │ │ ├── Common.Service.cs │ │ │ │ │ ├── EasyMouseOption.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── IClipboardHelper.cs │ │ │ │ │ ├── InputHook.cs │ │ │ │ │ ├── Program.cs │ │ │ │ │ └── SocketStuff.cs │ │ │ │ ├── Control/ │ │ │ │ │ ├── Machine.cs │ │ │ │ │ └── Machine.designer.cs │ │ │ │ ├── Core/ │ │ │ │ │ └── Receiver.cs │ │ │ │ ├── Form/ │ │ │ │ │ ├── Settings/ │ │ │ │ │ │ ├── SettingsFormPage.Designer.cs │ │ │ │ │ │ ├── SettingsFormPage.cs │ │ │ │ │ │ ├── SetupPage1.Designer.cs │ │ │ │ │ │ ├── SetupPage2a.Designer.cs │ │ │ │ │ │ ├── SetupPage2aa.Designer.cs │ │ │ │ │ │ ├── SetupPage2ab.Designer.cs │ │ │ │ │ │ ├── SetupPage2b.Designer.cs │ │ │ │ │ │ ├── SetupPage3a.Designer.cs │ │ │ │ │ │ ├── SetupPage3a.cs │ │ │ │ │ │ ├── SetupPage4.Designer.cs │ │ │ │ │ │ └── SetupPage5.Designer.cs │ │ │ │ │ ├── frmAbout.Designer.cs │ │ │ │ │ ├── frmAbout.cs │ │ │ │ │ ├── frmInputCallback.cs │ │ │ │ │ ├── frmLogon.Designer.cs │ │ │ │ │ ├── frmMatrix.Designer.cs │ │ │ │ │ ├── frmMatrix.cs │ │ │ │ │ ├── frmMatrix.resx │ │ │ │ │ ├── frmMessage.Designer.cs │ │ │ │ │ ├── frmScreen.Designer.cs │ │ │ │ │ └── frmScreen.cs │ │ │ │ └── Helper/ │ │ │ │ └── FormHelper.cs │ │ │ └── ModuleInterface/ │ │ │ └── dllmain.cpp │ │ ├── NewPlus/ │ │ │ ├── NewShellExtensionContextMenu/ │ │ │ │ ├── NewShellExtensionContextMenu.vcxproj │ │ │ │ ├── NewShellExtensionContextMenu.vcxproj.filters │ │ │ │ ├── TemplateExamples/ │ │ │ │ │ ├── 模板文件夹里的一切都会出现在新建+菜单中.txt │ │ │ │ │ └── 示例文件夹/ │ │ │ │ │ ├── 另一个示例文本文件.txt │ │ │ │ │ └── 示例文本文件.txt │ │ │ │ └── resources.resx │ │ │ └── NewShellExtensionContextMenu.win10/ │ │ │ └── resources.resx │ │ ├── PowerOCR/ │ │ │ └── PowerOCR/ │ │ │ └── Properties/ │ │ │ └── Resources.resx │ │ ├── ShortcutGuide/ │ │ │ └── ShortcutGuide/ │ │ │ └── Resources.resx │ │ ├── Workspaces/ │ │ │ ├── WorkspacesEditor/ │ │ │ │ ├── Models/ │ │ │ │ │ └── Project.cs │ │ │ │ └── Properties/ │ │ │ │ └── Resources.resx │ │ │ ├── WorkspacesLauncher/ │ │ │ │ └── Resource.resx │ │ │ ├── WorkspacesLauncherUI/ │ │ │ │ └── Properties/ │ │ │ │ └── Resources.resx │ │ │ └── WorkspacesSnapshotTool/ │ │ │ └── Resource.resx │ │ ├── ZoomIt/ │ │ │ └── ZoomIt/ │ │ │ ├── ZoomIt.rc │ │ │ └── Zoomit.cpp │ │ ├── alwaysontop/ │ │ │ └── AlwaysOnTop/ │ │ │ └── Resources.resx │ │ ├── awake/ │ │ │ └── Awake/ │ │ │ ├── Core/ │ │ │ │ └── Constants.cs │ │ │ └── Properties/ │ │ │ └── Resources.resx │ │ ├── colorPicker/ │ │ │ └── ColorPickerUI/ │ │ │ ├── Properties/ │ │ │ │ └── Resources.resx │ │ │ └── ViewModels/ │ │ │ └── ColorEditorViewModel.cs │ │ ├── fancyzones/ │ │ │ ├── FancyZonesLib/ │ │ │ │ └── Resources.resx │ │ │ └── editor/ │ │ │ └── FancyZonesEditor/ │ │ │ └── Properties/ │ │ │ └── Resources.resx │ │ ├── imageresizer/ │ │ │ ├── ImageResizerContextMenu/ │ │ │ │ └── Resources.resx │ │ │ ├── dll/ │ │ │ │ └── Resources.resx │ │ │ └── ui/ │ │ │ ├── Properties/ │ │ │ │ └── Resources.resx │ │ │ └── Views/ │ │ │ ├── EnumValueConverter.cs │ │ │ └── InputPage.xaml │ │ ├── keyboardmanager/ │ │ │ ├── KeyboardManagerEditor/ │ │ │ │ └── Resources.resx │ │ │ └── KeyboardManagerEngineLibrary/ │ │ │ └── KeyboardEventHandlers.cpp │ │ ├── launcher/ │ │ │ ├── Plugins/ │ │ │ │ ├── Community.PowerToys.Run.Plugin.UnitConverter/ │ │ │ │ │ ├── InputInterpreter.cs │ │ │ │ │ ├── Main.cs │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Community.PowerToys.Run.Plugin.VSCodeWorkspaces/ │ │ │ │ │ ├── Main.cs │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Community.PowerToys.Run.Plugin.ValueGenerator/ │ │ │ │ │ ├── Generators/ │ │ │ │ │ │ ├── Base64/ │ │ │ │ │ │ │ ├── Base64DecodeRequest.cs │ │ │ │ │ │ │ └── Base64Request.cs │ │ │ │ │ │ ├── GUID/ │ │ │ │ │ │ │ └── GUIDRequest.cs │ │ │ │ │ │ └── Uri/ │ │ │ │ │ │ ├── DataEscapeRequest.cs │ │ │ │ │ │ ├── DataUnescapeRequest.cs │ │ │ │ │ │ ├── HexEscapeRequest.cs │ │ │ │ │ │ ├── HexUnescapeRequest.cs │ │ │ │ │ │ ├── UrlDecodeRequest.cs │ │ │ │ │ │ └── UrlEncodeRequest.cs │ │ │ │ │ ├── InputParser.cs │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Community.PowerToys.Run.Plugin.WebSearch/ │ │ │ │ │ ├── Main.cs │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.Plugin.Folder/ │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.Plugin.Indexer/ │ │ │ │ │ ├── Main.cs │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.Plugin.Program/ │ │ │ │ │ ├── Main.cs │ │ │ │ │ ├── Programs/ │ │ │ │ │ │ └── UWPApplication.cs │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.Plugin.Shell/ │ │ │ │ │ ├── Main.cs │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.Plugin.Uri/ │ │ │ │ │ ├── Main.cs │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.Plugin.WindowWalker/ │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Calculator/ │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.History/ │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.OneNote/ │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.PowerToys/ │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Registry/ │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.Service/ │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.System/ │ │ │ │ │ ├── Components/ │ │ │ │ │ │ └── ResultHelper.cs │ │ │ │ │ ├── Main.cs │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.TimeDate/ │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ ├── Microsoft.PowerToys.Run.Plugin.WindowsSettings/ │ │ │ │ │ └── Properties/ │ │ │ │ │ └── Resources.resx │ │ │ │ └── Microsoft.PowerToys.Run.Plugin.WindowsTerminal/ │ │ │ │ ├── Main.cs │ │ │ │ └── Properties/ │ │ │ │ └── Resources.resx │ │ │ └── PowerLauncher/ │ │ │ └── Properties/ │ │ │ └── Resources.resx │ │ ├── peek/ │ │ │ └── Peek.UI/ │ │ │ └── Strings/ │ │ │ └── en-us/ │ │ │ └── Resources.resw │ │ ├── powerrename/ │ │ │ ├── PowerRenameContextMenu/ │ │ │ │ └── Resources.resx │ │ │ ├── PowerRenameUILib/ │ │ │ │ ├── PowerRenameXAML/ │ │ │ │ │ └── MainWindow.xaml.cpp │ │ │ │ └── Strings/ │ │ │ │ └── en-us/ │ │ │ │ └── Resources.resw │ │ │ └── dll/ │ │ │ └── Resources.resx │ │ ├── previewpane/ │ │ │ ├── GcodePreviewHandler/ │ │ │ │ └── Properties/ │ │ │ │ └── Resource.resx │ │ │ ├── MarkdownPreviewHandler/ │ │ │ │ └── Properties/ │ │ │ │ └── Resources.resx │ │ │ ├── MonacoPreviewHandler/ │ │ │ │ └── Properties/ │ │ │ │ └── Resources.resx │ │ │ ├── PdfPreviewHandler/ │ │ │ │ └── Properties/ │ │ │ │ └── Resources.resx │ │ │ ├── QoiPreviewHandler/ │ │ │ │ └── Properties/ │ │ │ │ └── Resource.resx │ │ │ ├── SvgPreviewHandler/ │ │ │ │ └── Properties/ │ │ │ │ └── Resource.resx │ │ │ └── powerpreview/ │ │ │ └── Resources.resx │ │ └── registrypreview/ │ │ ├── RegistryPreview/ │ │ │ └── RegistryPreviewXAML/ │ │ │ └── MainWindow.xaml.cs │ │ └── RegistryPreviewUILib/ │ │ └── Strings/ │ │ └── en-US/ │ │ └── Resources.resw │ ├── runner/ │ │ ├── Resources.resx │ │ └── main.cpp │ └── settings-ui/ │ ├── Settings.UI/ │ │ ├── Assets/ │ │ │ └── Settings/ │ │ │ └── Scripts/ │ │ │ ├── CheckCmdNotFoundRequirements.ps1 │ │ │ ├── DisableModule.ps1 │ │ │ ├── EnableModule.ps1 │ │ │ ├── InstallPowerShell7.ps1 │ │ │ └── InstallWinGetClientModule.ps1 │ │ ├── Converters/ │ │ │ └── ZoomItTypeSpeedSliderConverter.cs │ │ ├── SettingsXAML/ │ │ │ ├── App.xaml.cs │ │ │ ├── OOBE/ │ │ │ │ └── Views/ │ │ │ │ ├── OobeShellPage.xaml │ │ │ │ └── OobeShellPage.xaml.cs │ │ │ └── Views/ │ │ │ ├── ColorPickerPage.xaml │ │ │ ├── ImageResizerPage.xaml │ │ │ ├── MouseUtilsPage.xaml │ │ │ ├── MouseWithoutBordersPage.xaml │ │ │ ├── PowerLauncherPage.xaml │ │ │ ├── PowerOcrPage.xaml │ │ │ ├── PowerPreviewPage.xaml │ │ │ ├── PowerRenamePage.xaml │ │ │ └── ZoomItPage.xaml │ │ ├── Strings/ │ │ │ └── en-us/ │ │ │ └── Resources.resw │ │ └── ViewModels/ │ │ ├── CmdNotFoundViewModel.cs │ │ ├── DashboardViewModel.cs │ │ └── PowerAccentViewModel.cs │ └── Settings.UI.Library/ │ └── ColorFormatModel.cs ├── README.md └── Tools/ ├── README.md ├── autosort.py ├── autosort_newgptbroken.py ├── autosort_old.py ├── blank ├── clean.cmd ├── clean.txt ├── modify.cmd ├── modify_arm64.cmd ├── zhcn_modify_list.txt ├── zhcn_modify_list2.txt └── zhcn_modify_list2.txt.bak