repo_name
stringlengths
8
38
pr_number
int64
3
47.1k
pr_title
stringlengths
8
175
pr_description
stringlengths
2
19.8k
author
null
date_created
stringlengths
25
25
date_merged
stringlengths
25
25
filepath
stringlengths
6
136
before_content
stringlengths
54
884k
after_content
stringlengths
56
884k
pr_author
stringlengths
3
21
previous_commit
stringlengths
40
40
pr_commit
stringlengths
40
40
comment
stringlengths
2
25.4k
comment_author
stringlengths
3
29
__index_level_0__
int64
0
5.1k
microsoft/PowerToys
30,258
[Run] UI improvements + ability to show/hide plugins overview panel
This PR addresses #30200, #30168 (partially), and introduces the following changes: ### Design tweaks to address community feedback: - Removed searchbox border - Increased fontsizes - Increased spacing between results - Increased the color ratio between title + path in dark mode - Slight adjustments to the selection visual: the selected background color is slightly more intense and the selection pill is now taller - Other minor tweaks ![Run tweaks](https://github.com/microsoft/PowerToys/assets/9866362/b070d0c7-4110-47de-b535-9909919235f5) ### Setting to hide/show the plugins overview whenever the search textbox is empty A new setting has been added under "Position & appearance" allowing to show or hide the plugins overview when the searchbox is empty ![image](https://github.com/microsoft/PowerToys/assets/9866362/1bcfd20c-1866-47a8-889c-fe1bd6cf6b8a) Result: ![image](https://github.com/microsoft/PowerToys/assets/9866362/77838ce7-35cf-4836-a8a7-02087ad418f3) ### Updated the tooltip so it can stretch wider to show more content, removed redundant prefixes in Program plugin ("Name" + "Path" labels).** Before vs. after ![image](https://github.com/microsoft/PowerToys/assets/9866362/32e8da00-3d68-49b4-8477-19628f1886f9) ### Fixed a bug where no visible gap was shown for image thumbnails Before vs. after ![image](https://github.com/microsoft/PowerToys/assets/9866362/b779131e-40bd-4ffd-af2e-a4237f3f3f46) ### Fixed a bug where a long plugin keyword would centered becoming unreadable Before: ![image](https://github.com/microsoft/PowerToys/assets/9866362/5ab52f82-3e22-493c-b985-033f9b0e1567) After: a tooltip has been added ![image](https://github.com/microsoft/PowerToys/assets/9866362/d4cff0be-aa5f-4ca5-86ce-4bac0a5ea6a2) ## PR Checklist - [ ] **Closes:** #30168, #30200 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-12-07 15:39:35+00:00
2023-12-19 13:11:35+00:00
src/settings-ui/Settings.UI/SettingsXAML/Views/PowerLauncherPage.xaml
<Page x:Class="Microsoft.PowerToys.Settings.UI.Views.PowerLauncherPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:ViewModels="using:Microsoft.PowerToys.Settings.UI.ViewModels" xmlns:controls="using:CommunityToolkit.WinUI.Controls" xmlns:custom="using:Microsoft.PowerToys.Settings.UI.Controls" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:i="using:Microsoft.Xaml.Interactivity" xmlns:ic="using:Microsoft.Xaml.Interactions.Core" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="using:CommunityToolkit.WinUI" AutomationProperties.LandmarkType="Main" mc:Ignorable="d"> <custom:SettingsPageControl x:Uid="PowerLauncher" ModuleImageSource="ms-appx:///Assets/Settings/Modules/PowerLauncher.png"> <custom:SettingsPageControl.ModuleContent> <StackPanel ChildrenTransitions="{StaticResource SettingsCardsAnimations}" Orientation="Vertical"> <controls:SettingsCard x:Uid="PowerLauncher_EnablePowerLauncher" HeaderIcon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerToysRun.png}" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabledGpoConfigured, Converter={StaticResource BoolNegationConverter}}"> <ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.EnablePowerLauncher, Mode=TwoWay}" /> </controls:SettingsCard> <InfoBar x:Uid="GPO_IsSettingForced" IsClosable="False" IsOpen="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabledGpoConfigured}" IsTabStop="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabledGpoConfigured}" Severity="Informational" /> <custom:SettingsGroup x:Uid="Shortcut" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.EnablePowerLauncher}"> <controls:SettingsExpander x:Uid="Activation_Shortcut" HeaderIcon="{ui:FontIcon Glyph=&#xEDA7;}" IsExpanded="True"> <custom:ShortcutControl MinWidth="{StaticResource SettingActionControlMinWidth}" HotkeySettings="{x:Bind Path=ViewModel.OpenPowerLauncher, Mode=TwoWay}" /> <controls:SettingsExpander.Items> <controls:SettingsCard ContentAlignment="Left"> <custom:CheckBoxWithDescriptionControl x:Uid="PowerLauncher_UseCentralizedKeyboardHook" IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.UseCentralizedKeyboardHook}" /> </controls:SettingsCard> <controls:SettingsCard ContentAlignment="Left"> <CheckBox x:Uid="PowerLauncher_IgnoreHotkeysInFullScreen" IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.IgnoreHotkeysInFullScreen}" /> </controls:SettingsCard> </controls:SettingsExpander.Items> </controls:SettingsExpander> </custom:SettingsGroup> <!--<Custom:HotkeySettingsControl x:Uid="PowerLauncher_OpenFileLocation" HorizontalAlignment="Left" Margin="{StaticResource SmallTopMargin}" HotkeySettings="{Binding Path=ViewModel.OpenFileLocation, Mode=TwoWay}" IsEnabled="False" /> <Custom:HotkeySettingsControl x:Uid="PowerLauncher_CopyPathLocation" HorizontalAlignment="Left" Margin="{StaticResource SmallTopMargin}" HotkeySettings="{Binding Path=ViewModel.CopyPathLocation, Mode=TwoWay}" Keys="Win, Ctrl, Alt, Shift" IsEnabled="False" /> <Custom:HotkeySettingsControl x:Uid="PowerLauncher_OpenConsole" HorizontalAlignment="Left" Margin="{StaticResource SmallTopMargin}" HotkeySettings="{Binding Path=ViewModel.OpenConsole, Mode=TwoWay}" Keys="Win, Ctrl, Alt, Shift" IsEnabled="False" />--> <!--<CheckBox x:Uid="PowerLauncher_OverrideWinRKey" Margin="{StaticResource SmallTopMargin}" IsChecked="False" IsEnabled="False" />--> <!--<CheckBox x:Uid="PowerLauncher_OverrideWinSKey" Margin="{StaticResource SmallTopMargin}" IsChecked="{Binding Mode=TwoWay, Path=ViewModel.OverrideWinSKey}" IsEnabled="False" />--> <custom:SettingsGroup x:Uid="PowerLauncher_SearchResults" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.EnablePowerLauncher}"> <controls:SettingsExpander x:Uid="PowerLauncher_SearchQueryResultsWithDelay" HeaderIcon="{ui:FontIcon Glyph=&#xec48;}" IsExpanded="True"> <ToggleSwitch IsOn="{x:Bind Mode=TwoWay, Path=ViewModel.SearchQueryResultsWithDelay}" /> <controls:SettingsExpander.Items> <controls:SettingsCard x:Uid="PowerLauncher_FastSearchInputDelayMs" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.SearchQueryResultsWithDelay}"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" LargeChange="50" Maximum="500" Minimum="0" SmallChange="10" SpinButtonPlacementMode="Compact" Value="{x:Bind Mode=TwoWay, Path=ViewModel.SearchInputDelayFast}" /> </controls:SettingsCard> <controls:SettingsCard x:Uid="PowerLauncher_SlowSearchInputDelayMs" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.SearchQueryResultsWithDelay}"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" LargeChange="50" Maximum="1000" Minimum="0" SmallChange="10" SpinButtonPlacementMode="Compact" Value="{x:Bind Mode=TwoWay, Path=ViewModel.SearchInputDelay}" /> </controls:SettingsCard> </controls:SettingsExpander.Items> </controls:SettingsExpander> <controls:SettingsExpander x:Uid="PowerLauncher_MaximumNumberOfResults" HeaderIcon="{ui:FontIcon Glyph=&#xec8f;}" IsExpanded="True"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" Minimum="1" SpinButtonPlacementMode="Compact" Value="{Binding Mode=TwoWay, Path=MaximumNumberOfResults}" /> <controls:SettingsExpander.Items> <controls:SettingsCard ContentAlignment="Left"> <CheckBox x:Uid="PowerLauncher_ClearInputOnLaunch" IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.ClearInputOnLaunch}" /> </controls:SettingsCard> </controls:SettingsExpander.Items> </controls:SettingsExpander> <controls:SettingsExpander x:Uid="PowerLauncher_SearchQueryTuningEnabled" HeaderIcon="{ui:FontIcon Glyph=&#xE8CB;}" IsExpanded="True"> <ToggleSwitch IsOn="{x:Bind Mode=TwoWay, Path=ViewModel.SearchQueryTuningEnabled}" /> <controls:SettingsExpander.Items> <controls:SettingsCard x:Uid="PowerLauncher_SearchClickedItemWeight" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.SearchQueryTuningEnabled}"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" LargeChange="50" Maximum="1000" Minimum="0" SmallChange="5" SpinButtonPlacementMode="Compact" Value="{x:Bind Mode=TwoWay, Path=ViewModel.SearchClickedItemWeight}" /> </controls:SettingsCard> <controls:SettingsCard ContentAlignment="Left" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.SearchQueryTuningEnabled}"> <custom:CheckBoxWithDescriptionControl x:Uid="PowerLauncher_WaitForSlowResults" IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.SearchWaitForSlowResults}" /> </controls:SettingsCard> </controls:SettingsExpander.Items> </controls:SettingsExpander> <controls:SettingsCard x:Uid="PowerLauncher_TabSelectsContextButtons" HeaderIcon="{ui:FontIcon Glyph=&#xE7FD;}"> <ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.TabSelectsContextButtons, Mode=TwoWay}" /> </controls:SettingsCard> <controls:SettingsCard x:Uid="PowerLauncher_UsePinyin" HeaderIcon="{ui:FontIcon FontFamily={StaticResource SymbolThemeFontFamily}, Glyph=&#xE98A;}"> <ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.UsePinyin, Mode=TwoWay}" /> </controls:SettingsCard> <controls:SettingsCard x:Uid="PowerLauncher_GenerateThumbnailsFromFiles"> <ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.GenerateThumbnailsFromFiles, Mode=TwoWay}" /> </controls:SettingsCard> </custom:SettingsGroup> <!--<ComboBox x:Uid="PowerLauncher_SearchResultPreference" MinWidth="320" Margin="{StaticResource SmallTopMargin}" ItemsSource="{Binding searchResultPreferencesOptions}" SelectedItem="{Binding Mode=TwoWay, Path=SelectedSearchResultPreference}" SelectedValuePath="Item2" DisplayMemberPath="Item1" IsEnabled="False" /> <ComboBox x:Uid="PowerLauncher_SearchTypePreference" MinWidth="320" Margin="{StaticResource SmallTopMargin}" ItemsSource="{Binding searchTypePreferencesOptions}" SelectedItem="{Binding Mode=TwoWay, Path=SelectedSearchTypePreference}" SelectedValuePath="Item2" DisplayMemberPath="Item1" IsEnabled="False" />--> <custom:SettingsGroup x:Uid="Run_PositionAppearance_GroupSettings" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.EnablePowerLauncher}"> <controls:SettingsCard x:Uid="Run_PositionHeader" HeaderIcon="{ui:FontIcon Glyph=&#xe78b;}"> <ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" SelectedIndex="{x:Bind Mode=TwoWay, Path=ViewModel.MonitorPositionIndex}"> <ComboBoxItem x:Uid="Run_Radio_Position_Cursor" /> <ComboBoxItem x:Uid="Run_Radio_Position_Primary_Monitor" /> <ComboBoxItem x:Uid="Run_Radio_Position_Focus" /> </ComboBox> </controls:SettingsCard> <controls:SettingsCard x:Uid="ColorModeHeader" HeaderIcon="{ui:FontIcon Glyph=&#xE790;}"> <controls:SettingsCard.Description> <HyperlinkButton x:Uid="Windows_Color_Settings" Click="OpenColorsSettings_Click" /> </controls:SettingsCard.Description> <ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" SelectedIndex="{x:Bind Mode=TwoWay, Path=ViewModel.ThemeIndex}"> <ComboBoxItem x:Uid="Radio_Theme_Dark" /> <ComboBoxItem x:Uid="Radio_Theme_Light" /> <ComboBoxItem x:Uid="Radio_Theme_Default" /> </ComboBox> </controls:SettingsCard> </custom:SettingsGroup> <custom:SettingsGroup x:Uid="PowerLauncher_Plugins" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.EnablePowerLauncher}"> <InfoBar x:Uid="Run_ConflictingKeywordInfo" IsClosable="False" IsOpen="{x:Bind Mode=OneWay, Path=ViewModel.EnablePowerLauncher}" IsTabStop="{x:Bind Mode=OneWay, Path=ViewModel.EnablePowerLauncher}" Severity="Informational"> <InfoBar.ActionButton> <HyperlinkButton x:Uid="Run_ConflictingKeywordInfo_Link" NavigateUri="https://aka.ms/PowerToysOverview_PowerToysRun#direct-activation-commands" /> </InfoBar.ActionButton> </InfoBar> <controls:SettingsCard x:Uid="Run_PluginUse" HeaderIcon="{ui:FontIcon Glyph=&#xEA86;}"> <controls:SettingsCard.Description> <StackPanel> <TextBlock x:Uid="Run_PluginUseDescription" /> <HyperlinkButton x:Uid="Run_PluginUseFindMorePlugins" NavigateUri="https://aka.ms/powerToysRunPlugins" /> </StackPanel> </controls:SettingsCard.Description> <AutoSuggestBox x:Uid="PowerLauncher_SearchList" MinWidth="{StaticResource SettingActionControlMinWidth}" QueryIcon="Find" Text="{x:Bind ViewModel.SearchText, Mode=TwoWay}"> <i:Interaction.Behaviors> <ic:EventTriggerBehavior EventName="TextChanged"> <ic:InvokeCommandAction Command="{x:Bind ViewModel.SearchPluginsCommand}" /> </ic:EventTriggerBehavior> </i:Interaction.Behaviors> </AutoSuggestBox> </controls:SettingsCard> <InfoBar x:Uid="Run_SomePluginsAreGpoManaged" IsClosable="False" IsOpen="{x:Bind ViewModel.ShowPluginsAreGpoManagedInfo, Mode=OneWay}" IsTabStop="{x:Bind ViewModel.ShowPluginsAreGpoManagedInfo, Mode=OneWay}" Severity="Informational" /> <InfoBar x:Uid="Run_AllPluginsDisabled" IsClosable="False" IsOpen="{x:Bind ViewModel.ShowAllPluginsDisabledWarning, Mode=OneWay}" IsTabStop="{x:Bind ViewModel.ShowAllPluginsDisabledWarning, Mode=OneWay}" Severity="Error" /> <StackPanel Orientation="Horizontal" Visibility="{x:Bind ViewModel.ShowPluginsLoadingMessage, Mode=OneWay, Converter={StaticResource BoolToVisibilityConverter}}"> <ProgressRing Width="20" Height="20" Margin="18,18" IsActive="True" /> <TextBlock x:Uid="Run_PluginsLoading" VerticalAlignment="Center" Style="{ThemeResource SecondaryTextStyle}" /> </StackPanel> <ItemsControl x:Name="PluginsListView" ItemsSource="{x:Bind Path=ViewModel.Plugins, Mode=OneWay}"> <ItemsControl.ItemsPanel> <ItemsPanelTemplate> <StackPanel Spacing="2" /> </ItemsPanelTemplate> </ItemsControl.ItemsPanel> <ItemsControl.ItemTemplate> <DataTemplate x:DataType="ViewModels:PowerLauncherPluginViewModel" x:DefaultBindMode="OneWay"> <Grid> <controls:SettingsExpander Description="{x:Bind Description}" Header="{x:Bind Path=Name}"> <controls:SettingsExpander.HeaderIcon> <BitmapIcon UriSource="{x:Bind IconPath}" /> </controls:SettingsExpander.HeaderIcon> <StackPanel Orientation="Horizontal" Spacing="16"> <!-- todo(Stefan): InfoBadge not available <InfoBadge AutomationProperties.AccessibilityView="Raw" Visibility="{x:Bind ShowBadgeOnPluginSettingError}" Style="{StaticResource CriticalIconInfoBadgeStyle}" /> --> <!-- Temporary badge replacement for InfoBadge control (htcfreek). (Normally you need one grid per icon group. But if you want to show two badges at the same place in a StackPanel you have to put all FontIcons into the same Grid.) --> <Grid> <!-- Error badge --> <FontIcon FontFamily="{StaticResource SymbolThemeFontFamily}" Foreground="{ThemeResource InfoBarErrorSeverityIconBackground}" Glyph="{StaticResource InfoBarIconBackgroundGlyph}" Visibility="{x:Bind ShowBadgeOnPluginSettingError}" /> <FontIcon FontFamily="{StaticResource SymbolThemeFontFamily}" Foreground="{ThemeResource InfoBarErrorSeverityIconForeground}" Glyph="{StaticResource InfoBarErrorIconGlyph}" Visibility="{x:Bind ShowBadgeOnPluginSettingError}" /> </Grid> <ToggleSwitch x:Uid="PowerLauncher_EnablePluginToggle" IsEnabled="{x:Bind Path=EnabledGpoRuleIsConfigured, Converter={StaticResource BoolNegationConverter}, Mode=OneWay}" IsOn="{x:Bind Path=Disabled, Converter={StaticResource BoolNegationConverter}, Mode=TwoWay}" /> </StackPanel> <controls:SettingsExpander.Items> <controls:SettingsCard x:Uid="PowerLauncher_ActionKeyword" IsEnabled="{x:Bind Enabled, Mode=OneWay}"> <TextBox MinWidth="{StaticResource SettingActionControlMinWidth}" Text="{x:Bind Path=ActionKeyword, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" /> </controls:SettingsCard> <controls:SettingsCard Padding="0,-4,0,0" HorizontalContentAlignment="Left" Background="{ThemeResource SystemFillColorCriticalBackgroundBrush}" ContentAlignment="Vertical" Visibility="{x:Bind ShowNotAccessibleWarning, Converter={StaticResource BoolToVisibilityConverter}}"> <InfoBar x:Uid="Run_NotAccessibleWarning" Margin="3,0,0,0" Background="Transparent" BorderBrush="Transparent" IsClosable="False" IsOpen="True" IsTabStop="{x:Bind ShowNotAccessibleWarning}" Severity="Error" /> </controls:SettingsCard> <controls:SettingsCard ContentAlignment="Left" IsEnabled="{x:Bind Enabled, Mode=OneWay}"> <CheckBox Margin="0,-8,0,0" AutomationProperties.Name="{Binding ElementName=IncludeInGlobalResultTitle, Path=Text}" IsChecked="{x:Bind Path=IsGlobal, Mode=TwoWay}"> <StackPanel Orientation="Vertical"> <TextBlock x:Name="IncludeInGlobalResultTitle" x:Uid="PowerLauncher_IncludeInGlobalResultTitle" /> <custom:IsEnabledTextBlock x:Uid="PowerLauncher_IncludeInGlobalResultDescription" FontSize="{StaticResource SecondaryTextFontSize}" Foreground="{ThemeResource TextFillColorSecondaryBrush}" /> </StackPanel> </CheckBox> </controls:SettingsCard> <controls:SettingsCard x:Uid="PowerLauncher_PluginWeightBoost" IsEnabled="{x:Bind IsGlobalAndEnabled, Mode=OneWay}"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" LargeChange="50" Maximum="1000" Minimum="-1000" SmallChange="10" SpinButtonPlacementMode="Compact" Value="{x:Bind Mode=TwoWay, Path=WeightBoost}" /> </controls:SettingsCard> <controls:SettingsCard MinHeight="0" HorizontalContentAlignment="Stretch" ContentAlignment="Vertical"> <controls:SettingsCard.Resources> <Thickness x:Key="SettingsCardPadding">0</Thickness> <Thickness x:Key="SettingsExpanderItemPadding">0,0,0,0</Thickness> </controls:SettingsCard.Resources> <ItemsControl Margin="0,-6,0,0" HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch" IsEnabled="{x:Bind Enabled, Mode=OneWay}" ItemsSource="{x:Bind Path=AdditionalOptions}"> <ItemsControl.ItemTemplate> <DataTemplate x:DataType="ViewModels:PluginAdditionalOptionViewModel"> <StackPanel HorizontalAlignment="Stretch" Orientation="Vertical"> <!-- Checkbox setting --> <controls:SettingsCard MinHeight="0" Margin="1" Padding="0,6,0,12" Background="Transparent" BorderThickness="0,0,0,0" ContentAlignment="Left" CornerRadius="0" Visibility="{x:Bind Path=ShowCheckBox, Converter={StaticResource BoolToVisibilityConverter}}"> <custom:CheckBoxWithDescriptionControl Margin="56,0,0,0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" IsChecked="{x:Bind Path=Value, Mode=TwoWay}" /> </controls:SettingsCard> <!-- ComboBox setting --> <controls:SettingsCard MinHeight="0" Margin="56,8,45,8" Background="Transparent" BorderThickness="0,0,0,0" CornerRadius="0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" Visibility="{x:Bind Path=ShowComboBox, Converter={StaticResource BoolToVisibilityConverter}}"> <ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" DisplayMemberPath="Key" ItemsSource="{x:Bind Path=ComboBoxItems}" SelectedValue="{x:Bind Path=ComboBoxValue, Mode=TwoWay}" SelectedValuePath="Value" /> </controls:SettingsCard> <!-- TextBox setting --> <controls:SettingsCard MinHeight="0" Margin="56,8,45,8" Background="Transparent" BorderThickness="0,0,0,0" CornerRadius="0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" Visibility="{x:Bind Path=ShowTextBox, Converter={StaticResource BoolToVisibilityConverter}}"> <TextBox MinWidth="{StaticResource SettingActionControlMinWidth}" MaxWidth="450" MaxLength="{x:Bind Path=TextBoxMaxLength, Mode=OneWay}" Text="{x:Bind Path=TextValue, Mode=TwoWay}" /> </controls:SettingsCard> <!-- NumberBox setting --> <controls:SettingsCard MinHeight="0" Margin="56,8,45,8" Background="Transparent" BorderThickness="0,0,0,0" CornerRadius="0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" Visibility="{x:Bind Path=ShowNumberBox, Converter={StaticResource BoolToVisibilityConverter}}"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" LargeChange="{x:Bind Path=NumberBoxLargeChange, Mode=OneWay}" Maximum="{x:Bind Path=NumberBoxMax, Mode=OneWay}" Minimum="{x:Bind Path=NumberBoxMin, Mode=OneWay}" SmallChange="{x:Bind Path=NumberBoxSmallChange, Mode=OneWay}" SpinButtonPlacementMode="Compact" Value="{x:Bind Path=NumberValue, Mode=TwoWay}" /> </controls:SettingsCard> <!-- Checkbox And ComboBox setting --> <StackPanel HorizontalAlignment="Stretch" Orientation="Vertical" Visibility="{x:Bind Path=ShowCheckboxAndCombobox, Converter={StaticResource BoolToVisibilityConverter}}"> <controls:SettingsCard MinHeight="0" Margin="1" Padding="0,6,0,4" Background="Transparent" BorderThickness="0,0,0,0" ContentAlignment="Left" CornerRadius="0"> <custom:CheckBoxWithDescriptionControl Margin="56,0,0,0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" IsChecked="{x:Bind Path=Value, Mode=TwoWay}" /> </controls:SettingsCard> <controls:SettingsCard MinHeight="0" Margin="84,0,45,8" Background="Transparent" BorderThickness="0,0,0,0" CornerRadius="0" Description="{x:Bind Path=SecondDisplayDescription}" Header="{x:Bind Path=SecondDisplayLabel}" IsEnabled="{x:Bind Path=SecondSettingIsEnabled, Mode=OneWay}"> <ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" DisplayMemberPath="Key" ItemsSource="{x:Bind Path=ComboBoxItems}" SelectedValue="{x:Bind Path=ComboBoxValue, Mode=TwoWay}" SelectedValuePath="Value" /> </controls:SettingsCard> </StackPanel> <!-- Checkbox And TextBox setting --> <StackPanel HorizontalAlignment="Stretch" Orientation="Vertical" Visibility="{x:Bind Path=ShowCheckboxAndTextbox, Converter={StaticResource BoolToVisibilityConverter}}"> <controls:SettingsCard MinHeight="0" Margin="1" Padding="0,6,0,4" Background="Transparent" BorderThickness="0,0,0,0" ContentAlignment="Left" CornerRadius="0"> <custom:CheckBoxWithDescriptionControl Margin="56,0,0,0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" IsChecked="{x:Bind Path=Value, Mode=TwoWay}" /> </controls:SettingsCard> <controls:SettingsCard MinHeight="0" Margin="84,0,45,8" Background="Transparent" BorderThickness="0,0,0,0" CornerRadius="0" Description="{x:Bind Path=SecondDisplayDescription}" Header="{x:Bind Path=SecondDisplayLabel}" IsEnabled="{x:Bind Path=SecondSettingIsEnabled, Mode=OneWay}"> <TextBox MinWidth="{StaticResource SettingActionControlMinWidth}" MaxWidth="450" MaxLength="{x:Bind Path=TextBoxMaxLength, Mode=OneWay}" Text="{x:Bind Path=TextValue, Mode=TwoWay}" /> </controls:SettingsCard> </StackPanel> <!-- Checkbox And NumberBox setting --> <StackPanel HorizontalAlignment="Stretch" Orientation="Vertical" Visibility="{x:Bind Path=ShowCheckboxAndNumberbox, Converter={StaticResource BoolToVisibilityConverter}}"> <controls:SettingsCard MinHeight="0" Margin="1" Padding="0,6,0,4" Background="Transparent" BorderThickness="0,0,0,0" ContentAlignment="Left" CornerRadius="0"> <custom:CheckBoxWithDescriptionControl Margin="56,0,0,0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" IsChecked="{x:Bind Path=Value, Mode=TwoWay}" /> </controls:SettingsCard> <controls:SettingsCard MinHeight="0" Margin="84,0,45,8" Background="Transparent" BorderThickness="0,0,0,0" CornerRadius="0" Description="{x:Bind Path=SecondDisplayDescription}" Header="{x:Bind Path=SecondDisplayLabel}" IsEnabled="{x:Bind Path=SecondSettingIsEnabled, Mode=OneWay}"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" LargeChange="{x:Bind Path=NumberBoxLargeChange, Mode=OneWay}" Maximum="{x:Bind Path=NumberBoxMax, Mode=OneWay}" Minimum="{x:Bind Path=NumberBoxMin, Mode=OneWay}" SmallChange="{x:Bind Path=NumberBoxSmallChange, Mode=OneWay}" SpinButtonPlacementMode="Compact" Value="{x:Bind Path=NumberValue, Mode=TwoWay}" /> </controls:SettingsCard> </StackPanel> <!-- Separator line --> <Rectangle Height="1" HorizontalAlignment="Stretch" Fill="{ThemeResource CardStrokeColorDefaultBrush}" /> </StackPanel> </DataTemplate> </ItemsControl.ItemTemplate> </ItemsControl> </controls:SettingsCard> <controls:SettingsCard MinHeight="0" BorderThickness="0" ContentAlignment="Right"> <TextBlock Opacity="{x:Bind DisabledOpacity}" Style="{ThemeResource SecondaryTextStyle}"> <Run x:Uid="PowerLauncher_AuthoredBy" /> <Run FontWeight="SemiBold" Text="{x:Bind Author}" /> </TextBlock> </controls:SettingsCard> </controls:SettingsExpander.Items> </controls:SettingsExpander> </Grid> </DataTemplate> </ItemsControl.ItemTemplate> </ItemsControl> </custom:SettingsGroup> </StackPanel> </custom:SettingsPageControl.ModuleContent> <custom:SettingsPageControl.PrimaryLinks> <custom:PageLink x:Uid="LearnMore_Run" Link="https://aka.ms/PowerToysOverview_PowerToysRun" /> <custom:PageLink x:Uid="Run_FindMorePlugins" Link="https://aka.ms/powerToysRunPlugins" /> </custom:SettingsPageControl.PrimaryLinks> <custom:SettingsPageControl.SecondaryLinks> <custom:PageLink Link="https://github.com/Wox-launcher/Wox/" Text="Wox" /> <custom:PageLink Link="https://github.com/betsegaw/windowwalker/" Text="Beta Tadele's Window Walker" /> </custom:SettingsPageControl.SecondaryLinks> </custom:SettingsPageControl> </Page>
<Page x:Class="Microsoft.PowerToys.Settings.UI.Views.PowerLauncherPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:ViewModels="using:Microsoft.PowerToys.Settings.UI.ViewModels" xmlns:controls="using:CommunityToolkit.WinUI.Controls" xmlns:custom="using:Microsoft.PowerToys.Settings.UI.Controls" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:i="using:Microsoft.Xaml.Interactivity" xmlns:ic="using:Microsoft.Xaml.Interactions.Core" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="using:CommunityToolkit.WinUI" AutomationProperties.LandmarkType="Main" mc:Ignorable="d"> <custom:SettingsPageControl x:Uid="PowerLauncher" ModuleImageSource="ms-appx:///Assets/Settings/Modules/PowerLauncher.png"> <custom:SettingsPageControl.ModuleContent> <StackPanel ChildrenTransitions="{StaticResource SettingsCardsAnimations}" Orientation="Vertical"> <controls:SettingsCard x:Uid="PowerLauncher_EnablePowerLauncher" HeaderIcon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerToysRun.png}" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabledGpoConfigured, Converter={StaticResource BoolNegationConverter}}"> <ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.EnablePowerLauncher, Mode=TwoWay}" /> </controls:SettingsCard> <InfoBar x:Uid="GPO_IsSettingForced" IsClosable="False" IsOpen="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabledGpoConfigured}" IsTabStop="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabledGpoConfigured}" Severity="Informational" /> <custom:SettingsGroup x:Uid="Shortcut" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.EnablePowerLauncher}"> <controls:SettingsExpander x:Uid="Activation_Shortcut" HeaderIcon="{ui:FontIcon Glyph=&#xEDA7;}" IsExpanded="True"> <custom:ShortcutControl MinWidth="{StaticResource SettingActionControlMinWidth}" HotkeySettings="{x:Bind Path=ViewModel.OpenPowerLauncher, Mode=TwoWay}" /> <controls:SettingsExpander.Items> <controls:SettingsCard ContentAlignment="Left"> <custom:CheckBoxWithDescriptionControl x:Uid="PowerLauncher_UseCentralizedKeyboardHook" IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.UseCentralizedKeyboardHook}" /> </controls:SettingsCard> <controls:SettingsCard ContentAlignment="Left"> <CheckBox x:Uid="PowerLauncher_IgnoreHotkeysInFullScreen" IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.IgnoreHotkeysInFullScreen}" /> </controls:SettingsCard> </controls:SettingsExpander.Items> </controls:SettingsExpander> </custom:SettingsGroup> <!--<Custom:HotkeySettingsControl x:Uid="PowerLauncher_OpenFileLocation" HorizontalAlignment="Left" Margin="{StaticResource SmallTopMargin}" HotkeySettings="{Binding Path=ViewModel.OpenFileLocation, Mode=TwoWay}" IsEnabled="False" /> <Custom:HotkeySettingsControl x:Uid="PowerLauncher_CopyPathLocation" HorizontalAlignment="Left" Margin="{StaticResource SmallTopMargin}" HotkeySettings="{Binding Path=ViewModel.CopyPathLocation, Mode=TwoWay}" Keys="Win, Ctrl, Alt, Shift" IsEnabled="False" /> <Custom:HotkeySettingsControl x:Uid="PowerLauncher_OpenConsole" HorizontalAlignment="Left" Margin="{StaticResource SmallTopMargin}" HotkeySettings="{Binding Path=ViewModel.OpenConsole, Mode=TwoWay}" Keys="Win, Ctrl, Alt, Shift" IsEnabled="False" />--> <!--<CheckBox x:Uid="PowerLauncher_OverrideWinRKey" Margin="{StaticResource SmallTopMargin}" IsChecked="False" IsEnabled="False" />--> <!--<CheckBox x:Uid="PowerLauncher_OverrideWinSKey" Margin="{StaticResource SmallTopMargin}" IsChecked="{Binding Mode=TwoWay, Path=ViewModel.OverrideWinSKey}" IsEnabled="False" />--> <custom:SettingsGroup x:Uid="PowerLauncher_SearchResults" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.EnablePowerLauncher}"> <controls:SettingsExpander x:Uid="PowerLauncher_SearchQueryResultsWithDelay" HeaderIcon="{ui:FontIcon Glyph=&#xec48;}" IsExpanded="True"> <ToggleSwitch IsOn="{x:Bind Mode=TwoWay, Path=ViewModel.SearchQueryResultsWithDelay}" /> <controls:SettingsExpander.Items> <controls:SettingsCard x:Uid="PowerLauncher_FastSearchInputDelayMs" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.SearchQueryResultsWithDelay}"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" LargeChange="50" Maximum="500" Minimum="0" SmallChange="10" SpinButtonPlacementMode="Compact" Value="{x:Bind Mode=TwoWay, Path=ViewModel.SearchInputDelayFast}" /> </controls:SettingsCard> <controls:SettingsCard x:Uid="PowerLauncher_SlowSearchInputDelayMs" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.SearchQueryResultsWithDelay}"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" LargeChange="50" Maximum="1000" Minimum="0" SmallChange="10" SpinButtonPlacementMode="Compact" Value="{x:Bind Mode=TwoWay, Path=ViewModel.SearchInputDelay}" /> </controls:SettingsCard> </controls:SettingsExpander.Items> </controls:SettingsExpander> <controls:SettingsExpander x:Uid="PowerLauncher_MaximumNumberOfResults" HeaderIcon="{ui:FontIcon Glyph=&#xec8f;}" IsExpanded="True"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" Minimum="1" SpinButtonPlacementMode="Compact" Value="{Binding Mode=TwoWay, Path=MaximumNumberOfResults}" /> <controls:SettingsExpander.Items> <controls:SettingsCard ContentAlignment="Left"> <CheckBox x:Uid="PowerLauncher_ClearInputOnLaunch" IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.ClearInputOnLaunch}" /> </controls:SettingsCard> </controls:SettingsExpander.Items> </controls:SettingsExpander> <controls:SettingsExpander x:Uid="PowerLauncher_SearchQueryTuningEnabled" HeaderIcon="{ui:FontIcon Glyph=&#xE8CB;}" IsExpanded="True"> <ToggleSwitch IsOn="{x:Bind Mode=TwoWay, Path=ViewModel.SearchQueryTuningEnabled}" /> <controls:SettingsExpander.Items> <controls:SettingsCard x:Uid="PowerLauncher_SearchClickedItemWeight" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.SearchQueryTuningEnabled}"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" LargeChange="50" Maximum="1000" Minimum="0" SmallChange="5" SpinButtonPlacementMode="Compact" Value="{x:Bind Mode=TwoWay, Path=ViewModel.SearchClickedItemWeight}" /> </controls:SettingsCard> <controls:SettingsCard ContentAlignment="Left" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.SearchQueryTuningEnabled}"> <custom:CheckBoxWithDescriptionControl x:Uid="PowerLauncher_WaitForSlowResults" IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.SearchWaitForSlowResults}" /> </controls:SettingsCard> </controls:SettingsExpander.Items> </controls:SettingsExpander> <controls:SettingsCard x:Uid="PowerLauncher_TabSelectsContextButtons" HeaderIcon="{ui:FontIcon Glyph=&#xE7FD;}"> <ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.TabSelectsContextButtons, Mode=TwoWay}" /> </controls:SettingsCard> <controls:SettingsCard x:Uid="PowerLauncher_UsePinyin" HeaderIcon="{ui:FontIcon FontFamily={StaticResource SymbolThemeFontFamily}, Glyph=&#xE98A;}"> <ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.UsePinyin, Mode=TwoWay}" /> </controls:SettingsCard> <controls:SettingsCard x:Uid="PowerLauncher_GenerateThumbnailsFromFiles" HeaderIcon="{ui:FontIcon Glyph=&#xE91B;}"> <ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.GenerateThumbnailsFromFiles, Mode=TwoWay}" /> </controls:SettingsCard> </custom:SettingsGroup> <!--<ComboBox x:Uid="PowerLauncher_SearchResultPreference" MinWidth="320" Margin="{StaticResource SmallTopMargin}" ItemsSource="{Binding searchResultPreferencesOptions}" SelectedItem="{Binding Mode=TwoWay, Path=SelectedSearchResultPreference}" SelectedValuePath="Item2" DisplayMemberPath="Item1" IsEnabled="False" /> <ComboBox x:Uid="PowerLauncher_SearchTypePreference" MinWidth="320" Margin="{StaticResource SmallTopMargin}" ItemsSource="{Binding searchTypePreferencesOptions}" SelectedItem="{Binding Mode=TwoWay, Path=SelectedSearchTypePreference}" SelectedValuePath="Item2" DisplayMemberPath="Item1" IsEnabled="False" />--> <custom:SettingsGroup x:Uid="Run_PositionAppearance_GroupSettings" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.EnablePowerLauncher}"> <controls:SettingsCard x:Uid="Run_PositionHeader" HeaderIcon="{ui:FontIcon Glyph=&#xe78b;}"> <ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" SelectedIndex="{x:Bind Mode=TwoWay, Path=ViewModel.MonitorPositionIndex}"> <ComboBoxItem x:Uid="Run_Radio_Position_Cursor" /> <ComboBoxItem x:Uid="Run_Radio_Position_Primary_Monitor" /> <ComboBoxItem x:Uid="Run_Radio_Position_Focus" /> </ComboBox> </controls:SettingsCard> <controls:SettingsCard x:Uid="ColorModeHeader" HeaderIcon="{ui:FontIcon Glyph=&#xE790;}"> <controls:SettingsCard.Description> <HyperlinkButton x:Uid="Windows_Color_Settings" Click="OpenColorsSettings_Click" /> </controls:SettingsCard.Description> <ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" SelectedIndex="{x:Bind Mode=TwoWay, Path=ViewModel.ThemeIndex}"> <ComboBoxItem x:Uid="Radio_Theme_Dark" /> <ComboBoxItem x:Uid="Radio_Theme_Light" /> <ComboBoxItem x:Uid="Radio_Theme_Default" /> </ComboBox> </controls:SettingsCard> <controls:SettingsCard x:Uid="PowerLauncher_ShowPluginKeywords" HeaderIcon="{ui:FontIcon Glyph=&#xE8FD;}"> <ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" SelectedIndex="{x:Bind Mode=TwoWay, Path=ViewModel.ShowPluginsOverviewIndex}"> <ComboBoxItem x:Uid="ShowPluginsOverview_All" /> <ComboBoxItem x:Uid="ShowPluginsOverview_NonGlobal" /> <ComboBoxItem x:Uid="ShowPluginsOverview_None" /> </ComboBox> </controls:SettingsCard> </custom:SettingsGroup> <custom:SettingsGroup x:Uid="PowerLauncher_Plugins" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.EnablePowerLauncher}"> <InfoBar x:Uid="Run_ConflictingKeywordInfo" IsClosable="False" IsOpen="{x:Bind Mode=OneWay, Path=ViewModel.EnablePowerLauncher}" IsTabStop="{x:Bind Mode=OneWay, Path=ViewModel.EnablePowerLauncher}" Severity="Informational"> <InfoBar.ActionButton> <HyperlinkButton x:Uid="Run_ConflictingKeywordInfo_Link" NavigateUri="https://aka.ms/PowerToysOverview_PowerToysRun#direct-activation-commands" /> </InfoBar.ActionButton> </InfoBar> <controls:SettingsCard x:Uid="Run_PluginUse" HeaderIcon="{ui:FontIcon Glyph=&#xEA86;}"> <controls:SettingsCard.Description> <StackPanel> <TextBlock x:Uid="Run_PluginUseDescription" /> <HyperlinkButton x:Uid="Run_PluginUseFindMorePlugins" NavigateUri="https://aka.ms/powerToysRunPlugins" /> </StackPanel> </controls:SettingsCard.Description> <AutoSuggestBox x:Uid="PowerLauncher_SearchList" MinWidth="{StaticResource SettingActionControlMinWidth}" QueryIcon="Find" Text="{x:Bind ViewModel.SearchText, Mode=TwoWay}"> <i:Interaction.Behaviors> <ic:EventTriggerBehavior EventName="TextChanged"> <ic:InvokeCommandAction Command="{x:Bind ViewModel.SearchPluginsCommand}" /> </ic:EventTriggerBehavior> </i:Interaction.Behaviors> </AutoSuggestBox> </controls:SettingsCard> <InfoBar x:Uid="Run_SomePluginsAreGpoManaged" IsClosable="False" IsOpen="{x:Bind ViewModel.ShowPluginsAreGpoManagedInfo, Mode=OneWay}" IsTabStop="{x:Bind ViewModel.ShowPluginsAreGpoManagedInfo, Mode=OneWay}" Severity="Informational" /> <InfoBar x:Uid="Run_AllPluginsDisabled" IsClosable="False" IsOpen="{x:Bind ViewModel.ShowAllPluginsDisabledWarning, Mode=OneWay}" IsTabStop="{x:Bind ViewModel.ShowAllPluginsDisabledWarning, Mode=OneWay}" Severity="Error" /> <StackPanel Orientation="Horizontal" Visibility="{x:Bind ViewModel.ShowPluginsLoadingMessage, Mode=OneWay, Converter={StaticResource BoolToVisibilityConverter}}"> <ProgressRing Width="20" Height="20" Margin="18,18" IsActive="True" /> <TextBlock x:Uid="Run_PluginsLoading" VerticalAlignment="Center" Style="{ThemeResource SecondaryTextStyle}" /> </StackPanel> <ItemsControl x:Name="PluginsListView" ItemsSource="{x:Bind Path=ViewModel.Plugins, Mode=OneWay}"> <ItemsControl.ItemsPanel> <ItemsPanelTemplate> <StackPanel Spacing="2" /> </ItemsPanelTemplate> </ItemsControl.ItemsPanel> <ItemsControl.ItemTemplate> <DataTemplate x:DataType="ViewModels:PowerLauncherPluginViewModel" x:DefaultBindMode="OneWay"> <Grid> <controls:SettingsExpander Description="{x:Bind Description}" Header="{x:Bind Path=Name}"> <controls:SettingsExpander.HeaderIcon> <BitmapIcon UriSource="{x:Bind IconPath}" /> </controls:SettingsExpander.HeaderIcon> <StackPanel Orientation="Horizontal" Spacing="16"> <!-- todo(Stefan): InfoBadge not available <InfoBadge AutomationProperties.AccessibilityView="Raw" Visibility="{x:Bind ShowBadgeOnPluginSettingError}" Style="{StaticResource CriticalIconInfoBadgeStyle}" /> --> <!-- Temporary badge replacement for InfoBadge control (htcfreek). (Normally you need one grid per icon group. But if you want to show two badges at the same place in a StackPanel you have to put all FontIcons into the same Grid.) --> <Grid> <!-- Error badge --> <FontIcon FontFamily="{StaticResource SymbolThemeFontFamily}" Foreground="{ThemeResource InfoBarErrorSeverityIconBackground}" Glyph="{StaticResource InfoBarIconBackgroundGlyph}" Visibility="{x:Bind ShowBadgeOnPluginSettingError}" /> <FontIcon FontFamily="{StaticResource SymbolThemeFontFamily}" Foreground="{ThemeResource InfoBarErrorSeverityIconForeground}" Glyph="{StaticResource InfoBarErrorIconGlyph}" Visibility="{x:Bind ShowBadgeOnPluginSettingError}" /> </Grid> <ToggleSwitch x:Uid="PowerLauncher_EnablePluginToggle" IsEnabled="{x:Bind Path=EnabledGpoRuleIsConfigured, Converter={StaticResource BoolNegationConverter}, Mode=OneWay}" IsOn="{x:Bind Path=Disabled, Converter={StaticResource BoolNegationConverter}, Mode=TwoWay}" /> </StackPanel> <controls:SettingsExpander.Items> <controls:SettingsCard x:Uid="PowerLauncher_ActionKeyword" IsEnabled="{x:Bind Enabled, Mode=OneWay}"> <TextBox MinWidth="{StaticResource SettingActionControlMinWidth}" Text="{x:Bind Path=ActionKeyword, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" /> </controls:SettingsCard> <controls:SettingsCard Padding="0,-4,0,0" HorizontalContentAlignment="Left" Background="{ThemeResource SystemFillColorCriticalBackgroundBrush}" ContentAlignment="Vertical" Visibility="{x:Bind ShowNotAccessibleWarning, Converter={StaticResource BoolToVisibilityConverter}}"> <InfoBar x:Uid="Run_NotAccessibleWarning" Margin="3,0,0,0" Background="Transparent" BorderBrush="Transparent" IsClosable="False" IsOpen="True" IsTabStop="{x:Bind ShowNotAccessibleWarning}" Severity="Error" /> </controls:SettingsCard> <controls:SettingsCard ContentAlignment="Left" IsEnabled="{x:Bind Enabled, Mode=OneWay}"> <CheckBox Margin="0,-8,0,0" AutomationProperties.Name="{Binding ElementName=IncludeInGlobalResultTitle, Path=Text}" IsChecked="{x:Bind Path=IsGlobal, Mode=TwoWay}"> <StackPanel Orientation="Vertical"> <TextBlock x:Name="IncludeInGlobalResultTitle" x:Uid="PowerLauncher_IncludeInGlobalResultTitle" /> <custom:IsEnabledTextBlock x:Uid="PowerLauncher_IncludeInGlobalResultDescription" FontSize="{StaticResource SecondaryTextFontSize}" Foreground="{ThemeResource TextFillColorSecondaryBrush}" /> </StackPanel> </CheckBox> </controls:SettingsCard> <controls:SettingsCard x:Uid="PowerLauncher_PluginWeightBoost" IsEnabled="{x:Bind IsGlobalAndEnabled, Mode=OneWay}"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" LargeChange="50" Maximum="1000" Minimum="-1000" SmallChange="10" SpinButtonPlacementMode="Compact" Value="{x:Bind Mode=TwoWay, Path=WeightBoost}" /> </controls:SettingsCard> <controls:SettingsCard MinHeight="0" HorizontalContentAlignment="Stretch" ContentAlignment="Vertical"> <controls:SettingsCard.Resources> <Thickness x:Key="SettingsCardPadding">0</Thickness> <Thickness x:Key="SettingsExpanderItemPadding">0,0,0,0</Thickness> </controls:SettingsCard.Resources> <ItemsControl Margin="0,-6,0,0" HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch" IsEnabled="{x:Bind Enabled, Mode=OneWay}" ItemsSource="{x:Bind Path=AdditionalOptions}"> <ItemsControl.ItemTemplate> <DataTemplate x:DataType="ViewModels:PluginAdditionalOptionViewModel"> <StackPanel HorizontalAlignment="Stretch" Orientation="Vertical"> <!-- Checkbox setting --> <controls:SettingsCard MinHeight="0" Margin="1" Padding="0,6,0,12" Background="Transparent" BorderThickness="0,0,0,0" ContentAlignment="Left" CornerRadius="0" Visibility="{x:Bind Path=ShowCheckBox, Converter={StaticResource BoolToVisibilityConverter}}"> <custom:CheckBoxWithDescriptionControl Margin="56,0,0,0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" IsChecked="{x:Bind Path=Value, Mode=TwoWay}" /> </controls:SettingsCard> <!-- ComboBox setting --> <controls:SettingsCard MinHeight="0" Margin="56,8,45,8" Background="Transparent" BorderThickness="0,0,0,0" CornerRadius="0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" Visibility="{x:Bind Path=ShowComboBox, Converter={StaticResource BoolToVisibilityConverter}}"> <ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" DisplayMemberPath="Key" ItemsSource="{x:Bind Path=ComboBoxItems}" SelectedValue="{x:Bind Path=ComboBoxValue, Mode=TwoWay}" SelectedValuePath="Value" /> </controls:SettingsCard> <!-- TextBox setting --> <controls:SettingsCard MinHeight="0" Margin="56,8,45,8" Background="Transparent" BorderThickness="0,0,0,0" CornerRadius="0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" Visibility="{x:Bind Path=ShowTextBox, Converter={StaticResource BoolToVisibilityConverter}}"> <TextBox MinWidth="{StaticResource SettingActionControlMinWidth}" MaxWidth="450" MaxLength="{x:Bind Path=TextBoxMaxLength, Mode=OneWay}" Text="{x:Bind Path=TextValue, Mode=TwoWay}" /> </controls:SettingsCard> <!-- NumberBox setting --> <controls:SettingsCard MinHeight="0" Margin="56,8,45,8" Background="Transparent" BorderThickness="0,0,0,0" CornerRadius="0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" Visibility="{x:Bind Path=ShowNumberBox, Converter={StaticResource BoolToVisibilityConverter}}"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" LargeChange="{x:Bind Path=NumberBoxLargeChange, Mode=OneWay}" Maximum="{x:Bind Path=NumberBoxMax, Mode=OneWay}" Minimum="{x:Bind Path=NumberBoxMin, Mode=OneWay}" SmallChange="{x:Bind Path=NumberBoxSmallChange, Mode=OneWay}" SpinButtonPlacementMode="Compact" Value="{x:Bind Path=NumberValue, Mode=TwoWay}" /> </controls:SettingsCard> <!-- Checkbox And ComboBox setting --> <StackPanel HorizontalAlignment="Stretch" Orientation="Vertical" Visibility="{x:Bind Path=ShowCheckboxAndCombobox, Converter={StaticResource BoolToVisibilityConverter}}"> <controls:SettingsCard MinHeight="0" Margin="1" Padding="0,6,0,4" Background="Transparent" BorderThickness="0,0,0,0" ContentAlignment="Left" CornerRadius="0"> <custom:CheckBoxWithDescriptionControl Margin="56,0,0,0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" IsChecked="{x:Bind Path=Value, Mode=TwoWay}" /> </controls:SettingsCard> <controls:SettingsCard MinHeight="0" Margin="84,0,45,8" Background="Transparent" BorderThickness="0,0,0,0" CornerRadius="0" Description="{x:Bind Path=SecondDisplayDescription}" Header="{x:Bind Path=SecondDisplayLabel}" IsEnabled="{x:Bind Path=SecondSettingIsEnabled, Mode=OneWay}"> <ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}" DisplayMemberPath="Key" ItemsSource="{x:Bind Path=ComboBoxItems}" SelectedValue="{x:Bind Path=ComboBoxValue, Mode=TwoWay}" SelectedValuePath="Value" /> </controls:SettingsCard> </StackPanel> <!-- Checkbox And TextBox setting --> <StackPanel HorizontalAlignment="Stretch" Orientation="Vertical" Visibility="{x:Bind Path=ShowCheckboxAndTextbox, Converter={StaticResource BoolToVisibilityConverter}}"> <controls:SettingsCard MinHeight="0" Margin="1" Padding="0,6,0,4" Background="Transparent" BorderThickness="0,0,0,0" ContentAlignment="Left" CornerRadius="0"> <custom:CheckBoxWithDescriptionControl Margin="56,0,0,0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" IsChecked="{x:Bind Path=Value, Mode=TwoWay}" /> </controls:SettingsCard> <controls:SettingsCard MinHeight="0" Margin="84,0,45,8" Background="Transparent" BorderThickness="0,0,0,0" CornerRadius="0" Description="{x:Bind Path=SecondDisplayDescription}" Header="{x:Bind Path=SecondDisplayLabel}" IsEnabled="{x:Bind Path=SecondSettingIsEnabled, Mode=OneWay}"> <TextBox MinWidth="{StaticResource SettingActionControlMinWidth}" MaxWidth="450" MaxLength="{x:Bind Path=TextBoxMaxLength, Mode=OneWay}" Text="{x:Bind Path=TextValue, Mode=TwoWay}" /> </controls:SettingsCard> </StackPanel> <!-- Checkbox And NumberBox setting --> <StackPanel HorizontalAlignment="Stretch" Orientation="Vertical" Visibility="{x:Bind Path=ShowCheckboxAndNumberbox, Converter={StaticResource BoolToVisibilityConverter}}"> <controls:SettingsCard MinHeight="0" Margin="1" Padding="0,6,0,4" Background="Transparent" BorderThickness="0,0,0,0" ContentAlignment="Left" CornerRadius="0"> <custom:CheckBoxWithDescriptionControl Margin="56,0,0,0" Description="{x:Bind Path=DisplayDescription}" Header="{x:Bind Path=DisplayLabel}" IsChecked="{x:Bind Path=Value, Mode=TwoWay}" /> </controls:SettingsCard> <controls:SettingsCard MinHeight="0" Margin="84,0,45,8" Background="Transparent" BorderThickness="0,0,0,0" CornerRadius="0" Description="{x:Bind Path=SecondDisplayDescription}" Header="{x:Bind Path=SecondDisplayLabel}" IsEnabled="{x:Bind Path=SecondSettingIsEnabled, Mode=OneWay}"> <NumberBox MinWidth="{StaticResource SettingActionControlMinWidth}" LargeChange="{x:Bind Path=NumberBoxLargeChange, Mode=OneWay}" Maximum="{x:Bind Path=NumberBoxMax, Mode=OneWay}" Minimum="{x:Bind Path=NumberBoxMin, Mode=OneWay}" SmallChange="{x:Bind Path=NumberBoxSmallChange, Mode=OneWay}" SpinButtonPlacementMode="Compact" Value="{x:Bind Path=NumberValue, Mode=TwoWay}" /> </controls:SettingsCard> </StackPanel> <!-- Separator line --> <Rectangle Height="1" HorizontalAlignment="Stretch" Fill="{ThemeResource CardStrokeColorDefaultBrush}" /> </StackPanel> </DataTemplate> </ItemsControl.ItemTemplate> </ItemsControl> </controls:SettingsCard> <controls:SettingsCard MinHeight="0" BorderThickness="0" ContentAlignment="Right"> <TextBlock Opacity="{x:Bind DisabledOpacity}" Style="{ThemeResource SecondaryTextStyle}"> <Run x:Uid="PowerLauncher_AuthoredBy" /> <Run FontWeight="SemiBold" Text="{x:Bind Author}" /> </TextBlock> </controls:SettingsCard> </controls:SettingsExpander.Items> </controls:SettingsExpander> </Grid> </DataTemplate> </ItemsControl.ItemTemplate> </ItemsControl> </custom:SettingsGroup> </StackPanel> </custom:SettingsPageControl.ModuleContent> <custom:SettingsPageControl.PrimaryLinks> <custom:PageLink x:Uid="LearnMore_Run" Link="https://aka.ms/PowerToysOverview_PowerToysRun" /> <custom:PageLink x:Uid="Run_FindMorePlugins" Link="https://aka.ms/powerToysRunPlugins" /> </custom:SettingsPageControl.PrimaryLinks> <custom:SettingsPageControl.SecondaryLinks> <custom:PageLink Link="https://github.com/Wox-launcher/Wox/" Text="Wox" /> <custom:PageLink Link="https://github.com/betsegaw/windowwalker/" Text="Beta Tadele's Window Walker" /> </custom:SettingsPageControl.SecondaryLinks> </custom:SettingsPageControl> </Page>
niels9001
545f9014922d466af80dc32b14faacc11471cff1
af099737b8208a4c24fbe4017a4c36d3476f68f7
## Unrecognized Spelling [Overiew](#security-tab) is not a recognized word. \(unrecognized-spelling\) [Show more details](https://github.com/microsoft/PowerToys/security/code-scanning/587)
github-advanced-security[bot]
136
microsoft/PowerToys
30,258
[Run] UI improvements + ability to show/hide plugins overview panel
This PR addresses #30200, #30168 (partially), and introduces the following changes: ### Design tweaks to address community feedback: - Removed searchbox border - Increased fontsizes - Increased spacing between results - Increased the color ratio between title + path in dark mode - Slight adjustments to the selection visual: the selected background color is slightly more intense and the selection pill is now taller - Other minor tweaks ![Run tweaks](https://github.com/microsoft/PowerToys/assets/9866362/b070d0c7-4110-47de-b535-9909919235f5) ### Setting to hide/show the plugins overview whenever the search textbox is empty A new setting has been added under "Position & appearance" allowing to show or hide the plugins overview when the searchbox is empty ![image](https://github.com/microsoft/PowerToys/assets/9866362/1bcfd20c-1866-47a8-889c-fe1bd6cf6b8a) Result: ![image](https://github.com/microsoft/PowerToys/assets/9866362/77838ce7-35cf-4836-a8a7-02087ad418f3) ### Updated the tooltip so it can stretch wider to show more content, removed redundant prefixes in Program plugin ("Name" + "Path" labels).** Before vs. after ![image](https://github.com/microsoft/PowerToys/assets/9866362/32e8da00-3d68-49b4-8477-19628f1886f9) ### Fixed a bug where no visible gap was shown for image thumbnails Before vs. after ![image](https://github.com/microsoft/PowerToys/assets/9866362/b779131e-40bd-4ffd-af2e-a4237f3f3f46) ### Fixed a bug where a long plugin keyword would centered becoming unreadable Before: ![image](https://github.com/microsoft/PowerToys/assets/9866362/5ab52f82-3e22-493c-b985-033f9b0e1567) After: a tooltip has been added ![image](https://github.com/microsoft/PowerToys/assets/9866362/d4cff0be-aa5f-4ca5-86ce-4bac0a5ea6a2) ## PR Checklist - [ ] **Closes:** #30168, #30200 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-12-07 15:39:35+00:00
2023-12-19 13:11:35+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Header" xml:space="preserve"> <value>Quite Ok Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Description" xml:space="preserve"> <value>.qoi</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Header" xml:space="preserve"> <value>Quite OK Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Description" xml:space="preserve"> <value>.qoi</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys, shortcuts or text snippets</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts, keys or text snippets for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZones editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Learn</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="WhatIsNew_NavViewItem.Content" xml:space="preserve"> <value>What's New</value> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="SecondaryLink_Awake.Text" xml:space="preserve"> <value>Den Delimarsky's work on creating Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="WarningShortcutAltGr.Title" xml:space="preserve"> <value>Possible shortcut interference with Alt Gr</value> <comment>Alt Gr refers to the right alt key on some international keyboards</comment> </data> <data name="WarningShortcutAltGr.ToolTipService.ToolTip" xml:space="preserve"> <value>Shortcuts with **Ctrl** and **Alt** may remove functionality from some international keyboards, because **Ctrl** + **Alt** = **Alt Gr** in those keyboards.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Resize images from right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Rename files and folders from right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_UseSnippingToolWarning.Title" xml:space="preserve"> <value>It is recommended to use the Snipping Tool instead of the TextExtractor module.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Danish.Content" xml:space="preserve"> <value>Danish</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Greek.Content" xml:space="preserve"> <value>Greek</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Finnish.Content" xml:space="preserve"> <value>Finnish</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovak.Content" xml:space="preserve"> <value>Slovak</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="EnvironmentVariables.ModuleDescription" xml:space="preserve"> <value>A quick utility for managing environment variables.</value> </data> <data name="EnvironmentVariables.ModuleTitle" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="Shell_EnvironmentVariables.Content" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Environment Variables</value> </data> <data name="EnvironmentVariables_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your environment variables</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="EnvironmentVariables_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="Launch_EnvironmentVariables.Content" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="LearnMore_EnvironmentVariables.Text" xml:space="preserve"> <value>Learn more about Environment Variables</value> </data> <data name="Oobe_EnvironmentVariables.Description" xml:space="preserve"> <value>Environment Variables is a quick utility for managing environment variables.</value> </data> <data name="Oobe_EnvironmentVariables.Title" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the system environment variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> <data name="Peek_Preview_GroupSettings.Header" xml:space="preserve"> <value>Preview</value> </data> <data name="Peek_SourceCode_Header.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> </data> <data name="Peek_SourceCode_Header.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> </data> <data name="Peek_SourceCode_TryFormat.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="Peek_SourceCode_TryFormat.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Peek_SourceCode_WrapText.Content" xml:space="preserve"> <value>Wrap text</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Header" xml:space="preserve"> <value>Quite Ok Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Description" xml:space="preserve"> <value>.qoi</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Header" xml:space="preserve"> <value>Quite OK Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Description" xml:space="preserve"> <value>.qoi</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys, shortcuts or text snippets</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts, keys or text snippets for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZones editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Learn</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="WhatIsNew_NavViewItem.Content" xml:space="preserve"> <value>What's New</value> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="SecondaryLink_Awake.Text" xml:space="preserve"> <value>Den Delimarsky's work on creating Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="WarningShortcutAltGr.Title" xml:space="preserve"> <value>Possible shortcut interference with Alt Gr</value> <comment>Alt Gr refers to the right alt key on some international keyboards</comment> </data> <data name="WarningShortcutAltGr.ToolTipService.ToolTip" xml:space="preserve"> <value>Shortcuts with **Ctrl** and **Alt** may remove functionality from some international keyboards, because **Ctrl** + **Alt** = **Alt Gr** in those keyboards.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_ShowPluginKeywords.Header" xml:space="preserve"> <value>Plugin hints</value> </data> <data name="PowerLauncher_ShowPluginKeywords.Description" xml:space="preserve"> <value>Choose which plugin keywords to be shown when the searchbox is empty</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Resize images from right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Rename files and folders from right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_UseSnippingToolWarning.Title" xml:space="preserve"> <value>It is recommended to use the Snipping Tool instead of the TextExtractor module.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Danish.Content" xml:space="preserve"> <value>Danish</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Greek.Content" xml:space="preserve"> <value>Greek</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Finnish.Content" xml:space="preserve"> <value>Finnish</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovak.Content" xml:space="preserve"> <value>Slovak</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="EnvironmentVariables.ModuleDescription" xml:space="preserve"> <value>A quick utility for managing environment variables.</value> </data> <data name="EnvironmentVariables.ModuleTitle" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="Shell_EnvironmentVariables.Content" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Environment Variables</value> </data> <data name="EnvironmentVariables_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your environment variables</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="EnvironmentVariables_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="Launch_EnvironmentVariables.Content" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="LearnMore_EnvironmentVariables.Text" xml:space="preserve"> <value>Learn more about Environment Variables</value> </data> <data name="Oobe_EnvironmentVariables.Description" xml:space="preserve"> <value>Environment Variables is a quick utility for managing environment variables.</value> </data> <data name="Oobe_EnvironmentVariables.Title" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the system environment variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> <data name="Peek_Preview_GroupSettings.Header" xml:space="preserve"> <value>Preview</value> </data> <data name="Peek_SourceCode_Header.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> </data> <data name="Peek_SourceCode_Header.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> </data> <data name="Peek_SourceCode_TryFormat.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="Peek_SourceCode_TryFormat.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Peek_SourceCode_WrapText.Content" xml:space="preserve"> <value>Wrap text</value> </data> <data name="ShowPluginsOverview_All.Content" xml:space="preserve"> <value>All</value> </data> <data name="ShowPluginsOverview_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ShowPluginsOverview_NonGlobal.Content" xml:space="preserve"> <value>Not included in global results</value> </data> </root>
niels9001
545f9014922d466af80dc32b14faacc11471cff1
af099737b8208a4c24fbe4017a4c36d3476f68f7
## Unrecognized Spelling [Overiew](#security-tab) is not a recognized word. \(unrecognized-spelling\) [Show more details](https://github.com/microsoft/PowerToys/security/code-scanning/588)
github-advanced-security[bot]
137
microsoft/PowerToys
30,258
[Run] UI improvements + ability to show/hide plugins overview panel
This PR addresses #30200, #30168 (partially), and introduces the following changes: ### Design tweaks to address community feedback: - Removed searchbox border - Increased fontsizes - Increased spacing between results - Increased the color ratio between title + path in dark mode - Slight adjustments to the selection visual: the selected background color is slightly more intense and the selection pill is now taller - Other minor tweaks ![Run tweaks](https://github.com/microsoft/PowerToys/assets/9866362/b070d0c7-4110-47de-b535-9909919235f5) ### Setting to hide/show the plugins overview whenever the search textbox is empty A new setting has been added under "Position & appearance" allowing to show or hide the plugins overview when the searchbox is empty ![image](https://github.com/microsoft/PowerToys/assets/9866362/1bcfd20c-1866-47a8-889c-fe1bd6cf6b8a) Result: ![image](https://github.com/microsoft/PowerToys/assets/9866362/77838ce7-35cf-4836-a8a7-02087ad418f3) ### Updated the tooltip so it can stretch wider to show more content, removed redundant prefixes in Program plugin ("Name" + "Path" labels).** Before vs. after ![image](https://github.com/microsoft/PowerToys/assets/9866362/32e8da00-3d68-49b4-8477-19628f1886f9) ### Fixed a bug where no visible gap was shown for image thumbnails Before vs. after ![image](https://github.com/microsoft/PowerToys/assets/9866362/b779131e-40bd-4ffd-af2e-a4237f3f3f46) ### Fixed a bug where a long plugin keyword would centered becoming unreadable Before: ![image](https://github.com/microsoft/PowerToys/assets/9866362/5ab52f82-3e22-493c-b985-033f9b0e1567) After: a tooltip has been added ![image](https://github.com/microsoft/PowerToys/assets/9866362/d4cff0be-aa5f-4ca5-86ce-4bac0a5ea6a2) ## PR Checklist - [ ] **Closes:** #30168, #30200 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-12-07 15:39:35+00:00
2023-12-19 13:11:35+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Header" xml:space="preserve"> <value>Quite Ok Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Description" xml:space="preserve"> <value>.qoi</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Header" xml:space="preserve"> <value>Quite OK Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Description" xml:space="preserve"> <value>.qoi</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys, shortcuts or text snippets</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts, keys or text snippets for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZones editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Learn</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="WhatIsNew_NavViewItem.Content" xml:space="preserve"> <value>What's New</value> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="SecondaryLink_Awake.Text" xml:space="preserve"> <value>Den Delimarsky's work on creating Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="WarningShortcutAltGr.Title" xml:space="preserve"> <value>Possible shortcut interference with Alt Gr</value> <comment>Alt Gr refers to the right alt key on some international keyboards</comment> </data> <data name="WarningShortcutAltGr.ToolTipService.ToolTip" xml:space="preserve"> <value>Shortcuts with **Ctrl** and **Alt** may remove functionality from some international keyboards, because **Ctrl** + **Alt** = **Alt Gr** in those keyboards.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Resize images from right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Rename files and folders from right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_UseSnippingToolWarning.Title" xml:space="preserve"> <value>It is recommended to use the Snipping Tool instead of the TextExtractor module.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Danish.Content" xml:space="preserve"> <value>Danish</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Greek.Content" xml:space="preserve"> <value>Greek</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Finnish.Content" xml:space="preserve"> <value>Finnish</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovak.Content" xml:space="preserve"> <value>Slovak</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="EnvironmentVariables.ModuleDescription" xml:space="preserve"> <value>A quick utility for managing environment variables.</value> </data> <data name="EnvironmentVariables.ModuleTitle" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="Shell_EnvironmentVariables.Content" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Environment Variables</value> </data> <data name="EnvironmentVariables_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your environment variables</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="EnvironmentVariables_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="Launch_EnvironmentVariables.Content" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="LearnMore_EnvironmentVariables.Text" xml:space="preserve"> <value>Learn more about Environment Variables</value> </data> <data name="Oobe_EnvironmentVariables.Description" xml:space="preserve"> <value>Environment Variables is a quick utility for managing environment variables.</value> </data> <data name="Oobe_EnvironmentVariables.Title" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the system environment variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> <data name="Peek_Preview_GroupSettings.Header" xml:space="preserve"> <value>Preview</value> </data> <data name="Peek_SourceCode_Header.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> </data> <data name="Peek_SourceCode_Header.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> </data> <data name="Peek_SourceCode_TryFormat.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="Peek_SourceCode_TryFormat.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Peek_SourceCode_WrapText.Content" xml:space="preserve"> <value>Wrap text</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Header" xml:space="preserve"> <value>Quite Ok Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Description" xml:space="preserve"> <value>.qoi</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Header" xml:space="preserve"> <value>Quite OK Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Description" xml:space="preserve"> <value>.qoi</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys, shortcuts or text snippets</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts, keys or text snippets for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZones editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Learn</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="WhatIsNew_NavViewItem.Content" xml:space="preserve"> <value>What's New</value> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="SecondaryLink_Awake.Text" xml:space="preserve"> <value>Den Delimarsky's work on creating Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="WarningShortcutAltGr.Title" xml:space="preserve"> <value>Possible shortcut interference with Alt Gr</value> <comment>Alt Gr refers to the right alt key on some international keyboards</comment> </data> <data name="WarningShortcutAltGr.ToolTipService.ToolTip" xml:space="preserve"> <value>Shortcuts with **Ctrl** and **Alt** may remove functionality from some international keyboards, because **Ctrl** + **Alt** = **Alt Gr** in those keyboards.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_ShowPluginKeywords.Header" xml:space="preserve"> <value>Plugin hints</value> </data> <data name="PowerLauncher_ShowPluginKeywords.Description" xml:space="preserve"> <value>Choose which plugin keywords to be shown when the searchbox is empty</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Resize images from right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Rename files and folders from right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_UseSnippingToolWarning.Title" xml:space="preserve"> <value>It is recommended to use the Snipping Tool instead of the TextExtractor module.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Danish.Content" xml:space="preserve"> <value>Danish</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Greek.Content" xml:space="preserve"> <value>Greek</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Finnish.Content" xml:space="preserve"> <value>Finnish</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovak.Content" xml:space="preserve"> <value>Slovak</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="EnvironmentVariables.ModuleDescription" xml:space="preserve"> <value>A quick utility for managing environment variables.</value> </data> <data name="EnvironmentVariables.ModuleTitle" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="Shell_EnvironmentVariables.Content" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Environment Variables</value> </data> <data name="EnvironmentVariables_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your environment variables</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="EnvironmentVariables_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="Launch_EnvironmentVariables.Content" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="LearnMore_EnvironmentVariables.Text" xml:space="preserve"> <value>Learn more about Environment Variables</value> </data> <data name="Oobe_EnvironmentVariables.Description" xml:space="preserve"> <value>Environment Variables is a quick utility for managing environment variables.</value> </data> <data name="Oobe_EnvironmentVariables.Title" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the system environment variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> <data name="Peek_Preview_GroupSettings.Header" xml:space="preserve"> <value>Preview</value> </data> <data name="Peek_SourceCode_Header.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> </data> <data name="Peek_SourceCode_Header.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> </data> <data name="Peek_SourceCode_TryFormat.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="Peek_SourceCode_TryFormat.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Peek_SourceCode_WrapText.Content" xml:space="preserve"> <value>Wrap text</value> </data> <data name="ShowPluginsOverview_All.Content" xml:space="preserve"> <value>All</value> </data> <data name="ShowPluginsOverview_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ShowPluginsOverview_NonGlobal.Content" xml:space="preserve"> <value>Not included in global results</value> </data> </root>
niels9001
545f9014922d466af80dc32b14faacc11471cff1
af099737b8208a4c24fbe4017a4c36d3476f68f7
## Unrecognized Spelling [Overiew](#security-tab) is not a recognized word. \(unrecognized-spelling\) [Show more details](https://github.com/microsoft/PowerToys/security/code-scanning/589)
github-advanced-security[bot]
138
microsoft/PowerToys
30,226
[EnvironmentVariables] EnvironmentVariables window set to front when launched.
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #30208 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested in debug mode. - Tested with Installer. - It was tested by launching it from both the OOBE page and the settings page.
null
2023-12-06 14:45:11+00:00
2023-12-12 13:15:26+00:00
src/modules/EnvironmentVariables/EnvironmentVariables/EnvironmentVariablesXAML/MainWindow.xaml.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Runtime.InteropServices; using EnvironmentVariables.Helpers; using EnvironmentVariables.Helpers.Win32; using EnvironmentVariables.ViewModels; using Microsoft.UI.Dispatching; using WinUIEx; namespace EnvironmentVariables { /// <summary> /// An empty window that can be used on its own or navigated to within a Frame. /// </summary> public sealed partial class MainWindow : WindowEx { public MainWindow() { this.InitializeComponent(); ExtendsContentIntoTitleBar = true; SetTitleBar(titleBar); AppWindow.SetIcon("Assets/EnvironmentVariables/EnvironmentVariables.ico"); var loader = ResourceLoaderInstance.ResourceLoader; var title = App.GetService<IElevationHelper>().IsElevated ? loader.GetString("WindowAdminTitle") : loader.GetString("WindowTitle"); Title = title; AppTitleTextBlock.Text = title; RegisterWindow(); } private static readonly DispatcherQueue _dispatcherQueue = DispatcherQueue.GetForCurrentThread(); private static NativeMethods.WinProc newWndProc; private static IntPtr oldWndProc = IntPtr.Zero; private void RegisterWindow() { newWndProc = new NativeMethods.WinProc(WndProc); var handle = this.GetWindowHandle(); oldWndProc = NativeMethods.SetWindowLongPtr(handle, NativeMethods.WindowLongIndexFlags.GWL_WNDPROC, newWndProc); } private static IntPtr WndProc(IntPtr hWnd, NativeMethods.WindowMessage msg, IntPtr wParam, IntPtr lParam) { switch (msg) { case NativeMethods.WindowMessage.WM_SETTINGSCHANGED: { var lParamStr = Marshal.PtrToStringUTF8(lParam); if (lParamStr == "Environment") { // Do not react on self - not nice, re-check this if (wParam != (IntPtr)0x12345) { var viewModel = App.GetService<MainViewModel>(); viewModel.EnvironmentState = Models.EnvironmentState.EnvironmentMessageReceived; } } break; } default: break; } return NativeMethods.CallWindowProc(oldWndProc, hWnd, msg, wParam, lParam); } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Runtime.InteropServices; using EnvironmentVariables.Helpers; using EnvironmentVariables.Helpers.Win32; using EnvironmentVariables.ViewModels; using ManagedCommon; using Microsoft.UI.Dispatching; using WinUIEx; namespace EnvironmentVariables { /// <summary> /// An empty window that can be used on its own or navigated to within a Frame. /// </summary> public sealed partial class MainWindow : WindowEx { public MainWindow() { this.InitializeComponent(); ExtendsContentIntoTitleBar = true; SetTitleBar(titleBar); AppWindow.SetIcon("Assets/EnvironmentVariables/EnvironmentVariables.ico"); var loader = ResourceLoaderInstance.ResourceLoader; var title = App.GetService<IElevationHelper>().IsElevated ? loader.GetString("WindowAdminTitle") : loader.GetString("WindowTitle"); Title = title; AppTitleTextBlock.Text = title; var handle = this.GetWindowHandle(); RegisterWindow(handle); WindowHelpers.BringToForeground(handle); } private static readonly DispatcherQueue _dispatcherQueue = DispatcherQueue.GetForCurrentThread(); private static NativeMethods.WinProc newWndProc; private static IntPtr oldWndProc = IntPtr.Zero; private void RegisterWindow(IntPtr handle) { newWndProc = new NativeMethods.WinProc(WndProc); oldWndProc = NativeMethods.SetWindowLongPtr(handle, NativeMethods.WindowLongIndexFlags.GWL_WNDPROC, newWndProc); } private static IntPtr WndProc(IntPtr hWnd, NativeMethods.WindowMessage msg, IntPtr wParam, IntPtr lParam) { switch (msg) { case NativeMethods.WindowMessage.WM_SETTINGSCHANGED: { var lParamStr = Marshal.PtrToStringUTF8(lParam); if (lParamStr == "Environment") { // Do not react on self - not nice, re-check this if (wParam != (IntPtr)0x12345) { var viewModel = App.GetService<MainViewModel>(); viewModel.EnvironmentState = Models.EnvironmentState.EnvironmentMessageReceived; } } break; } default: break; } return NativeMethods.CallWindowProc(oldWndProc, hWnd, msg, wParam, lParam); } } }
gokcekantarci
cc605113cf481c4457dbdcf3b278219f381fc3fc
1daeba7e77db977974ac1c29842a7a0e1f8c6bf6
no need to make this a class field. You can obtain it locally and in ctor and just pass it to RegisterWindow()
stefansjfw
139
microsoft/PowerToys
30,100
Add Microsoft.MSBuildCache
Add Microsoft.MSBuildCache This change adds a new pipeline which enables caching in the build. This is added as a separate pipeline for now with the eventual goal of enabling for PR and/or CI builds. Documentation for Microsoft.MSBuildCache can be found in the GitHub repo: https://github.com/microsoft/MSBuildCache This change also adds binary logging to the existing ci pipeline to help debugging the build.
null
2023-12-01 21:57:42+00:00
2024-01-15 21:45:28+00:00
.pipelines/ci/templates/build-powertoys-steps.yml
parameters: additionalBuildArguments: '' steps: - checkout: self fetchDepth: 1 submodules: true clean: true - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: PowerShell@2 displayName: Verify XAML formatting inputs: filePath: '$(build.sourcesdirectory)\.pipelines\applyXamlStyling.ps1' arguments: -Passive pwsh: true - task: PowerShell@2 displayName: Verify Nuget package versions for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNugetPackages.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for BugReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\BugReportTool\BugReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for WebcamReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\WebcamReportTool\WebcamReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for StylesReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\StylesReportTool\StylesReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToysSetup.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\installer\PowerToysSetup.sln' pwsh: true - task: PowerShell@2 displayName: Verify and set latest VCToolsVersion usage inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyAndSetLatestVCToolsVersion.ps1' pwsh: true - task: UseDotNet@2 displayName: 'Use .NET 8 SDK' inputs: packageType: sdk version: '8.x' includePreviewVersions: true - task: VisualStudioTestPlatformInstaller@1 displayName: Ensure VSTest Platform - task: VSBuild@1 displayName: 'Build PowerToys.sln' inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build BugReportTool.sln' inputs: solution: '**\BugReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build WebcamReportTool.sln' inputs: solution: '**\WebcamReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build StylesReportTool.sln' inputs: solution: '**\StylesReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: VSBuild@1 displayName: 'Build PowerToys per-machine MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-machine Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} clean: false maximumCpuCount: true - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - task: VSBuild@1 displayName: 'Build PowerToys per-user MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} /p:PerUser=true maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-user Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} /p:PerUser=true clean: false maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true # directly not doing WinAppDriver testing - task: VSTest@2 displayName: 'MS Tests' condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\UnitTests-GcodeThumbnailProvider.dll **\UnitTests-StlThumbnailProvider.dll **\UnitTests-PdfThumbnailProvider.dll **\UnitTests-QoiThumbnailProvider.dll **\Settings.UI.UnitTests.dll **\UnitTests-GcodePreviewHandler.dll **\UnitTests-QoiPreviewHandler.dll **\UnitTests-FancyZonesEditor.dll **\UnitTests-PdfPreviewHandler.dll **\UnitTests-PreviewHandlerCommon.dll **\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.dll **\UnitTest-ColorPickerUI.dll **\Microsoft.Interop.Tests.dll **\ImageResizer.Test.dll **\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.dll **\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.dll **\Microsoft.Plugin.Folder.UnitTests.dll **\Microsoft.Plugin.Program.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.dll **\Microsoft.Plugin.Uri.UnitTests.dll **\Wox.Test.dll **\Microsoft.PowerToys.Run.Plugin.System.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.dll **\Microsoft.Plugin.WindowsTerminal.UnitTests.dll **\Microsoft.Plugin.WindowWalker.UnitTests.dll **\PreviewPaneUnitTests.dll **\UnitTests-SvgThumbnailProvider.dll **\UnitTests-SvgPreviewHandler.dll **\PowerToys.Hosts.Tests.dll **\MouseJumpUI.UnitTests.dll !**\obj\** !**\ref\** # Native dlls - task: VSTest@2 condition: ne(variables['BuildPlatform'],'arm64') # No arm64 agents to run the tests. displayName: 'Native Tests' inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\KeyboardManagerEngineTest.dll **\KeyboardManagerEditorTest.dll **\UnitTests-CommonLib.dll **\PowerRenameUnitTests.dll **\powerpreviewTest.dll **\UnitTests-FancyZones.dll !**\obj\** - task: PowerShell@2 displayName: Trigger dotnet welcome message so that it does not cause errors on other scripts inputs: targetType: 'inline' script: | dotnet list $(build.sourcesdirectory)\src\common\Common.UI\Common.UI.csproj package - task: PowerShell@2 displayName: Verify Notice.md and Nuget packages match inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNoticeMdAgainstNugetPackages.ps1' arguments: -path '$(build.sourcesdirectory)\' pwsh: true
parameters: - name: additionalBuildArguments type: string default: '' - name: enableCaching type: boolean default: false steps: - checkout: self fetchDepth: 1 submodules: true clean: true - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: PowerShell@2 displayName: Verify XAML formatting inputs: filePath: '$(build.sourcesdirectory)\.pipelines\applyXamlStyling.ps1' arguments: -Passive pwsh: true - task: PowerShell@2 displayName: Verify Nuget package versions for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNugetPackages.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for BugReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\BugReportTool\BugReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for WebcamReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\WebcamReportTool\WebcamReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for StylesReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\StylesReportTool\StylesReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToysSetup.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\installer\PowerToysSetup.sln' pwsh: true - task: PowerShell@2 displayName: Verify and set latest VCToolsVersion usage inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyAndSetLatestVCToolsVersion.ps1' pwsh: true - task: UseDotNet@2 displayName: 'Use .NET 8 SDK' inputs: packageType: sdk version: '8.x' includePreviewVersions: true - task: VisualStudioTestPlatformInstaller@1 displayName: Ensure VSTest Platform - ${{ if eq(parameters.enableCaching, true) }}: - task: NuGetToolInstaller@1 displayName: Install NuGet - script: nuget restore packages.config -SolutionDirectory . displayName: 'nuget restore packages.config' - task: VSBuild@1 displayName: 'Build PowerToys.sln' inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' ${{ if eq(parameters.enableCaching, true) }}: msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -graph -reportfileaccesses -p:MSBuildCacheEnabled=true -p:MSBuildCacheLogDirectory=$(Build.ArtifactStagingDirectory)\logs\MSBuildCache -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToys.binlog -ds:false ${{ else }}: msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToys.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true ${{ if eq(parameters.enableCaching, true) }}: env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: VSBuild@1 displayName: 'Build BugReportTool.sln' inputs: solution: '**\BugReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\BugReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build WebcamReportTool.sln' inputs: solution: '**\WebcamReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\WebcamReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build StylesReportTool.sln' inputs: solution: '**\StylesReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\StylesReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: VSBuild@1 displayName: 'Build PowerToys per-machine MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysInstaller.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-machine Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysBootstrapper.binlog -ds:false clean: false msbuildArchitecture: x64 maximumCpuCount: true - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - task: VSBuild@1 displayName: 'Build PowerToys per-user MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} /p:PerUser=true -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysInstaller-PerUser.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-user Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} /p:PerUser=true -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysBootstrapper-PerUser.binlog -ds:false clean: false msbuildArchitecture: x64 maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true # directly not doing WinAppDriver testing - task: VSTest@2 displayName: 'MS Tests' condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\UnitTests-GcodeThumbnailProvider.dll **\UnitTests-StlThumbnailProvider.dll **\UnitTests-PdfThumbnailProvider.dll **\UnitTests-QoiThumbnailProvider.dll **\Settings.UI.UnitTests.dll **\UnitTests-GcodePreviewHandler.dll **\UnitTests-QoiPreviewHandler.dll **\UnitTests-FancyZonesEditor.dll **\UnitTests-PdfPreviewHandler.dll **\UnitTests-PreviewHandlerCommon.dll **\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.dll **\UnitTest-ColorPickerUI.dll **\Microsoft.Interop.Tests.dll **\ImageResizer.Test.dll **\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.dll **\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.dll **\Microsoft.Plugin.Folder.UnitTests.dll **\Microsoft.Plugin.Program.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.dll **\Microsoft.Plugin.Uri.UnitTests.dll **\Wox.Test.dll **\Microsoft.PowerToys.Run.Plugin.System.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.dll **\Microsoft.Plugin.WindowsTerminal.UnitTests.dll **\Microsoft.Plugin.WindowWalker.UnitTests.dll **\PreviewPaneUnitTests.dll **\UnitTests-SvgThumbnailProvider.dll **\UnitTests-SvgPreviewHandler.dll **\PowerToys.Hosts.Tests.dll **\MouseJumpUI.UnitTests.dll !**\obj\** !**\ref\** # Native dlls - task: VSTest@2 condition: ne(variables['BuildPlatform'],'arm64') # No arm64 agents to run the tests. displayName: 'Native Tests' inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\KeyboardManagerEngineTest.dll **\KeyboardManagerEditorTest.dll **\UnitTests-CommonLib.dll **\PowerRenameUnitTests.dll **\powerpreviewTest.dll **\UnitTests-FancyZones.dll !**\obj\** - task: PowerShell@2 displayName: Trigger dotnet welcome message so that it does not cause errors on other scripts inputs: targetType: 'inline' script: | dotnet list $(build.sourcesdirectory)\src\common\Common.UI\Common.UI.csproj package - task: PowerShell@2 displayName: Verify Notice.md and Nuget packages match inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNoticeMdAgainstNugetPackages.ps1' arguments: -path '$(build.sourcesdirectory)\' pwsh: true - publish: $(Build.ArtifactStagingDirectory)\logs displayName: Publish Logs artifact: '$(System.JobDisplayName) logs' condition: always()
dfederm
b609cf614db1a2e48a818d9f5e3c8f4f9efea34f
5d1ce08963660e8a2a08ffe59815ef0253e3d08b
nit: prefer `${{else}}`
DHowett
140
microsoft/PowerToys
30,100
Add Microsoft.MSBuildCache
Add Microsoft.MSBuildCache This change adds a new pipeline which enables caching in the build. This is added as a separate pipeline for now with the eventual goal of enabling for PR and/or CI builds. Documentation for Microsoft.MSBuildCache can be found in the GitHub repo: https://github.com/microsoft/MSBuildCache This change also adds binary logging to the existing ci pipeline to help debugging the build.
null
2023-12-01 21:57:42+00:00
2024-01-15 21:45:28+00:00
.pipelines/ci/templates/build-powertoys-steps.yml
parameters: additionalBuildArguments: '' steps: - checkout: self fetchDepth: 1 submodules: true clean: true - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: PowerShell@2 displayName: Verify XAML formatting inputs: filePath: '$(build.sourcesdirectory)\.pipelines\applyXamlStyling.ps1' arguments: -Passive pwsh: true - task: PowerShell@2 displayName: Verify Nuget package versions for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNugetPackages.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for BugReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\BugReportTool\BugReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for WebcamReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\WebcamReportTool\WebcamReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for StylesReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\StylesReportTool\StylesReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToysSetup.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\installer\PowerToysSetup.sln' pwsh: true - task: PowerShell@2 displayName: Verify and set latest VCToolsVersion usage inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyAndSetLatestVCToolsVersion.ps1' pwsh: true - task: UseDotNet@2 displayName: 'Use .NET 8 SDK' inputs: packageType: sdk version: '8.x' includePreviewVersions: true - task: VisualStudioTestPlatformInstaller@1 displayName: Ensure VSTest Platform - task: VSBuild@1 displayName: 'Build PowerToys.sln' inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build BugReportTool.sln' inputs: solution: '**\BugReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build WebcamReportTool.sln' inputs: solution: '**\WebcamReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build StylesReportTool.sln' inputs: solution: '**\StylesReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: VSBuild@1 displayName: 'Build PowerToys per-machine MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-machine Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} clean: false maximumCpuCount: true - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - task: VSBuild@1 displayName: 'Build PowerToys per-user MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} /p:PerUser=true maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-user Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} /p:PerUser=true clean: false maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true # directly not doing WinAppDriver testing - task: VSTest@2 displayName: 'MS Tests' condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\UnitTests-GcodeThumbnailProvider.dll **\UnitTests-StlThumbnailProvider.dll **\UnitTests-PdfThumbnailProvider.dll **\UnitTests-QoiThumbnailProvider.dll **\Settings.UI.UnitTests.dll **\UnitTests-GcodePreviewHandler.dll **\UnitTests-QoiPreviewHandler.dll **\UnitTests-FancyZonesEditor.dll **\UnitTests-PdfPreviewHandler.dll **\UnitTests-PreviewHandlerCommon.dll **\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.dll **\UnitTest-ColorPickerUI.dll **\Microsoft.Interop.Tests.dll **\ImageResizer.Test.dll **\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.dll **\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.dll **\Microsoft.Plugin.Folder.UnitTests.dll **\Microsoft.Plugin.Program.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.dll **\Microsoft.Plugin.Uri.UnitTests.dll **\Wox.Test.dll **\Microsoft.PowerToys.Run.Plugin.System.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.dll **\Microsoft.Plugin.WindowsTerminal.UnitTests.dll **\Microsoft.Plugin.WindowWalker.UnitTests.dll **\PreviewPaneUnitTests.dll **\UnitTests-SvgThumbnailProvider.dll **\UnitTests-SvgPreviewHandler.dll **\PowerToys.Hosts.Tests.dll **\MouseJumpUI.UnitTests.dll !**\obj\** !**\ref\** # Native dlls - task: VSTest@2 condition: ne(variables['BuildPlatform'],'arm64') # No arm64 agents to run the tests. displayName: 'Native Tests' inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\KeyboardManagerEngineTest.dll **\KeyboardManagerEditorTest.dll **\UnitTests-CommonLib.dll **\PowerRenameUnitTests.dll **\powerpreviewTest.dll **\UnitTests-FancyZones.dll !**\obj\** - task: PowerShell@2 displayName: Trigger dotnet welcome message so that it does not cause errors on other scripts inputs: targetType: 'inline' script: | dotnet list $(build.sourcesdirectory)\src\common\Common.UI\Common.UI.csproj package - task: PowerShell@2 displayName: Verify Notice.md and Nuget packages match inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNoticeMdAgainstNugetPackages.ps1' arguments: -path '$(build.sourcesdirectory)\' pwsh: true
parameters: - name: additionalBuildArguments type: string default: '' - name: enableCaching type: boolean default: false steps: - checkout: self fetchDepth: 1 submodules: true clean: true - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: PowerShell@2 displayName: Verify XAML formatting inputs: filePath: '$(build.sourcesdirectory)\.pipelines\applyXamlStyling.ps1' arguments: -Passive pwsh: true - task: PowerShell@2 displayName: Verify Nuget package versions for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNugetPackages.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for BugReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\BugReportTool\BugReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for WebcamReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\WebcamReportTool\WebcamReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for StylesReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\StylesReportTool\StylesReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToysSetup.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\installer\PowerToysSetup.sln' pwsh: true - task: PowerShell@2 displayName: Verify and set latest VCToolsVersion usage inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyAndSetLatestVCToolsVersion.ps1' pwsh: true - task: UseDotNet@2 displayName: 'Use .NET 8 SDK' inputs: packageType: sdk version: '8.x' includePreviewVersions: true - task: VisualStudioTestPlatformInstaller@1 displayName: Ensure VSTest Platform - ${{ if eq(parameters.enableCaching, true) }}: - task: NuGetToolInstaller@1 displayName: Install NuGet - script: nuget restore packages.config -SolutionDirectory . displayName: 'nuget restore packages.config' - task: VSBuild@1 displayName: 'Build PowerToys.sln' inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' ${{ if eq(parameters.enableCaching, true) }}: msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -graph -reportfileaccesses -p:MSBuildCacheEnabled=true -p:MSBuildCacheLogDirectory=$(Build.ArtifactStagingDirectory)\logs\MSBuildCache -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToys.binlog -ds:false ${{ else }}: msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToys.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true ${{ if eq(parameters.enableCaching, true) }}: env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: VSBuild@1 displayName: 'Build BugReportTool.sln' inputs: solution: '**\BugReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\BugReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build WebcamReportTool.sln' inputs: solution: '**\WebcamReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\WebcamReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build StylesReportTool.sln' inputs: solution: '**\StylesReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\StylesReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: VSBuild@1 displayName: 'Build PowerToys per-machine MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysInstaller.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-machine Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysBootstrapper.binlog -ds:false clean: false msbuildArchitecture: x64 maximumCpuCount: true - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - task: VSBuild@1 displayName: 'Build PowerToys per-user MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} /p:PerUser=true -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysInstaller-PerUser.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-user Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} /p:PerUser=true -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysBootstrapper-PerUser.binlog -ds:false clean: false msbuildArchitecture: x64 maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true # directly not doing WinAppDriver testing - task: VSTest@2 displayName: 'MS Tests' condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\UnitTests-GcodeThumbnailProvider.dll **\UnitTests-StlThumbnailProvider.dll **\UnitTests-PdfThumbnailProvider.dll **\UnitTests-QoiThumbnailProvider.dll **\Settings.UI.UnitTests.dll **\UnitTests-GcodePreviewHandler.dll **\UnitTests-QoiPreviewHandler.dll **\UnitTests-FancyZonesEditor.dll **\UnitTests-PdfPreviewHandler.dll **\UnitTests-PreviewHandlerCommon.dll **\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.dll **\UnitTest-ColorPickerUI.dll **\Microsoft.Interop.Tests.dll **\ImageResizer.Test.dll **\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.dll **\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.dll **\Microsoft.Plugin.Folder.UnitTests.dll **\Microsoft.Plugin.Program.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.dll **\Microsoft.Plugin.Uri.UnitTests.dll **\Wox.Test.dll **\Microsoft.PowerToys.Run.Plugin.System.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.dll **\Microsoft.Plugin.WindowsTerminal.UnitTests.dll **\Microsoft.Plugin.WindowWalker.UnitTests.dll **\PreviewPaneUnitTests.dll **\UnitTests-SvgThumbnailProvider.dll **\UnitTests-SvgPreviewHandler.dll **\PowerToys.Hosts.Tests.dll **\MouseJumpUI.UnitTests.dll !**\obj\** !**\ref\** # Native dlls - task: VSTest@2 condition: ne(variables['BuildPlatform'],'arm64') # No arm64 agents to run the tests. displayName: 'Native Tests' inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\KeyboardManagerEngineTest.dll **\KeyboardManagerEditorTest.dll **\UnitTests-CommonLib.dll **\PowerRenameUnitTests.dll **\powerpreviewTest.dll **\UnitTests-FancyZones.dll !**\obj\** - task: PowerShell@2 displayName: Trigger dotnet welcome message so that it does not cause errors on other scripts inputs: targetType: 'inline' script: | dotnet list $(build.sourcesdirectory)\src\common\Common.UI\Common.UI.csproj package - task: PowerShell@2 displayName: Verify Notice.md and Nuget packages match inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNoticeMdAgainstNugetPackages.ps1' arguments: -path '$(build.sourcesdirectory)\' pwsh: true - publish: $(Build.ArtifactStagingDirectory)\logs displayName: Publish Logs artifact: '$(System.JobDisplayName) logs' condition: always()
dfederm
b609cf614db1a2e48a818d9f5e3c8f4f9efea34f
5d1ce08963660e8a2a08ffe59815ef0253e3d08b
fwiw: if you set the type of the parameter `enableCaching` to `boolean`, you can use `true` instead of `'true'`. type safety! this will require you to change the parameters block format from map/object to array ```yaml parameters: - name: additionalBuildArguments type: string default: '' - name: enableCaching type: boolean default: false ```
DHowett
141
microsoft/PowerToys
30,100
Add Microsoft.MSBuildCache
Add Microsoft.MSBuildCache This change adds a new pipeline which enables caching in the build. This is added as a separate pipeline for now with the eventual goal of enabling for PR and/or CI builds. Documentation for Microsoft.MSBuildCache can be found in the GitHub repo: https://github.com/microsoft/MSBuildCache This change also adds binary logging to the existing ci pipeline to help debugging the build.
null
2023-12-01 21:57:42+00:00
2024-01-15 21:45:28+00:00
.pipelines/ci/templates/build-powertoys-steps.yml
parameters: additionalBuildArguments: '' steps: - checkout: self fetchDepth: 1 submodules: true clean: true - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: PowerShell@2 displayName: Verify XAML formatting inputs: filePath: '$(build.sourcesdirectory)\.pipelines\applyXamlStyling.ps1' arguments: -Passive pwsh: true - task: PowerShell@2 displayName: Verify Nuget package versions for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNugetPackages.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for BugReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\BugReportTool\BugReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for WebcamReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\WebcamReportTool\WebcamReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for StylesReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\StylesReportTool\StylesReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToysSetup.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\installer\PowerToysSetup.sln' pwsh: true - task: PowerShell@2 displayName: Verify and set latest VCToolsVersion usage inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyAndSetLatestVCToolsVersion.ps1' pwsh: true - task: UseDotNet@2 displayName: 'Use .NET 8 SDK' inputs: packageType: sdk version: '8.x' includePreviewVersions: true - task: VisualStudioTestPlatformInstaller@1 displayName: Ensure VSTest Platform - task: VSBuild@1 displayName: 'Build PowerToys.sln' inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build BugReportTool.sln' inputs: solution: '**\BugReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build WebcamReportTool.sln' inputs: solution: '**\WebcamReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build StylesReportTool.sln' inputs: solution: '**\StylesReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: VSBuild@1 displayName: 'Build PowerToys per-machine MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-machine Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} clean: false maximumCpuCount: true - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - task: VSBuild@1 displayName: 'Build PowerToys per-user MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} /p:PerUser=true maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-user Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} /p:PerUser=true clean: false maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true # directly not doing WinAppDriver testing - task: VSTest@2 displayName: 'MS Tests' condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\UnitTests-GcodeThumbnailProvider.dll **\UnitTests-StlThumbnailProvider.dll **\UnitTests-PdfThumbnailProvider.dll **\UnitTests-QoiThumbnailProvider.dll **\Settings.UI.UnitTests.dll **\UnitTests-GcodePreviewHandler.dll **\UnitTests-QoiPreviewHandler.dll **\UnitTests-FancyZonesEditor.dll **\UnitTests-PdfPreviewHandler.dll **\UnitTests-PreviewHandlerCommon.dll **\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.dll **\UnitTest-ColorPickerUI.dll **\Microsoft.Interop.Tests.dll **\ImageResizer.Test.dll **\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.dll **\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.dll **\Microsoft.Plugin.Folder.UnitTests.dll **\Microsoft.Plugin.Program.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.dll **\Microsoft.Plugin.Uri.UnitTests.dll **\Wox.Test.dll **\Microsoft.PowerToys.Run.Plugin.System.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.dll **\Microsoft.Plugin.WindowsTerminal.UnitTests.dll **\Microsoft.Plugin.WindowWalker.UnitTests.dll **\PreviewPaneUnitTests.dll **\UnitTests-SvgThumbnailProvider.dll **\UnitTests-SvgPreviewHandler.dll **\PowerToys.Hosts.Tests.dll **\MouseJumpUI.UnitTests.dll !**\obj\** !**\ref\** # Native dlls - task: VSTest@2 condition: ne(variables['BuildPlatform'],'arm64') # No arm64 agents to run the tests. displayName: 'Native Tests' inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\KeyboardManagerEngineTest.dll **\KeyboardManagerEditorTest.dll **\UnitTests-CommonLib.dll **\PowerRenameUnitTests.dll **\powerpreviewTest.dll **\UnitTests-FancyZones.dll !**\obj\** - task: PowerShell@2 displayName: Trigger dotnet welcome message so that it does not cause errors on other scripts inputs: targetType: 'inline' script: | dotnet list $(build.sourcesdirectory)\src\common\Common.UI\Common.UI.csproj package - task: PowerShell@2 displayName: Verify Notice.md and Nuget packages match inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNoticeMdAgainstNugetPackages.ps1' arguments: -path '$(build.sourcesdirectory)\' pwsh: true
parameters: - name: additionalBuildArguments type: string default: '' - name: enableCaching type: boolean default: false steps: - checkout: self fetchDepth: 1 submodules: true clean: true - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: PowerShell@2 displayName: Verify XAML formatting inputs: filePath: '$(build.sourcesdirectory)\.pipelines\applyXamlStyling.ps1' arguments: -Passive pwsh: true - task: PowerShell@2 displayName: Verify Nuget package versions for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNugetPackages.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for BugReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\BugReportTool\BugReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for WebcamReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\WebcamReportTool\WebcamReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for StylesReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\StylesReportTool\StylesReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToysSetup.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\installer\PowerToysSetup.sln' pwsh: true - task: PowerShell@2 displayName: Verify and set latest VCToolsVersion usage inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyAndSetLatestVCToolsVersion.ps1' pwsh: true - task: UseDotNet@2 displayName: 'Use .NET 8 SDK' inputs: packageType: sdk version: '8.x' includePreviewVersions: true - task: VisualStudioTestPlatformInstaller@1 displayName: Ensure VSTest Platform - ${{ if eq(parameters.enableCaching, true) }}: - task: NuGetToolInstaller@1 displayName: Install NuGet - script: nuget restore packages.config -SolutionDirectory . displayName: 'nuget restore packages.config' - task: VSBuild@1 displayName: 'Build PowerToys.sln' inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' ${{ if eq(parameters.enableCaching, true) }}: msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -graph -reportfileaccesses -p:MSBuildCacheEnabled=true -p:MSBuildCacheLogDirectory=$(Build.ArtifactStagingDirectory)\logs\MSBuildCache -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToys.binlog -ds:false ${{ else }}: msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToys.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true ${{ if eq(parameters.enableCaching, true) }}: env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: VSBuild@1 displayName: 'Build BugReportTool.sln' inputs: solution: '**\BugReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\BugReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build WebcamReportTool.sln' inputs: solution: '**\WebcamReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\WebcamReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build StylesReportTool.sln' inputs: solution: '**\StylesReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\StylesReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: VSBuild@1 displayName: 'Build PowerToys per-machine MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysInstaller.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-machine Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysBootstrapper.binlog -ds:false clean: false msbuildArchitecture: x64 maximumCpuCount: true - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - task: VSBuild@1 displayName: 'Build PowerToys per-user MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} /p:PerUser=true -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysInstaller-PerUser.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-user Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} /p:PerUser=true -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysBootstrapper-PerUser.binlog -ds:false clean: false msbuildArchitecture: x64 maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true # directly not doing WinAppDriver testing - task: VSTest@2 displayName: 'MS Tests' condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\UnitTests-GcodeThumbnailProvider.dll **\UnitTests-StlThumbnailProvider.dll **\UnitTests-PdfThumbnailProvider.dll **\UnitTests-QoiThumbnailProvider.dll **\Settings.UI.UnitTests.dll **\UnitTests-GcodePreviewHandler.dll **\UnitTests-QoiPreviewHandler.dll **\UnitTests-FancyZonesEditor.dll **\UnitTests-PdfPreviewHandler.dll **\UnitTests-PreviewHandlerCommon.dll **\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.dll **\UnitTest-ColorPickerUI.dll **\Microsoft.Interop.Tests.dll **\ImageResizer.Test.dll **\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.dll **\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.dll **\Microsoft.Plugin.Folder.UnitTests.dll **\Microsoft.Plugin.Program.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.dll **\Microsoft.Plugin.Uri.UnitTests.dll **\Wox.Test.dll **\Microsoft.PowerToys.Run.Plugin.System.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.dll **\Microsoft.Plugin.WindowsTerminal.UnitTests.dll **\Microsoft.Plugin.WindowWalker.UnitTests.dll **\PreviewPaneUnitTests.dll **\UnitTests-SvgThumbnailProvider.dll **\UnitTests-SvgPreviewHandler.dll **\PowerToys.Hosts.Tests.dll **\MouseJumpUI.UnitTests.dll !**\obj\** !**\ref\** # Native dlls - task: VSTest@2 condition: ne(variables['BuildPlatform'],'arm64') # No arm64 agents to run the tests. displayName: 'Native Tests' inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\KeyboardManagerEngineTest.dll **\KeyboardManagerEditorTest.dll **\UnitTests-CommonLib.dll **\PowerRenameUnitTests.dll **\powerpreviewTest.dll **\UnitTests-FancyZones.dll !**\obj\** - task: PowerShell@2 displayName: Trigger dotnet welcome message so that it does not cause errors on other scripts inputs: targetType: 'inline' script: | dotnet list $(build.sourcesdirectory)\src\common\Common.UI\Common.UI.csproj package - task: PowerShell@2 displayName: Verify Notice.md and Nuget packages match inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNoticeMdAgainstNugetPackages.ps1' arguments: -path '$(build.sourcesdirectory)\' pwsh: true - publish: $(Build.ArtifactStagingDirectory)\logs displayName: Publish Logs artifact: '$(System.JobDisplayName) logs' condition: always()
dfederm
b609cf614db1a2e48a818d9f5e3c8f4f9efea34f
5d1ce08963660e8a2a08ffe59815ef0253e3d08b
Q: What does `-ds:false` do?
DHowett
142
microsoft/PowerToys
30,100
Add Microsoft.MSBuildCache
Add Microsoft.MSBuildCache This change adds a new pipeline which enables caching in the build. This is added as a separate pipeline for now with the eventual goal of enabling for PR and/or CI builds. Documentation for Microsoft.MSBuildCache can be found in the GitHub repo: https://github.com/microsoft/MSBuildCache This change also adds binary logging to the existing ci pipeline to help debugging the build.
null
2023-12-01 21:57:42+00:00
2024-01-15 21:45:28+00:00
.pipelines/ci/templates/build-powertoys-steps.yml
parameters: additionalBuildArguments: '' steps: - checkout: self fetchDepth: 1 submodules: true clean: true - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: PowerShell@2 displayName: Verify XAML formatting inputs: filePath: '$(build.sourcesdirectory)\.pipelines\applyXamlStyling.ps1' arguments: -Passive pwsh: true - task: PowerShell@2 displayName: Verify Nuget package versions for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNugetPackages.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for BugReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\BugReportTool\BugReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for WebcamReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\WebcamReportTool\WebcamReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for StylesReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\StylesReportTool\StylesReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToysSetup.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\installer\PowerToysSetup.sln' pwsh: true - task: PowerShell@2 displayName: Verify and set latest VCToolsVersion usage inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyAndSetLatestVCToolsVersion.ps1' pwsh: true - task: UseDotNet@2 displayName: 'Use .NET 8 SDK' inputs: packageType: sdk version: '8.x' includePreviewVersions: true - task: VisualStudioTestPlatformInstaller@1 displayName: Ensure VSTest Platform - task: VSBuild@1 displayName: 'Build PowerToys.sln' inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build BugReportTool.sln' inputs: solution: '**\BugReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build WebcamReportTool.sln' inputs: solution: '**\WebcamReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build StylesReportTool.sln' inputs: solution: '**\StylesReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: VSBuild@1 displayName: 'Build PowerToys per-machine MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-machine Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} clean: false maximumCpuCount: true - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - task: VSBuild@1 displayName: 'Build PowerToys per-user MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} /p:PerUser=true maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-user Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} /p:PerUser=true clean: false maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true # directly not doing WinAppDriver testing - task: VSTest@2 displayName: 'MS Tests' condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\UnitTests-GcodeThumbnailProvider.dll **\UnitTests-StlThumbnailProvider.dll **\UnitTests-PdfThumbnailProvider.dll **\UnitTests-QoiThumbnailProvider.dll **\Settings.UI.UnitTests.dll **\UnitTests-GcodePreviewHandler.dll **\UnitTests-QoiPreviewHandler.dll **\UnitTests-FancyZonesEditor.dll **\UnitTests-PdfPreviewHandler.dll **\UnitTests-PreviewHandlerCommon.dll **\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.dll **\UnitTest-ColorPickerUI.dll **\Microsoft.Interop.Tests.dll **\ImageResizer.Test.dll **\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.dll **\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.dll **\Microsoft.Plugin.Folder.UnitTests.dll **\Microsoft.Plugin.Program.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.dll **\Microsoft.Plugin.Uri.UnitTests.dll **\Wox.Test.dll **\Microsoft.PowerToys.Run.Plugin.System.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.dll **\Microsoft.Plugin.WindowsTerminal.UnitTests.dll **\Microsoft.Plugin.WindowWalker.UnitTests.dll **\PreviewPaneUnitTests.dll **\UnitTests-SvgThumbnailProvider.dll **\UnitTests-SvgPreviewHandler.dll **\PowerToys.Hosts.Tests.dll **\MouseJumpUI.UnitTests.dll !**\obj\** !**\ref\** # Native dlls - task: VSTest@2 condition: ne(variables['BuildPlatform'],'arm64') # No arm64 agents to run the tests. displayName: 'Native Tests' inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\KeyboardManagerEngineTest.dll **\KeyboardManagerEditorTest.dll **\UnitTests-CommonLib.dll **\PowerRenameUnitTests.dll **\powerpreviewTest.dll **\UnitTests-FancyZones.dll !**\obj\** - task: PowerShell@2 displayName: Trigger dotnet welcome message so that it does not cause errors on other scripts inputs: targetType: 'inline' script: | dotnet list $(build.sourcesdirectory)\src\common\Common.UI\Common.UI.csproj package - task: PowerShell@2 displayName: Verify Notice.md and Nuget packages match inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNoticeMdAgainstNugetPackages.ps1' arguments: -path '$(build.sourcesdirectory)\' pwsh: true
parameters: - name: additionalBuildArguments type: string default: '' - name: enableCaching type: boolean default: false steps: - checkout: self fetchDepth: 1 submodules: true clean: true - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: PowerShell@2 displayName: Verify XAML formatting inputs: filePath: '$(build.sourcesdirectory)\.pipelines\applyXamlStyling.ps1' arguments: -Passive pwsh: true - task: PowerShell@2 displayName: Verify Nuget package versions for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNugetPackages.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for BugReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\BugReportTool\BugReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for WebcamReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\WebcamReportTool\WebcamReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for StylesReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\StylesReportTool\StylesReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToysSetup.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\installer\PowerToysSetup.sln' pwsh: true - task: PowerShell@2 displayName: Verify and set latest VCToolsVersion usage inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyAndSetLatestVCToolsVersion.ps1' pwsh: true - task: UseDotNet@2 displayName: 'Use .NET 8 SDK' inputs: packageType: sdk version: '8.x' includePreviewVersions: true - task: VisualStudioTestPlatformInstaller@1 displayName: Ensure VSTest Platform - ${{ if eq(parameters.enableCaching, true) }}: - task: NuGetToolInstaller@1 displayName: Install NuGet - script: nuget restore packages.config -SolutionDirectory . displayName: 'nuget restore packages.config' - task: VSBuild@1 displayName: 'Build PowerToys.sln' inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' ${{ if eq(parameters.enableCaching, true) }}: msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -graph -reportfileaccesses -p:MSBuildCacheEnabled=true -p:MSBuildCacheLogDirectory=$(Build.ArtifactStagingDirectory)\logs\MSBuildCache -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToys.binlog -ds:false ${{ else }}: msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToys.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true ${{ if eq(parameters.enableCaching, true) }}: env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: VSBuild@1 displayName: 'Build BugReportTool.sln' inputs: solution: '**\BugReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\BugReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build WebcamReportTool.sln' inputs: solution: '**\WebcamReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\WebcamReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build StylesReportTool.sln' inputs: solution: '**\StylesReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\StylesReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: VSBuild@1 displayName: 'Build PowerToys per-machine MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysInstaller.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-machine Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysBootstrapper.binlog -ds:false clean: false msbuildArchitecture: x64 maximumCpuCount: true - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - task: VSBuild@1 displayName: 'Build PowerToys per-user MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} /p:PerUser=true -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysInstaller-PerUser.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-user Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} /p:PerUser=true -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysBootstrapper-PerUser.binlog -ds:false clean: false msbuildArchitecture: x64 maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true # directly not doing WinAppDriver testing - task: VSTest@2 displayName: 'MS Tests' condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\UnitTests-GcodeThumbnailProvider.dll **\UnitTests-StlThumbnailProvider.dll **\UnitTests-PdfThumbnailProvider.dll **\UnitTests-QoiThumbnailProvider.dll **\Settings.UI.UnitTests.dll **\UnitTests-GcodePreviewHandler.dll **\UnitTests-QoiPreviewHandler.dll **\UnitTests-FancyZonesEditor.dll **\UnitTests-PdfPreviewHandler.dll **\UnitTests-PreviewHandlerCommon.dll **\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.dll **\UnitTest-ColorPickerUI.dll **\Microsoft.Interop.Tests.dll **\ImageResizer.Test.dll **\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.dll **\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.dll **\Microsoft.Plugin.Folder.UnitTests.dll **\Microsoft.Plugin.Program.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.dll **\Microsoft.Plugin.Uri.UnitTests.dll **\Wox.Test.dll **\Microsoft.PowerToys.Run.Plugin.System.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.dll **\Microsoft.Plugin.WindowsTerminal.UnitTests.dll **\Microsoft.Plugin.WindowWalker.UnitTests.dll **\PreviewPaneUnitTests.dll **\UnitTests-SvgThumbnailProvider.dll **\UnitTests-SvgPreviewHandler.dll **\PowerToys.Hosts.Tests.dll **\MouseJumpUI.UnitTests.dll !**\obj\** !**\ref\** # Native dlls - task: VSTest@2 condition: ne(variables['BuildPlatform'],'arm64') # No arm64 agents to run the tests. displayName: 'Native Tests' inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\KeyboardManagerEngineTest.dll **\KeyboardManagerEditorTest.dll **\UnitTests-CommonLib.dll **\PowerRenameUnitTests.dll **\powerpreviewTest.dll **\UnitTests-FancyZones.dll !**\obj\** - task: PowerShell@2 displayName: Trigger dotnet welcome message so that it does not cause errors on other scripts inputs: targetType: 'inline' script: | dotnet list $(build.sourcesdirectory)\src\common\Common.UI\Common.UI.csproj package - task: PowerShell@2 displayName: Verify Notice.md and Nuget packages match inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNoticeMdAgainstNugetPackages.ps1' arguments: -path '$(build.sourcesdirectory)\' pwsh: true - publish: $(Build.ArtifactStagingDirectory)\logs displayName: Publish Logs artifact: '$(System.JobDisplayName) logs' condition: always()
dfederm
b609cf614db1a2e48a818d9f5e3c8f4f9efea34f
5d1ce08963660e8a2a08ffe59815ef0253e3d08b
TIL
dfederm
143
microsoft/PowerToys
30,100
Add Microsoft.MSBuildCache
Add Microsoft.MSBuildCache This change adds a new pipeline which enables caching in the build. This is added as a separate pipeline for now with the eventual goal of enabling for PR and/or CI builds. Documentation for Microsoft.MSBuildCache can be found in the GitHub repo: https://github.com/microsoft/MSBuildCache This change also adds binary logging to the existing ci pipeline to help debugging the build.
null
2023-12-01 21:57:42+00:00
2024-01-15 21:45:28+00:00
.pipelines/ci/templates/build-powertoys-steps.yml
parameters: additionalBuildArguments: '' steps: - checkout: self fetchDepth: 1 submodules: true clean: true - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: PowerShell@2 displayName: Verify XAML formatting inputs: filePath: '$(build.sourcesdirectory)\.pipelines\applyXamlStyling.ps1' arguments: -Passive pwsh: true - task: PowerShell@2 displayName: Verify Nuget package versions for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNugetPackages.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for BugReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\BugReportTool\BugReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for WebcamReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\WebcamReportTool\WebcamReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for StylesReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\StylesReportTool\StylesReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToysSetup.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\installer\PowerToysSetup.sln' pwsh: true - task: PowerShell@2 displayName: Verify and set latest VCToolsVersion usage inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyAndSetLatestVCToolsVersion.ps1' pwsh: true - task: UseDotNet@2 displayName: 'Use .NET 8 SDK' inputs: packageType: sdk version: '8.x' includePreviewVersions: true - task: VisualStudioTestPlatformInstaller@1 displayName: Ensure VSTest Platform - task: VSBuild@1 displayName: 'Build PowerToys.sln' inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build BugReportTool.sln' inputs: solution: '**\BugReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build WebcamReportTool.sln' inputs: solution: '**\WebcamReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build StylesReportTool.sln' inputs: solution: '**\StylesReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: VSBuild@1 displayName: 'Build PowerToys per-machine MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-machine Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} clean: false maximumCpuCount: true - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - task: VSBuild@1 displayName: 'Build PowerToys per-user MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} /p:PerUser=true maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-user Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} /p:PerUser=true clean: false maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true # directly not doing WinAppDriver testing - task: VSTest@2 displayName: 'MS Tests' condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\UnitTests-GcodeThumbnailProvider.dll **\UnitTests-StlThumbnailProvider.dll **\UnitTests-PdfThumbnailProvider.dll **\UnitTests-QoiThumbnailProvider.dll **\Settings.UI.UnitTests.dll **\UnitTests-GcodePreviewHandler.dll **\UnitTests-QoiPreviewHandler.dll **\UnitTests-FancyZonesEditor.dll **\UnitTests-PdfPreviewHandler.dll **\UnitTests-PreviewHandlerCommon.dll **\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.dll **\UnitTest-ColorPickerUI.dll **\Microsoft.Interop.Tests.dll **\ImageResizer.Test.dll **\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.dll **\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.dll **\Microsoft.Plugin.Folder.UnitTests.dll **\Microsoft.Plugin.Program.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.dll **\Microsoft.Plugin.Uri.UnitTests.dll **\Wox.Test.dll **\Microsoft.PowerToys.Run.Plugin.System.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.dll **\Microsoft.Plugin.WindowsTerminal.UnitTests.dll **\Microsoft.Plugin.WindowWalker.UnitTests.dll **\PreviewPaneUnitTests.dll **\UnitTests-SvgThumbnailProvider.dll **\UnitTests-SvgPreviewHandler.dll **\PowerToys.Hosts.Tests.dll **\MouseJumpUI.UnitTests.dll !**\obj\** !**\ref\** # Native dlls - task: VSTest@2 condition: ne(variables['BuildPlatform'],'arm64') # No arm64 agents to run the tests. displayName: 'Native Tests' inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\KeyboardManagerEngineTest.dll **\KeyboardManagerEditorTest.dll **\UnitTests-CommonLib.dll **\PowerRenameUnitTests.dll **\powerpreviewTest.dll **\UnitTests-FancyZones.dll !**\obj\** - task: PowerShell@2 displayName: Trigger dotnet welcome message so that it does not cause errors on other scripts inputs: targetType: 'inline' script: | dotnet list $(build.sourcesdirectory)\src\common\Common.UI\Common.UI.csproj package - task: PowerShell@2 displayName: Verify Notice.md and Nuget packages match inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNoticeMdAgainstNugetPackages.ps1' arguments: -path '$(build.sourcesdirectory)\' pwsh: true
parameters: - name: additionalBuildArguments type: string default: '' - name: enableCaching type: boolean default: false steps: - checkout: self fetchDepth: 1 submodules: true clean: true - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: PowerShell@2 displayName: Verify XAML formatting inputs: filePath: '$(build.sourcesdirectory)\.pipelines\applyXamlStyling.ps1' arguments: -Passive pwsh: true - task: PowerShell@2 displayName: Verify Nuget package versions for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNugetPackages.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for BugReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\BugReportTool\BugReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for WebcamReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\WebcamReportTool\WebcamReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for StylesReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\StylesReportTool\StylesReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToysSetup.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\installer\PowerToysSetup.sln' pwsh: true - task: PowerShell@2 displayName: Verify and set latest VCToolsVersion usage inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyAndSetLatestVCToolsVersion.ps1' pwsh: true - task: UseDotNet@2 displayName: 'Use .NET 8 SDK' inputs: packageType: sdk version: '8.x' includePreviewVersions: true - task: VisualStudioTestPlatformInstaller@1 displayName: Ensure VSTest Platform - ${{ if eq(parameters.enableCaching, true) }}: - task: NuGetToolInstaller@1 displayName: Install NuGet - script: nuget restore packages.config -SolutionDirectory . displayName: 'nuget restore packages.config' - task: VSBuild@1 displayName: 'Build PowerToys.sln' inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' ${{ if eq(parameters.enableCaching, true) }}: msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -graph -reportfileaccesses -p:MSBuildCacheEnabled=true -p:MSBuildCacheLogDirectory=$(Build.ArtifactStagingDirectory)\logs\MSBuildCache -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToys.binlog -ds:false ${{ else }}: msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToys.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true ${{ if eq(parameters.enableCaching, true) }}: env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: VSBuild@1 displayName: 'Build BugReportTool.sln' inputs: solution: '**\BugReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\BugReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build WebcamReportTool.sln' inputs: solution: '**\WebcamReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\WebcamReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build StylesReportTool.sln' inputs: solution: '**\StylesReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\StylesReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: VSBuild@1 displayName: 'Build PowerToys per-machine MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysInstaller.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-machine Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysBootstrapper.binlog -ds:false clean: false msbuildArchitecture: x64 maximumCpuCount: true - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - task: VSBuild@1 displayName: 'Build PowerToys per-user MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} /p:PerUser=true -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysInstaller-PerUser.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-user Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} /p:PerUser=true -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysBootstrapper-PerUser.binlog -ds:false clean: false msbuildArchitecture: x64 maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true # directly not doing WinAppDriver testing - task: VSTest@2 displayName: 'MS Tests' condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\UnitTests-GcodeThumbnailProvider.dll **\UnitTests-StlThumbnailProvider.dll **\UnitTests-PdfThumbnailProvider.dll **\UnitTests-QoiThumbnailProvider.dll **\Settings.UI.UnitTests.dll **\UnitTests-GcodePreviewHandler.dll **\UnitTests-QoiPreviewHandler.dll **\UnitTests-FancyZonesEditor.dll **\UnitTests-PdfPreviewHandler.dll **\UnitTests-PreviewHandlerCommon.dll **\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.dll **\UnitTest-ColorPickerUI.dll **\Microsoft.Interop.Tests.dll **\ImageResizer.Test.dll **\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.dll **\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.dll **\Microsoft.Plugin.Folder.UnitTests.dll **\Microsoft.Plugin.Program.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.dll **\Microsoft.Plugin.Uri.UnitTests.dll **\Wox.Test.dll **\Microsoft.PowerToys.Run.Plugin.System.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.dll **\Microsoft.Plugin.WindowsTerminal.UnitTests.dll **\Microsoft.Plugin.WindowWalker.UnitTests.dll **\PreviewPaneUnitTests.dll **\UnitTests-SvgThumbnailProvider.dll **\UnitTests-SvgPreviewHandler.dll **\PowerToys.Hosts.Tests.dll **\MouseJumpUI.UnitTests.dll !**\obj\** !**\ref\** # Native dlls - task: VSTest@2 condition: ne(variables['BuildPlatform'],'arm64') # No arm64 agents to run the tests. displayName: 'Native Tests' inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\KeyboardManagerEngineTest.dll **\KeyboardManagerEditorTest.dll **\UnitTests-CommonLib.dll **\PowerRenameUnitTests.dll **\powerpreviewTest.dll **\UnitTests-FancyZones.dll !**\obj\** - task: PowerShell@2 displayName: Trigger dotnet welcome message so that it does not cause errors on other scripts inputs: targetType: 'inline' script: | dotnet list $(build.sourcesdirectory)\src\common\Common.UI\Common.UI.csproj package - task: PowerShell@2 displayName: Verify Notice.md and Nuget packages match inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNoticeMdAgainstNugetPackages.ps1' arguments: -path '$(build.sourcesdirectory)\' pwsh: true - publish: $(Build.ArtifactStagingDirectory)\logs displayName: Publish Logs artifact: '$(System.JobDisplayName) logs' condition: always()
dfederm
b609cf614db1a2e48a818d9f5e3c8f4f9efea34f
5d1ce08963660e8a2a08ffe59815ef0253e3d08b
I... didn't know that was a thing. That makes it much cleaner!
dfederm
144
microsoft/PowerToys
30,100
Add Microsoft.MSBuildCache
Add Microsoft.MSBuildCache This change adds a new pipeline which enables caching in the build. This is added as a separate pipeline for now with the eventual goal of enabling for PR and/or CI builds. Documentation for Microsoft.MSBuildCache can be found in the GitHub repo: https://github.com/microsoft/MSBuildCache This change also adds binary logging to the existing ci pipeline to help debugging the build.
null
2023-12-01 21:57:42+00:00
2024-01-15 21:45:28+00:00
.pipelines/ci/templates/build-powertoys-steps.yml
parameters: additionalBuildArguments: '' steps: - checkout: self fetchDepth: 1 submodules: true clean: true - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: PowerShell@2 displayName: Verify XAML formatting inputs: filePath: '$(build.sourcesdirectory)\.pipelines\applyXamlStyling.ps1' arguments: -Passive pwsh: true - task: PowerShell@2 displayName: Verify Nuget package versions for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNugetPackages.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for BugReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\BugReportTool\BugReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for WebcamReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\WebcamReportTool\WebcamReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for StylesReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\StylesReportTool\StylesReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToysSetup.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\installer\PowerToysSetup.sln' pwsh: true - task: PowerShell@2 displayName: Verify and set latest VCToolsVersion usage inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyAndSetLatestVCToolsVersion.ps1' pwsh: true - task: UseDotNet@2 displayName: 'Use .NET 8 SDK' inputs: packageType: sdk version: '8.x' includePreviewVersions: true - task: VisualStudioTestPlatformInstaller@1 displayName: Ensure VSTest Platform - task: VSBuild@1 displayName: 'Build PowerToys.sln' inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build BugReportTool.sln' inputs: solution: '**\BugReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build WebcamReportTool.sln' inputs: solution: '**\WebcamReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build StylesReportTool.sln' inputs: solution: '**\StylesReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: VSBuild@1 displayName: 'Build PowerToys per-machine MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-machine Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} clean: false maximumCpuCount: true - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - task: VSBuild@1 displayName: 'Build PowerToys per-user MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} /p:PerUser=true maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-user Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} /p:PerUser=true clean: false maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true # directly not doing WinAppDriver testing - task: VSTest@2 displayName: 'MS Tests' condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\UnitTests-GcodeThumbnailProvider.dll **\UnitTests-StlThumbnailProvider.dll **\UnitTests-PdfThumbnailProvider.dll **\UnitTests-QoiThumbnailProvider.dll **\Settings.UI.UnitTests.dll **\UnitTests-GcodePreviewHandler.dll **\UnitTests-QoiPreviewHandler.dll **\UnitTests-FancyZonesEditor.dll **\UnitTests-PdfPreviewHandler.dll **\UnitTests-PreviewHandlerCommon.dll **\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.dll **\UnitTest-ColorPickerUI.dll **\Microsoft.Interop.Tests.dll **\ImageResizer.Test.dll **\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.dll **\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.dll **\Microsoft.Plugin.Folder.UnitTests.dll **\Microsoft.Plugin.Program.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.dll **\Microsoft.Plugin.Uri.UnitTests.dll **\Wox.Test.dll **\Microsoft.PowerToys.Run.Plugin.System.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.dll **\Microsoft.Plugin.WindowsTerminal.UnitTests.dll **\Microsoft.Plugin.WindowWalker.UnitTests.dll **\PreviewPaneUnitTests.dll **\UnitTests-SvgThumbnailProvider.dll **\UnitTests-SvgPreviewHandler.dll **\PowerToys.Hosts.Tests.dll **\MouseJumpUI.UnitTests.dll !**\obj\** !**\ref\** # Native dlls - task: VSTest@2 condition: ne(variables['BuildPlatform'],'arm64') # No arm64 agents to run the tests. displayName: 'Native Tests' inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\KeyboardManagerEngineTest.dll **\KeyboardManagerEditorTest.dll **\UnitTests-CommonLib.dll **\PowerRenameUnitTests.dll **\powerpreviewTest.dll **\UnitTests-FancyZones.dll !**\obj\** - task: PowerShell@2 displayName: Trigger dotnet welcome message so that it does not cause errors on other scripts inputs: targetType: 'inline' script: | dotnet list $(build.sourcesdirectory)\src\common\Common.UI\Common.UI.csproj package - task: PowerShell@2 displayName: Verify Notice.md and Nuget packages match inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNoticeMdAgainstNugetPackages.ps1' arguments: -path '$(build.sourcesdirectory)\' pwsh: true
parameters: - name: additionalBuildArguments type: string default: '' - name: enableCaching type: boolean default: false steps: - checkout: self fetchDepth: 1 submodules: true clean: true - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: PowerShell@2 displayName: Verify XAML formatting inputs: filePath: '$(build.sourcesdirectory)\.pipelines\applyXamlStyling.ps1' arguments: -Passive pwsh: true - task: PowerShell@2 displayName: Verify Nuget package versions for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNugetPackages.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToys.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\PowerToys.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for BugReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\BugReportTool\BugReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for WebcamReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\WebcamReportTool\WebcamReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for StylesReportTool.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\tools\StylesReportTool\StylesReportTool.sln' pwsh: true - task: PowerShell@2 displayName: Verify Arm64 configuration for PowerToysSetup.sln inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyArm64Configuration.ps1' arguments: -solution '$(build.sourcesdirectory)\installer\PowerToysSetup.sln' pwsh: true - task: PowerShell@2 displayName: Verify and set latest VCToolsVersion usage inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyAndSetLatestVCToolsVersion.ps1' pwsh: true - task: UseDotNet@2 displayName: 'Use .NET 8 SDK' inputs: packageType: sdk version: '8.x' includePreviewVersions: true - task: VisualStudioTestPlatformInstaller@1 displayName: Ensure VSTest Platform - ${{ if eq(parameters.enableCaching, true) }}: - task: NuGetToolInstaller@1 displayName: Install NuGet - script: nuget restore packages.config -SolutionDirectory . displayName: 'nuget restore packages.config' - task: VSBuild@1 displayName: 'Build PowerToys.sln' inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' ${{ if eq(parameters.enableCaching, true) }}: msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -graph -reportfileaccesses -p:MSBuildCacheEnabled=true -p:MSBuildCacheLogDirectory=$(Build.ArtifactStagingDirectory)\logs\MSBuildCache -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToys.binlog -ds:false ${{ else }}: msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToys.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true ${{ if eq(parameters.enableCaching, true) }}: env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) - task: VSBuild@1 displayName: 'Build BugReportTool.sln' inputs: solution: '**\BugReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\BugReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build WebcamReportTool.sln' inputs: solution: '**\WebcamReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\WebcamReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build StylesReportTool.sln' inputs: solution: '**\StylesReportTool.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\StylesReportTool.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: VSBuild@1 displayName: 'Build PowerToys per-machine MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysInstaller.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-machine Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysBootstrapper.binlog -ds:false clean: false msbuildArchitecture: x64 maximumCpuCount: true - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - task: VSBuild@1 displayName: 'Build PowerToys per-user MSI' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysInstaller -restore ${{ parameters.additionalBuildArguments }} /p:PerUser=true -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysInstaller-PerUser.binlog -ds:false msbuildArchitecture: x64 maximumCpuCount: true - task: VSBuild@1 displayName: 'Build PowerToys per-user Bootstrapper' inputs: solution: '**\installer\PowerToysSetup.sln' vsVersion: 17.0 platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' msbuildArgs: /t:PowerToysBootstrapper ${{ parameters.additionalBuildArguments }} /p:PerUser=true -bl:$(Build.ArtifactStagingDirectory)\logs\PowerToysSetup-PowerToysBootstrapper-PerUser.binlog -ds:false clean: false msbuildArchitecture: x64 maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true # directly not doing WinAppDriver testing - task: VSTest@2 displayName: 'MS Tests' condition: ne(variables['BuildPlatform'], 'arm64') # No arm64 agents to run the tests. inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\UnitTests-GcodeThumbnailProvider.dll **\UnitTests-StlThumbnailProvider.dll **\UnitTests-PdfThumbnailProvider.dll **\UnitTests-QoiThumbnailProvider.dll **\Settings.UI.UnitTests.dll **\UnitTests-GcodePreviewHandler.dll **\UnitTests-QoiPreviewHandler.dll **\UnitTests-FancyZonesEditor.dll **\UnitTests-PdfPreviewHandler.dll **\UnitTests-PreviewHandlerCommon.dll **\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.dll **\UnitTest-ColorPickerUI.dll **\Microsoft.Interop.Tests.dll **\ImageResizer.Test.dll **\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.dll **\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.dll **\Microsoft.Plugin.Folder.UnitTests.dll **\Microsoft.Plugin.Program.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.dll **\Microsoft.Plugin.Uri.UnitTests.dll **\Wox.Test.dll **\Microsoft.PowerToys.Run.Plugin.System.UnitTests.dll **\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.dll **\Microsoft.Plugin.WindowsTerminal.UnitTests.dll **\Microsoft.Plugin.WindowWalker.UnitTests.dll **\PreviewPaneUnitTests.dll **\UnitTests-SvgThumbnailProvider.dll **\UnitTests-SvgPreviewHandler.dll **\PowerToys.Hosts.Tests.dll **\MouseJumpUI.UnitTests.dll !**\obj\** !**\ref\** # Native dlls - task: VSTest@2 condition: ne(variables['BuildPlatform'],'arm64') # No arm64 agents to run the tests. displayName: 'Native Tests' inputs: platform: '$(BuildPlatform)' configuration: '$(BuildConfiguration)' testSelector: 'testAssemblies' testAssemblyVer2: | **\KeyboardManagerEngineTest.dll **\KeyboardManagerEditorTest.dll **\UnitTests-CommonLib.dll **\PowerRenameUnitTests.dll **\powerpreviewTest.dll **\UnitTests-FancyZones.dll !**\obj\** - task: PowerShell@2 displayName: Trigger dotnet welcome message so that it does not cause errors on other scripts inputs: targetType: 'inline' script: | dotnet list $(build.sourcesdirectory)\src\common\Common.UI\Common.UI.csproj package - task: PowerShell@2 displayName: Verify Notice.md and Nuget packages match inputs: filePath: '$(build.sourcesdirectory)\.pipelines\verifyNoticeMdAgainstNugetPackages.ps1' arguments: -path '$(build.sourcesdirectory)\' pwsh: true - publish: $(Build.ArtifactStagingDirectory)\logs displayName: Publish Logs artifact: '$(System.JobDisplayName) logs' condition: always()
dfederm
b609cf614db1a2e48a818d9f5e3c8f4f9efea34f
5d1ce08963660e8a2a08ffe59815ef0253e3d08b
Turns off the detailed summary that comes along with the binlog. Without this it'll spew a whole bunch of perf data to the console, which if you wanted you could just get from the binlog (and you're not getting today anyway).
dfederm
145
microsoft/PowerToys
30,100
Add Microsoft.MSBuildCache
Add Microsoft.MSBuildCache This change adds a new pipeline which enables caching in the build. This is added as a separate pipeline for now with the eventual goal of enabling for PR and/or CI builds. Documentation for Microsoft.MSBuildCache can be found in the GitHub repo: https://github.com/microsoft/MSBuildCache This change also adds binary logging to the existing ci pipeline to help debugging the build.
null
2023-12-01 21:57:42+00:00
2024-01-15 21:45:28+00:00
Directory.Build.props
<Project> <PropertyGroup> <Copyright>Copyright (C) 2024 Microsoft Corporation</Copyright> <AssemblyCompany>Microsoft Corp.</AssemblyCompany> <AssemblyCopyright>Copyright (C) 2024 Microsoft Corporation</AssemblyCopyright> <AssemblyProduct>PowerToys</AssemblyProduct> <Company>Microsoft Corporation</Company> <NeutralLanguage>en-US</NeutralLanguage> <Platforms>x64;ARM64</Platforms> <PackageTags>PowerToys</PackageTags> <EnableNETAnalyzers>true</EnableNETAnalyzers> <AnalysisMode>Recommended</AnalysisMode> <_SkipUpgradeNetAnalyzersNuGetWarning>true</_SkipUpgradeNetAnalyzersNuGetWarning> <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> <!-- Don't add source revision hash to the product version of binaries. --> <PlatformTarget>$(Platform)</PlatformTarget> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <RepositoryUrl>https://github.com/microsoft/PowerToys</RepositoryUrl> <RepositoryType>GitHub</RepositoryType> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <TreatWarningsAsErrors>true</TreatWarningsAsErrors> </PropertyGroup> <PropertyGroup> <_PropertySheetDisplayName>PowerToys.Root.Props</_PropertySheetDisplayName> <ForceImportBeforeCppProps>$(MsbuildThisFileDirectory)\Cpp.Build.props</ForceImportBeforeCppProps> </PropertyGroup> <ItemGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <PackageReference Include="StyleCop.Analyzers"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> <Compile Include="$(MSBuildThisFileDirectory)\src\codeAnalysis\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" /> <AdditionalFiles Include="$(MSBuildThisFileDirectory)\src\codeAnalysis\StyleCop.json" Link="StyleCop.json" /> <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> </ItemGroup> </Project>
<Project> <PropertyGroup> <Copyright>Copyright (C) 2024 Microsoft Corporation</Copyright> <AssemblyCompany>Microsoft Corp.</AssemblyCompany> <AssemblyCopyright>Copyright (C) 2024 Microsoft Corporation</AssemblyCopyright> <AssemblyProduct>PowerToys</AssemblyProduct> <Company>Microsoft Corporation</Company> <NeutralLanguage>en-US</NeutralLanguage> <Platforms>x64;ARM64</Platforms> <PackageTags>PowerToys</PackageTags> <EnableNETAnalyzers>true</EnableNETAnalyzers> <AnalysisMode>Recommended</AnalysisMode> <_SkipUpgradeNetAnalyzersNuGetWarning>true</_SkipUpgradeNetAnalyzersNuGetWarning> <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> <!-- Don't add source revision hash to the product version of binaries. --> <PlatformTarget>$(Platform)</PlatformTarget> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <RepositoryUrl>https://github.com/microsoft/PowerToys</RepositoryUrl> <RepositoryType>GitHub</RepositoryType> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <TreatWarningsAsErrors>true</TreatWarningsAsErrors> </PropertyGroup> <PropertyGroup> <_PropertySheetDisplayName>PowerToys.Root.Props</_PropertySheetDisplayName> <ForceImportBeforeCppProps>$(MsbuildThisFileDirectory)\Cpp.Build.props</ForceImportBeforeCppProps> </PropertyGroup> <ItemGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <PackageReference Include="StyleCop.Analyzers"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> <Compile Include="$(MSBuildThisFileDirectory)\src\codeAnalysis\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" /> <AdditionalFiles Include="$(MSBuildThisFileDirectory)\src\codeAnalysis\StyleCop.json" Link="StyleCop.json" /> <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> </ItemGroup> <!-- MSBuildCache --> <PropertyGroup> <!-- Off by default --> <MSBuildCacheEnabled Condition="'$(MSBuildCacheEnabled)' == ''">false</MSBuildCacheEnabled> <!-- In Azure pipelines, use Pipeline Caching as the cache storage backend. Otherwise, use the local cache. --> <MSBuildCachePackageName Condition="'$(TF_BUILD)' != ''">Microsoft.MSBuildCache.AzurePipelines</MSBuildCachePackageName> <MSBuildCachePackageName Condition="'$(MSBuildCachePackageName)' == ''">Microsoft.MSBuildCache.Local</MSBuildCachePackageName> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildCacheEnabled)' == 'true'"> <!-- Change this to bust the cache --> <MSBuildCacheCacheUniverse Condition="'$(MSBuildCacheCacheUniverse)' == ''">202310210737</MSBuildCacheCacheUniverse> <!-- A tool inside Microsoft.WindowsAppSDK uses AppInsights which appears to read packages\Microsoft.WindowsAppSDK.1.4.230913002\tools\net472\ApplicationInsights.config after the project is finished, likely in a detached process. This is acceptable and should not impact cache correctness. --> <MSBuildCacheAllowFileAccessAfterProjectFinishFilePatterns>$(MSBuildCacheAllowFileAccessAfterProjectFinishFilePatterns);packages\Microsoft.WindowsAppSDK.*\tools\net472\ApplicationInsights.config</MSBuildCacheAllowFileAccessAfterProjectFinishFilePatterns> <!-- This repo uses a common output directory with many projects writing duplicate outputs. Allow everything, but note this costs some performance in the form of requiring the cache to use copies instead of hardlinks when pulling from cache. --> <MSBuildCacheIdenticalDuplicateOutputPatterns>$(MSBuildCacheIdenticalDuplicateOutputPatterns);**</MSBuildCacheIdenticalDuplicateOutputPatterns> <!-- version of MSBuildCache is not part of the cache key --> <PackagesConfigFile>$(MSBuildThisFileDirectory)packages.config</PackagesConfigFile> <MSBuildCacheIgnoredInputPatterns>$(MSBuildCacheIgnoredInputPatterns);$(PackagesConfigFile)</MSBuildCacheIgnoredInputPatterns> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildCacheEnabled)' == 'true' and '$(MSBuildCachePackageRoot)' == ''"> <PackagesConfigContents>$([System.IO.File]::ReadAllText("$(PackagesConfigFile)"))</PackagesConfigContents> <MSBuildCachePackageVersion>$([System.Text.RegularExpressions.Regex]::Match($(PackagesConfigContents), 'Microsoft.MSBuildCache.*?version="(.*?)"').Groups[1].Value)</MSBuildCachePackageVersion> <MSBuildCachePackageRoot>$(MSBuildThisFileDirectory)packages\$(MSBuildCachePackageName).$(MSBuildCachePackageVersion)</MSBuildCachePackageRoot> <MSBuildCacheSharedCompilationPackageRoot>$(MSBuildThisFileDirectory)packages\Microsoft.MSBuildCache.SharedCompilation.$(MSBuildCachePackageVersion)</MSBuildCacheSharedCompilationPackageRoot> </PropertyGroup> <ImportGroup Condition="'$(MSBuildCacheEnabled)' == 'true'"> <Import Project="$(MSBuildCachePackageRoot)\build\$(MSBuildCachePackageName).props" /> <Import Project="$(MSBuildCacheSharedCompilationPackageRoot)\build\Microsoft.MSBuildCache.SharedCompilation.props" /> </ImportGroup> </Project>
dfederm
b609cf614db1a2e48a818d9f5e3c8f4f9efea34f
5d1ce08963660e8a2a08ffe59815ef0253e3d08b
yikes, matching xml with a regex. oh well, fine by me
DHowett
146
microsoft/PowerToys
30,100
Add Microsoft.MSBuildCache
Add Microsoft.MSBuildCache This change adds a new pipeline which enables caching in the build. This is added as a separate pipeline for now with the eventual goal of enabling for PR and/or CI builds. Documentation for Microsoft.MSBuildCache can be found in the GitHub repo: https://github.com/microsoft/MSBuildCache This change also adds binary logging to the existing ci pipeline to help debugging the build.
null
2023-12-01 21:57:42+00:00
2024-01-15 21:45:28+00:00
Directory.Build.props
<Project> <PropertyGroup> <Copyright>Copyright (C) 2024 Microsoft Corporation</Copyright> <AssemblyCompany>Microsoft Corp.</AssemblyCompany> <AssemblyCopyright>Copyright (C) 2024 Microsoft Corporation</AssemblyCopyright> <AssemblyProduct>PowerToys</AssemblyProduct> <Company>Microsoft Corporation</Company> <NeutralLanguage>en-US</NeutralLanguage> <Platforms>x64;ARM64</Platforms> <PackageTags>PowerToys</PackageTags> <EnableNETAnalyzers>true</EnableNETAnalyzers> <AnalysisMode>Recommended</AnalysisMode> <_SkipUpgradeNetAnalyzersNuGetWarning>true</_SkipUpgradeNetAnalyzersNuGetWarning> <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> <!-- Don't add source revision hash to the product version of binaries. --> <PlatformTarget>$(Platform)</PlatformTarget> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <RepositoryUrl>https://github.com/microsoft/PowerToys</RepositoryUrl> <RepositoryType>GitHub</RepositoryType> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <TreatWarningsAsErrors>true</TreatWarningsAsErrors> </PropertyGroup> <PropertyGroup> <_PropertySheetDisplayName>PowerToys.Root.Props</_PropertySheetDisplayName> <ForceImportBeforeCppProps>$(MsbuildThisFileDirectory)\Cpp.Build.props</ForceImportBeforeCppProps> </PropertyGroup> <ItemGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <PackageReference Include="StyleCop.Analyzers"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> <Compile Include="$(MSBuildThisFileDirectory)\src\codeAnalysis\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" /> <AdditionalFiles Include="$(MSBuildThisFileDirectory)\src\codeAnalysis\StyleCop.json" Link="StyleCop.json" /> <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> </ItemGroup> </Project>
<Project> <PropertyGroup> <Copyright>Copyright (C) 2024 Microsoft Corporation</Copyright> <AssemblyCompany>Microsoft Corp.</AssemblyCompany> <AssemblyCopyright>Copyright (C) 2024 Microsoft Corporation</AssemblyCopyright> <AssemblyProduct>PowerToys</AssemblyProduct> <Company>Microsoft Corporation</Company> <NeutralLanguage>en-US</NeutralLanguage> <Platforms>x64;ARM64</Platforms> <PackageTags>PowerToys</PackageTags> <EnableNETAnalyzers>true</EnableNETAnalyzers> <AnalysisMode>Recommended</AnalysisMode> <_SkipUpgradeNetAnalyzersNuGetWarning>true</_SkipUpgradeNetAnalyzersNuGetWarning> <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> <!-- Don't add source revision hash to the product version of binaries. --> <PlatformTarget>$(Platform)</PlatformTarget> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <RepositoryUrl>https://github.com/microsoft/PowerToys</RepositoryUrl> <RepositoryType>GitHub</RepositoryType> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <TreatWarningsAsErrors>true</TreatWarningsAsErrors> </PropertyGroup> <PropertyGroup> <_PropertySheetDisplayName>PowerToys.Root.Props</_PropertySheetDisplayName> <ForceImportBeforeCppProps>$(MsbuildThisFileDirectory)\Cpp.Build.props</ForceImportBeforeCppProps> </PropertyGroup> <ItemGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <PackageReference Include="StyleCop.Analyzers"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> <Compile Include="$(MSBuildThisFileDirectory)\src\codeAnalysis\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" /> <AdditionalFiles Include="$(MSBuildThisFileDirectory)\src\codeAnalysis\StyleCop.json" Link="StyleCop.json" /> <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> </ItemGroup> <!-- MSBuildCache --> <PropertyGroup> <!-- Off by default --> <MSBuildCacheEnabled Condition="'$(MSBuildCacheEnabled)' == ''">false</MSBuildCacheEnabled> <!-- In Azure pipelines, use Pipeline Caching as the cache storage backend. Otherwise, use the local cache. --> <MSBuildCachePackageName Condition="'$(TF_BUILD)' != ''">Microsoft.MSBuildCache.AzurePipelines</MSBuildCachePackageName> <MSBuildCachePackageName Condition="'$(MSBuildCachePackageName)' == ''">Microsoft.MSBuildCache.Local</MSBuildCachePackageName> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildCacheEnabled)' == 'true'"> <!-- Change this to bust the cache --> <MSBuildCacheCacheUniverse Condition="'$(MSBuildCacheCacheUniverse)' == ''">202310210737</MSBuildCacheCacheUniverse> <!-- A tool inside Microsoft.WindowsAppSDK uses AppInsights which appears to read packages\Microsoft.WindowsAppSDK.1.4.230913002\tools\net472\ApplicationInsights.config after the project is finished, likely in a detached process. This is acceptable and should not impact cache correctness. --> <MSBuildCacheAllowFileAccessAfterProjectFinishFilePatterns>$(MSBuildCacheAllowFileAccessAfterProjectFinishFilePatterns);packages\Microsoft.WindowsAppSDK.*\tools\net472\ApplicationInsights.config</MSBuildCacheAllowFileAccessAfterProjectFinishFilePatterns> <!-- This repo uses a common output directory with many projects writing duplicate outputs. Allow everything, but note this costs some performance in the form of requiring the cache to use copies instead of hardlinks when pulling from cache. --> <MSBuildCacheIdenticalDuplicateOutputPatterns>$(MSBuildCacheIdenticalDuplicateOutputPatterns);**</MSBuildCacheIdenticalDuplicateOutputPatterns> <!-- version of MSBuildCache is not part of the cache key --> <PackagesConfigFile>$(MSBuildThisFileDirectory)packages.config</PackagesConfigFile> <MSBuildCacheIgnoredInputPatterns>$(MSBuildCacheIgnoredInputPatterns);$(PackagesConfigFile)</MSBuildCacheIgnoredInputPatterns> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildCacheEnabled)' == 'true' and '$(MSBuildCachePackageRoot)' == ''"> <PackagesConfigContents>$([System.IO.File]::ReadAllText("$(PackagesConfigFile)"))</PackagesConfigContents> <MSBuildCachePackageVersion>$([System.Text.RegularExpressions.Regex]::Match($(PackagesConfigContents), 'Microsoft.MSBuildCache.*?version="(.*?)"').Groups[1].Value)</MSBuildCachePackageVersion> <MSBuildCachePackageRoot>$(MSBuildThisFileDirectory)packages\$(MSBuildCachePackageName).$(MSBuildCachePackageVersion)</MSBuildCachePackageRoot> <MSBuildCacheSharedCompilationPackageRoot>$(MSBuildThisFileDirectory)packages\Microsoft.MSBuildCache.SharedCompilation.$(MSBuildCachePackageVersion)</MSBuildCacheSharedCompilationPackageRoot> </PropertyGroup> <ImportGroup Condition="'$(MSBuildCacheEnabled)' == 'true'"> <Import Project="$(MSBuildCachePackageRoot)\build\$(MSBuildCachePackageName).props" /> <Import Project="$(MSBuildCacheSharedCompilationPackageRoot)\build\Microsoft.MSBuildCache.SharedCompilation.props" /> </ImportGroup> </Project>
dfederm
b609cf614db1a2e48a818d9f5e3c8f4f9efea34f
5d1ce08963660e8a2a08ffe59815ef0253e3d08b
(can you use `[System.Xml]` for this? is it worth it?)
DHowett
147
microsoft/PowerToys
30,100
Add Microsoft.MSBuildCache
Add Microsoft.MSBuildCache This change adds a new pipeline which enables caching in the build. This is added as a separate pipeline for now with the eventual goal of enabling for PR and/or CI builds. Documentation for Microsoft.MSBuildCache can be found in the GitHub repo: https://github.com/microsoft/MSBuildCache This change also adds binary logging to the existing ci pipeline to help debugging the build.
null
2023-12-01 21:57:42+00:00
2024-01-15 21:45:28+00:00
Directory.Build.props
<Project> <PropertyGroup> <Copyright>Copyright (C) 2024 Microsoft Corporation</Copyright> <AssemblyCompany>Microsoft Corp.</AssemblyCompany> <AssemblyCopyright>Copyright (C) 2024 Microsoft Corporation</AssemblyCopyright> <AssemblyProduct>PowerToys</AssemblyProduct> <Company>Microsoft Corporation</Company> <NeutralLanguage>en-US</NeutralLanguage> <Platforms>x64;ARM64</Platforms> <PackageTags>PowerToys</PackageTags> <EnableNETAnalyzers>true</EnableNETAnalyzers> <AnalysisMode>Recommended</AnalysisMode> <_SkipUpgradeNetAnalyzersNuGetWarning>true</_SkipUpgradeNetAnalyzersNuGetWarning> <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> <!-- Don't add source revision hash to the product version of binaries. --> <PlatformTarget>$(Platform)</PlatformTarget> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <RepositoryUrl>https://github.com/microsoft/PowerToys</RepositoryUrl> <RepositoryType>GitHub</RepositoryType> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <TreatWarningsAsErrors>true</TreatWarningsAsErrors> </PropertyGroup> <PropertyGroup> <_PropertySheetDisplayName>PowerToys.Root.Props</_PropertySheetDisplayName> <ForceImportBeforeCppProps>$(MsbuildThisFileDirectory)\Cpp.Build.props</ForceImportBeforeCppProps> </PropertyGroup> <ItemGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <PackageReference Include="StyleCop.Analyzers"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> <Compile Include="$(MSBuildThisFileDirectory)\src\codeAnalysis\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" /> <AdditionalFiles Include="$(MSBuildThisFileDirectory)\src\codeAnalysis\StyleCop.json" Link="StyleCop.json" /> <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> </ItemGroup> </Project>
<Project> <PropertyGroup> <Copyright>Copyright (C) 2024 Microsoft Corporation</Copyright> <AssemblyCompany>Microsoft Corp.</AssemblyCompany> <AssemblyCopyright>Copyright (C) 2024 Microsoft Corporation</AssemblyCopyright> <AssemblyProduct>PowerToys</AssemblyProduct> <Company>Microsoft Corporation</Company> <NeutralLanguage>en-US</NeutralLanguage> <Platforms>x64;ARM64</Platforms> <PackageTags>PowerToys</PackageTags> <EnableNETAnalyzers>true</EnableNETAnalyzers> <AnalysisMode>Recommended</AnalysisMode> <_SkipUpgradeNetAnalyzersNuGetWarning>true</_SkipUpgradeNetAnalyzersNuGetWarning> <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion> <!-- Don't add source revision hash to the product version of binaries. --> <PlatformTarget>$(Platform)</PlatformTarget> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <RepositoryUrl>https://github.com/microsoft/PowerToys</RepositoryUrl> <RepositoryType>GitHub</RepositoryType> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <TreatWarningsAsErrors>true</TreatWarningsAsErrors> </PropertyGroup> <PropertyGroup> <_PropertySheetDisplayName>PowerToys.Root.Props</_PropertySheetDisplayName> <ForceImportBeforeCppProps>$(MsbuildThisFileDirectory)\Cpp.Build.props</ForceImportBeforeCppProps> </PropertyGroup> <ItemGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'"> <PackageReference Include="StyleCop.Analyzers"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> <Compile Include="$(MSBuildThisFileDirectory)\src\codeAnalysis\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" /> <AdditionalFiles Include="$(MSBuildThisFileDirectory)\src\codeAnalysis\StyleCop.json" Link="StyleCop.json" /> <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> </ItemGroup> <!-- MSBuildCache --> <PropertyGroup> <!-- Off by default --> <MSBuildCacheEnabled Condition="'$(MSBuildCacheEnabled)' == ''">false</MSBuildCacheEnabled> <!-- In Azure pipelines, use Pipeline Caching as the cache storage backend. Otherwise, use the local cache. --> <MSBuildCachePackageName Condition="'$(TF_BUILD)' != ''">Microsoft.MSBuildCache.AzurePipelines</MSBuildCachePackageName> <MSBuildCachePackageName Condition="'$(MSBuildCachePackageName)' == ''">Microsoft.MSBuildCache.Local</MSBuildCachePackageName> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildCacheEnabled)' == 'true'"> <!-- Change this to bust the cache --> <MSBuildCacheCacheUniverse Condition="'$(MSBuildCacheCacheUniverse)' == ''">202310210737</MSBuildCacheCacheUniverse> <!-- A tool inside Microsoft.WindowsAppSDK uses AppInsights which appears to read packages\Microsoft.WindowsAppSDK.1.4.230913002\tools\net472\ApplicationInsights.config after the project is finished, likely in a detached process. This is acceptable and should not impact cache correctness. --> <MSBuildCacheAllowFileAccessAfterProjectFinishFilePatterns>$(MSBuildCacheAllowFileAccessAfterProjectFinishFilePatterns);packages\Microsoft.WindowsAppSDK.*\tools\net472\ApplicationInsights.config</MSBuildCacheAllowFileAccessAfterProjectFinishFilePatterns> <!-- This repo uses a common output directory with many projects writing duplicate outputs. Allow everything, but note this costs some performance in the form of requiring the cache to use copies instead of hardlinks when pulling from cache. --> <MSBuildCacheIdenticalDuplicateOutputPatterns>$(MSBuildCacheIdenticalDuplicateOutputPatterns);**</MSBuildCacheIdenticalDuplicateOutputPatterns> <!-- version of MSBuildCache is not part of the cache key --> <PackagesConfigFile>$(MSBuildThisFileDirectory)packages.config</PackagesConfigFile> <MSBuildCacheIgnoredInputPatterns>$(MSBuildCacheIgnoredInputPatterns);$(PackagesConfigFile)</MSBuildCacheIgnoredInputPatterns> </PropertyGroup> <PropertyGroup Condition="'$(MSBuildCacheEnabled)' == 'true' and '$(MSBuildCachePackageRoot)' == ''"> <PackagesConfigContents>$([System.IO.File]::ReadAllText("$(PackagesConfigFile)"))</PackagesConfigContents> <MSBuildCachePackageVersion>$([System.Text.RegularExpressions.Regex]::Match($(PackagesConfigContents), 'Microsoft.MSBuildCache.*?version="(.*?)"').Groups[1].Value)</MSBuildCachePackageVersion> <MSBuildCachePackageRoot>$(MSBuildThisFileDirectory)packages\$(MSBuildCachePackageName).$(MSBuildCachePackageVersion)</MSBuildCachePackageRoot> <MSBuildCacheSharedCompilationPackageRoot>$(MSBuildThisFileDirectory)packages\Microsoft.MSBuildCache.SharedCompilation.$(MSBuildCachePackageVersion)</MSBuildCacheSharedCompilationPackageRoot> </PropertyGroup> <ImportGroup Condition="'$(MSBuildCacheEnabled)' == 'true'"> <Import Project="$(MSBuildCachePackageRoot)\build\$(MSBuildCachePackageName).props" /> <Import Project="$(MSBuildCacheSharedCompilationPackageRoot)\build\Microsoft.MSBuildCache.SharedCompilation.props" /> </ImportGroup> </Project>
dfederm
b609cf614db1a2e48a818d9f5e3c8f4f9efea34f
5d1ce08963660e8a2a08ffe59815ef0253e3d08b
I'm open to suggestion, but couldn't find a nice one-liner for loading the xml and reading a specific value out of it.
dfederm
148
microsoft/PowerToys
30,100
Add Microsoft.MSBuildCache
Add Microsoft.MSBuildCache This change adds a new pipeline which enables caching in the build. This is added as a separate pipeline for now with the eventual goal of enabling for PR and/or CI builds. Documentation for Microsoft.MSBuildCache can be found in the GitHub repo: https://github.com/microsoft/MSBuildCache This change also adds binary logging to the existing ci pipeline to help debugging the build.
null
2023-12-01 21:57:42+00:00
2024-01-15 21:45:28+00:00
src/modules/videoconference/VideoConferenceProxyFilter/VideoConferenceProxyFilterx86.sln
 Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.30907.101 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceProxyFilter", "VideoConferenceProxyFilter.vcxproj", "{AC2857B4-103D-4D6D-9740-926EBF785042}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceShared", "..\VideoConferenceShared\VideoConferenceShared.vcxproj", "{459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|Win32.ActiveCfg = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|Win32.Build.0 = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.ActiveCfg = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.Build.0 = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|Win32.ActiveCfg = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|Win32.Build.0 = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.Build.0 = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|Win32.ActiveCfg = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|Win32.Build.0 = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.ActiveCfg = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.Build.0 = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|Win32.ActiveCfg = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|Win32.Build.0 = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {0E41348C-22CB-45A4-8A16-8D7BEA070BB2} EndGlobalSection EndGlobal
 Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.30907.101 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceProxyFilter", "VideoConferenceProxyFilter.vcxproj", "{AC2857B4-103D-4D6D-9740-926EBF785042}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceShared", "..\VideoConferenceShared\VideoConferenceShared.vcxproj", "{459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Version", "..\..\..\common\version\version.vcxproj", "{CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|Win32.ActiveCfg = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|Win32.Build.0 = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.ActiveCfg = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.Build.0 = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|Win32.ActiveCfg = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|Win32.Build.0 = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.Build.0 = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|Win32.ActiveCfg = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|Win32.Build.0 = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.ActiveCfg = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.Build.0 = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|Win32.ActiveCfg = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|Win32.Build.0 = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.Build.0 = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|Win32.ActiveCfg = Debug|Win32 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|Win32.Build.0 = Debug|Win32 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.Build.0 = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|Win32.ActiveCfg = Release|Win32 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|Win32.Build.0 = Release|Win32 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {0E41348C-22CB-45A4-8A16-8D7BEA070BB2} EndGlobalSection EndGlobal
dfederm
b609cf614db1a2e48a818d9f5e3c8f4f9efea34f
5d1ce08963660e8a2a08ffe59815ef0253e3d08b
worried that this may cause the version outputs to be double-struck during build; is that OK?
DHowett
149
microsoft/PowerToys
30,100
Add Microsoft.MSBuildCache
Add Microsoft.MSBuildCache This change adds a new pipeline which enables caching in the build. This is added as a separate pipeline for now with the eventual goal of enabling for PR and/or CI builds. Documentation for Microsoft.MSBuildCache can be found in the GitHub repo: https://github.com/microsoft/MSBuildCache This change also adds binary logging to the existing ci pipeline to help debugging the build.
null
2023-12-01 21:57:42+00:00
2024-01-15 21:45:28+00:00
src/modules/videoconference/VideoConferenceProxyFilter/VideoConferenceProxyFilterx86.sln
 Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.30907.101 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceProxyFilter", "VideoConferenceProxyFilter.vcxproj", "{AC2857B4-103D-4D6D-9740-926EBF785042}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceShared", "..\VideoConferenceShared\VideoConferenceShared.vcxproj", "{459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|Win32.ActiveCfg = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|Win32.Build.0 = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.ActiveCfg = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.Build.0 = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|Win32.ActiveCfg = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|Win32.Build.0 = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.Build.0 = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|Win32.ActiveCfg = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|Win32.Build.0 = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.ActiveCfg = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.Build.0 = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|Win32.ActiveCfg = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|Win32.Build.0 = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {0E41348C-22CB-45A4-8A16-8D7BEA070BB2} EndGlobalSection EndGlobal
 Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.30907.101 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceProxyFilter", "VideoConferenceProxyFilter.vcxproj", "{AC2857B4-103D-4D6D-9740-926EBF785042}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceShared", "..\VideoConferenceShared\VideoConferenceShared.vcxproj", "{459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Version", "..\..\..\common\version\version.vcxproj", "{CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|Win32.ActiveCfg = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|Win32.Build.0 = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.ActiveCfg = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.Build.0 = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|Win32.ActiveCfg = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|Win32.Build.0 = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.Build.0 = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|Win32.ActiveCfg = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|Win32.Build.0 = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.ActiveCfg = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.Build.0 = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|Win32.ActiveCfg = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|Win32.Build.0 = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.Build.0 = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|Win32.ActiveCfg = Debug|Win32 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|Win32.Build.0 = Debug|Win32 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.Build.0 = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|Win32.ActiveCfg = Release|Win32 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|Win32.Build.0 = Release|Win32 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {0E41348C-22CB-45A4-8A16-8D7BEA070BB2} EndGlobalSection EndGlobal
dfederm
b609cf614db1a2e48a818d9f5e3c8f4f9efea34f
5d1ce08963660e8a2a08ffe59815ef0253e3d08b
It already is double-built today. The projects in this sln reference it so it definitely builds when this sln builds. The problem when it's not in the sln though is that the Configuration/Platform are lost, which means the 2nd build today is actually the wrong Configuration/Platform =P
dfederm
150
microsoft/PowerToys
30,091
[Peek] Set window Icon and Title
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request - Always set the window icon - Set the currently previewed item name as window title (fallback to Peek) Adopted the same logic of other Windows apps - Removed `Logger.cs` and use everywhere the common one <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #26126 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![2](https://github.com/microsoft/PowerToys/assets/25966642/89fa59be-076b-4812-8e2f-8cda355fb595) _Taskbar preview_ ![3](https://github.com/microsoft/PowerToys/assets/25966642/b61ce83f-753e-4f48-b8cc-cea08aac0301) _Task view_ ![1](https://github.com/microsoft/PowerToys/assets/25966642/80f0e018-f442-4f18-be5c-9d7654cbe115) _PT Run Window Walker_ <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Verified that icon and window title are displayed (see screenshots above) - Verified that title is changed during file navigation - Verified that log is created as expected
null
2023-11-30 21:56:28+00:00
2023-12-09 12:15:24+00:00
src/modules/peek/Peek.UI/MainWindowViewModel.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Linq; using CommunityToolkit.Mvvm.ComponentModel; using Microsoft.UI.Xaml; using Peek.Common.Helpers; using Peek.Common.Models; using Peek.UI.Models; using Windows.Win32.Foundation; namespace Peek.UI { public partial class MainWindowViewModel : ObservableObject { private const int NavigationThrottleDelayMs = 100; [ObservableProperty] private int _currentIndex; [ObservableProperty] private IFileSystemItem? _currentItem; [ObservableProperty] private NeighboringItems? _items; [ObservableProperty] private double _scalingFactor = 1.0; public NeighboringItemsQuery NeighboringItemsQuery { get; } private DispatcherTimer NavigationThrottleTimer { get; set; } = new(); public MainWindowViewModel(NeighboringItemsQuery query) { NeighboringItemsQuery = query; NavigationThrottleTimer.Tick += NavigationThrottleTimer_Tick; NavigationThrottleTimer.Interval = TimeSpan.FromMilliseconds(NavigationThrottleDelayMs); } public void Initialize(HWND foregroundWindowHandle) { try { Items = NeighboringItemsQuery.GetNeighboringItems(foregroundWindowHandle); } catch (Exception ex) { Logger.LogError("Failed to get File Explorer Items: " + ex.Message); } CurrentIndex = 0; if (Items != null && Items.Count > 0) { CurrentItem = Items[0]; } } public void Uninitialize() { CurrentIndex = 0; CurrentItem = null; Items = null; } public void AttemptPreviousNavigation() { if (NavigationThrottleTimer.IsEnabled) { return; } NavigationThrottleTimer.Start(); var itemCount = Items?.Count ?? 1; CurrentIndex = MathHelper.Modulo(CurrentIndex - 1, itemCount); CurrentItem = Items?.ElementAtOrDefault(CurrentIndex); } public void AttemptNextNavigation() { if (NavigationThrottleTimer.IsEnabled) { return; } NavigationThrottleTimer.Start(); var itemCount = Items?.Count ?? 1; CurrentIndex = MathHelper.Modulo(CurrentIndex + 1, itemCount); CurrentItem = Items?.ElementAtOrDefault(CurrentIndex); } private void NavigationThrottleTimer_Tick(object? sender, object e) { if (sender == null) { return; } ((DispatcherTimer)sender).Stop(); } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Linq; using CommunityToolkit.Mvvm.ComponentModel; using ManagedCommon; using Microsoft.UI.Xaml; using Peek.Common.Helpers; using Peek.Common.Models; using Peek.UI.Models; using Windows.Win32.Foundation; namespace Peek.UI { public partial class MainWindowViewModel : ObservableObject { private static readonly string _defaultWindowTitle = ResourceLoaderInstance.ResourceLoader.GetString("AppTitle/Title"); private const int NavigationThrottleDelayMs = 100; [ObservableProperty] private int _currentIndex; [ObservableProperty] private IFileSystemItem? _currentItem; partial void OnCurrentItemChanged(IFileSystemItem? value) { WindowTitle = value != null ? ReadableStringHelper.FormatResourceString("WindowTitle", value.Name) : _defaultWindowTitle; } [ObservableProperty] private string _windowTitle; [ObservableProperty] private NeighboringItems? _items; [ObservableProperty] private double _scalingFactor = 1.0; public NeighboringItemsQuery NeighboringItemsQuery { get; } private DispatcherTimer NavigationThrottleTimer { get; set; } = new(); public MainWindowViewModel(NeighboringItemsQuery query) { NeighboringItemsQuery = query; WindowTitle = _defaultWindowTitle; NavigationThrottleTimer.Tick += NavigationThrottleTimer_Tick; NavigationThrottleTimer.Interval = TimeSpan.FromMilliseconds(NavigationThrottleDelayMs); } public void Initialize(HWND foregroundWindowHandle) { try { Items = NeighboringItemsQuery.GetNeighboringItems(foregroundWindowHandle); } catch (Exception ex) { Logger.LogError("Failed to get File Explorer Items: " + ex.Message); } CurrentIndex = 0; if (Items != null && Items.Count > 0) { CurrentItem = Items[0]; } } public void Uninitialize() { CurrentIndex = 0; CurrentItem = null; Items = null; } public void AttemptPreviousNavigation() { if (NavigationThrottleTimer.IsEnabled) { return; } NavigationThrottleTimer.Start(); var itemCount = Items?.Count ?? 1; CurrentIndex = MathHelper.Modulo(CurrentIndex - 1, itemCount); CurrentItem = Items?.ElementAtOrDefault(CurrentIndex); } public void AttemptNextNavigation() { if (NavigationThrottleTimer.IsEnabled) { return; } NavigationThrottleTimer.Start(); var itemCount = Items?.Count ?? 1; CurrentIndex = MathHelper.Modulo(CurrentIndex + 1, itemCount); CurrentItem = Items?.ElementAtOrDefault(CurrentIndex); } private void NavigationThrottleTimer_Tick(object? sender, object e) { if (sender == null) { return; } ((DispatcherTimer)sender).Stop(); } } }
davidegiacometti
9e03386eb3069a7018d067ad1d7f762d08f228ae
f30438b95968774b9b50a17231d75274820d6659
Nice! Where does this method come from? 🤔
stefansjfw
151
microsoft/PowerToys
30,091
[Peek] Set window Icon and Title
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request - Always set the window icon - Set the currently previewed item name as window title (fallback to Peek) Adopted the same logic of other Windows apps - Removed `Logger.cs` and use everywhere the common one <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #26126 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![2](https://github.com/microsoft/PowerToys/assets/25966642/89fa59be-076b-4812-8e2f-8cda355fb595) _Taskbar preview_ ![3](https://github.com/microsoft/PowerToys/assets/25966642/b61ce83f-753e-4f48-b8cc-cea08aac0301) _Task view_ ![1](https://github.com/microsoft/PowerToys/assets/25966642/80f0e018-f442-4f18-be5c-9d7654cbe115) _PT Run Window Walker_ <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Verified that icon and window title are displayed (see screenshots above) - Verified that title is changed during file navigation - Verified that log is created as expected
null
2023-11-30 21:56:28+00:00
2023-12-09 12:15:24+00:00
src/modules/peek/Peek.UI/MainWindowViewModel.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Linq; using CommunityToolkit.Mvvm.ComponentModel; using Microsoft.UI.Xaml; using Peek.Common.Helpers; using Peek.Common.Models; using Peek.UI.Models; using Windows.Win32.Foundation; namespace Peek.UI { public partial class MainWindowViewModel : ObservableObject { private const int NavigationThrottleDelayMs = 100; [ObservableProperty] private int _currentIndex; [ObservableProperty] private IFileSystemItem? _currentItem; [ObservableProperty] private NeighboringItems? _items; [ObservableProperty] private double _scalingFactor = 1.0; public NeighboringItemsQuery NeighboringItemsQuery { get; } private DispatcherTimer NavigationThrottleTimer { get; set; } = new(); public MainWindowViewModel(NeighboringItemsQuery query) { NeighboringItemsQuery = query; NavigationThrottleTimer.Tick += NavigationThrottleTimer_Tick; NavigationThrottleTimer.Interval = TimeSpan.FromMilliseconds(NavigationThrottleDelayMs); } public void Initialize(HWND foregroundWindowHandle) { try { Items = NeighboringItemsQuery.GetNeighboringItems(foregroundWindowHandle); } catch (Exception ex) { Logger.LogError("Failed to get File Explorer Items: " + ex.Message); } CurrentIndex = 0; if (Items != null && Items.Count > 0) { CurrentItem = Items[0]; } } public void Uninitialize() { CurrentIndex = 0; CurrentItem = null; Items = null; } public void AttemptPreviousNavigation() { if (NavigationThrottleTimer.IsEnabled) { return; } NavigationThrottleTimer.Start(); var itemCount = Items?.Count ?? 1; CurrentIndex = MathHelper.Modulo(CurrentIndex - 1, itemCount); CurrentItem = Items?.ElementAtOrDefault(CurrentIndex); } public void AttemptNextNavigation() { if (NavigationThrottleTimer.IsEnabled) { return; } NavigationThrottleTimer.Start(); var itemCount = Items?.Count ?? 1; CurrentIndex = MathHelper.Modulo(CurrentIndex + 1, itemCount); CurrentItem = Items?.ElementAtOrDefault(CurrentIndex); } private void NavigationThrottleTimer_Tick(object? sender, object e) { if (sender == null) { return; } ((DispatcherTimer)sender).Stop(); } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Linq; using CommunityToolkit.Mvvm.ComponentModel; using ManagedCommon; using Microsoft.UI.Xaml; using Peek.Common.Helpers; using Peek.Common.Models; using Peek.UI.Models; using Windows.Win32.Foundation; namespace Peek.UI { public partial class MainWindowViewModel : ObservableObject { private static readonly string _defaultWindowTitle = ResourceLoaderInstance.ResourceLoader.GetString("AppTitle/Title"); private const int NavigationThrottleDelayMs = 100; [ObservableProperty] private int _currentIndex; [ObservableProperty] private IFileSystemItem? _currentItem; partial void OnCurrentItemChanged(IFileSystemItem? value) { WindowTitle = value != null ? ReadableStringHelper.FormatResourceString("WindowTitle", value.Name) : _defaultWindowTitle; } [ObservableProperty] private string _windowTitle; [ObservableProperty] private NeighboringItems? _items; [ObservableProperty] private double _scalingFactor = 1.0; public NeighboringItemsQuery NeighboringItemsQuery { get; } private DispatcherTimer NavigationThrottleTimer { get; set; } = new(); public MainWindowViewModel(NeighboringItemsQuery query) { NeighboringItemsQuery = query; WindowTitle = _defaultWindowTitle; NavigationThrottleTimer.Tick += NavigationThrottleTimer_Tick; NavigationThrottleTimer.Interval = TimeSpan.FromMilliseconds(NavigationThrottleDelayMs); } public void Initialize(HWND foregroundWindowHandle) { try { Items = NeighboringItemsQuery.GetNeighboringItems(foregroundWindowHandle); } catch (Exception ex) { Logger.LogError("Failed to get File Explorer Items: " + ex.Message); } CurrentIndex = 0; if (Items != null && Items.Count > 0) { CurrentItem = Items[0]; } } public void Uninitialize() { CurrentIndex = 0; CurrentItem = null; Items = null; } public void AttemptPreviousNavigation() { if (NavigationThrottleTimer.IsEnabled) { return; } NavigationThrottleTimer.Start(); var itemCount = Items?.Count ?? 1; CurrentIndex = MathHelper.Modulo(CurrentIndex - 1, itemCount); CurrentItem = Items?.ElementAtOrDefault(CurrentIndex); } public void AttemptNextNavigation() { if (NavigationThrottleTimer.IsEnabled) { return; } NavigationThrottleTimer.Start(); var itemCount = Items?.Count ?? 1; CurrentIndex = MathHelper.Modulo(CurrentIndex + 1, itemCount); CurrentItem = Items?.ElementAtOrDefault(CurrentIndex); } private void NavigationThrottleTimer_Tick(object? sender, object e) { if (sender == null) { return; } ((DispatcherTimer)sender).Stop(); } } }
davidegiacometti
9e03386eb3069a7018d067ad1d7f762d08f228ae
f30438b95968774b9b50a17231d75274820d6659
It comes from the powerful source generators of the `CommunityToolkit.Mvvm` package: https://learn.microsoft.com/dotnet/communitytoolkit/mvvm/generators/observableproperty#running-code-upon-changes
davidegiacometti
152
microsoft/PowerToys
30,085
0.76 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.76 release. This will be copy / pasted for release notes.
null
2023-11-30 17:08:09+00:00
2023-12-04 17:46:29+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.75.1-x64.exe][ptUserX64] | CFDAE52607689A695F4E4DDD7C1FE68400359AEF0D2B23C86122835E9D32A20F | | Per user - ARM64 | [PowerToysUserSetup-0.75.1-arm64.exe][ptUserArm64] | 9BAD3EF71DEDE70445416AC7369D115FAE095152722BC4F23EE393D8A10F45CA | | Machine wide - x64 | [PowerToysSetup-0.75.1-x64.exe][ptMachineX64] | 18FEB9377B0BA45189FFF4F89627B152DD794CCC15F005592B34A40A3EA62EA8 | | Machine wide - ARM64 | [PowerToysSetup-0.75.1-arm64.exe][ptMachineArm64] | F5CDF5A35876A0B581F446BF728B7AC52B6B701C0850D9CEA9A1874523745CFD | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.75 - October 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - New utility: An environment variables editor with the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Settings has a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Added a previewer to Peek that hosts File Explorer previewers to support every file type that a machine is currently able to preview. For example, this means that if Microsoft Office handlers are installed, Peek can preview Office files. Thanks [@dillydylann](https://github.com/dillydylann)! ### General - Many typo fixes through the projects and documentation. Thanks [@brianteeman](https://github.com/brianteeman)! - Refactored and improved the logic across utilities for bringing a window to the foreground after activation. ### Color Picker - After activating Color Picker, it's now possible to cancel the session by clicking the right mouse button. Thanks [@fredso90](https://github.com/fredso90)! ### Environment Variables - Added a new utility: An environment variables editor that has the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Shows in the title bar if it's running as an administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### FancyZones - Fixed an issue causing context menu pop-ups from some apps to automatically snap to a zone. (This was a hotfix for 0.74) - Applied the fix for the context menu pop-ups to the logic that decides which windows can be snapped. - Reworked the "Keep windows in their zones" option to include the work area and turn it on by default, fixing an incompatibility with the Copilot flyout. - Fixed an issue causing windows to be snapped while moving to a different virtual desktop. ### File Explorer add-ons - Fixed an issue blocking some SVG files from being previewed correctly. (This was a hotfix for 0.74) - Fixed crashes on invalid files in the STL Thumbnail generator. ### GPO - Added a global GPO rule that applies for all utilities unless it's overridden. Thanks [@htcfreek](https://github.com/htcfreek)! - Added GPO rules to control which PowerToys Run plugins should be enabled/disabled by policy. Thanks [@htcfreek](https://github.com/htcfreek)! * All plugins have to provide its plugin ID as static property in its Main method. ### Image Resizer - Fixed wrong .bmp file association in the registry. Thanks [@meitinger](https://github.com/meitinger)! ### Keyboard Manager - Visually distinguish between the Numpad and regular period characters in the UI. - This utility is now disabled by default on new installations, since it requires user configuration to affect keyboard behavior. - Fixed a typo in the Numpad Subtract key in the editor. ### Mouse Highlighter - Removed the lower limit of fade delay and duration, to allow better signaling of doing a double click. Thanks [@fredso90](https://github.com/fredso90)! ### Mouse Jump - The process now runs in the background, for a faster activation time. Thanks [@mikeclayton](https://github.com/mikeclayton)! ### Peek - Reported file sizes will now more closely match what's reported by File Explorer. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a previewer that hosts File Explorer previewers to support every file type that a machine is currently able to preview. Thanks [@dillydylann](https://github.com/dillydylann)! - Fixed an issue causing the preview of the first file to be stuck loading. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed showing the previously previewed video file when invoking Peek with a new file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added the wrap and file formatting options to the Monaco previewer. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### PowerRename - Save data from the last run in a different file to avoid conflicting with changing settings in the Settings application. ### PowerToys Run - Fixed a case where the query wasn't being cleared after invoking a result action through the keyboard. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved the shell selection option for Windows Terminal in the Shell plugin and improved the backend code for adding combo box options to plugins. Thanks [@htcfreek](https://github.com/htcfreek)! * The implementation of the combo box items has changed and isn't backward compatible. (Old plugins won't crash, but the combo box setting isn't shown in settings ui anymore.) - Added Unix time in milliseconds, fixed negative unix time input and improved error messages in the TimeDate plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - The PowerToys plugin allows calling the new Environment Variables utility. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Refactored and added support to VSCodium Stable, VSCodium Insider and Remote Tunnels workspaces. Thanks [@eternalphane](https://github.com/eternalphane)! ### Quick Accent - Fixed characters that were removed from "All languages" because they were not in any single language. (This was a hotfix for 0.74) - Added Asturian characters to the Spanish character set. Thanks [@blakestack](https://github.com/blakestack)! - Added Greek characters with tonos. Thanks [@PesBandi](https://github.com/PesBandi)! ### Registry Preview - Fixed a parsing error that crashed the Application. (This was a hotfix for 0.74) - Fixed opening file names with non-ASCII characters. Thanks [@randyrants](https://github.com/randyrants)! - Fixed wrong parsing when the file contained an assignment with spaces around the equals sign. Thanks [@randyrants](https://github.com/randyrants)! - Fixed key transversal issues when a key was a substring of a parent key. Thanks [@randyrants](https://github.com/randyrants)! ### Runner - Fixed the update notification toast to show a Unicode arrow. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Settings - Added a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Fixed a typo in the Hosts File Editor page. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a lock icon to the flyout listing of all modules when its enabled state is controlled by policy. - The "All apps" list in the flyout will now list all apps even if their enabled state is controlled by policy. ### Video Conference Mute - Added an option to allow for the toolbar to hide after some time passed. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Added an option to select to mute or unmute at startup. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Fixed an issue causing a cascade of mute/unmute triggers. ### Documentation - Updated the Group Policy documentation on learn.microsoft.com, removed the Group Policy documentation from the repository and linked to the published documentation on learn.microsoft.com instead. ### Development - Added project dependencies to the version project and headers to avoid building errors. Thanks [@johnterickson](https://github.com/johnterickson)! - Enabled Control Flow Guard in the C++ projects. Thanks [@DHowett](https://github.com/DHowett)! - Switched the release pipeline to the 1ES governed template. Thanks [@DHowett](https://github.com/DHowett)! - Styled XAML files and added a XAML Style checker to the solution, with a CI action to check if code being contributed is compliant. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Suppressed redundant midl file warnings in PowerRename. - Add unit tests to FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014), [@andrewbengordon](https://github.com/andrewbengordon) and [@Cwighty](https://github.com/Cwighty)! - Improved the Default Layouts internal structure in FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014)! - Fixed code issues to allow building in Visual Studio 17.8 Preview 4. #### What is being planned for version 0.76 For [v0.76][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Allowing Keyboard Manager to output arbitrary Unicode sequences - Automated UI testing through WinAppDriver - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F50 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.76.0-x64.exe][ptUserX64] | 627F60BF3F04583A2ECE7ACE7E6F09ABDE92493E1FFFAC5705CC83009781CD8D | | Per user - ARM64 | [PowerToysUserSetup-0.76.0-arm64.exe][ptUserArm64] | 79D11CDDBDD87DF8A69A5B2FC28869B3085392E5F45FEE6560D278E48F8B0673 | | Machine wide - x64 | [PowerToysSetup-0.76.0-x64.exe][ptMachineX64] | 4F24A288AC92DD0AB74EF52CFE3D66FA744BDC6889CB4E3ED088763D9134C06D | | Machine wide - ARM64 | [PowerToysSetup-0.76.0-arm64.exe][ptMachineArm64] | 1BD9CD9C696D8898AAEE5A6D6A7122F053202CF1865C511BFC91FCFD0D767864 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.76 - November 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - Upgrade to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Keyboard Manager can now remap keys and shortcuts to send sequences of unicode text. - Modernized the Keyboard Manager Editor UI. Thanks [@dillydylann](https://github.com/dillydylann)! - Modernized the PowerToys Run, Quick Accent and Text Extractor UIs. Thanks [@niels9001](https://github.com/niels9001)! - New File Explorer Add-ons: QOI image Preview Handler and Thumbnail Provider. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### General - Updated the WebView 2 dependency to 1.0.2088.41. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed unreadable color brushes used across WinUI3 applications for improved accessibility. Thanks [@niels9001](https://github.com/niels9001)! - Flyouts used across WinUI3 applications are no longer constrained to the application's bounds. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Upgraded the WPF-UI dependency to preview.9 and then preview.11. Thanks [@niels9001](https://github.com/niels9001) and [@pomianowski](https://github.com/pomianowski)! - Upgraded to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Updated the WinAppSDK dependency to 1.4.3. ### Awake - Added localization to the tray icon context menu. ### Crop And Lock - Fixed restoring windows that were reparented while maximized. ### Environment Variables - Fixed crash caused by WinAppSDK version bump by replacing ListView elements with ItemsControl. ### FancyZones - Reverted a change that caused some applications, like the Windows Calculator, to not snap correctly. (This was a hotfix for 0.75) - FancyZones Editor will no longer apply a layout to the current monitor after editing it. - Fixed and refactored the code that detected if a window can be snapped. Added tests to it with known application window styles to avoid regressions in the future. ### File Explorer add-ons - Solved an issue incorrectly detecting encoding when previewing code files preview. - Fixed the background color for Gcode preview handler on dark theme. Thanks [@pedrolamas](https://github.com/pedrolamas)! - New utilities: Preview Handler and Thumbnail Provider for QOI image files. Thanks [@pedrolamas](https://github.com/pedrolamas)! - GCode Thumbnails are now in the 32 bit ARGB format. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Added the perceived type to SVG and QOI file thumbnails. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### GPO - Added the missing Environment Variables utility policy to the .admx and .adml files. (This was a hotfix for 0.75) - Fixed some typos and text improvements in the .adml file. Thanks [@htcfreek](https://github.com/htcfreek)! ### Hosts File Editor - Added a proper warning when the hosts file is read-only and a button to make it writable. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Image Resizer - Fixed a WPF-UI issue regarding the application's background brushes. Thanks [@niels9001](https://github.com/niels9001)! ### Installer - Included the Text Extractor and Awake localization files in the install process. ### Keyboard Manager - Modernized the UI with the Fluent design. Thanks [@dillydylann](https://github.com/dillydylann)! - Added the feature to remap keys and shortcuts to arbitrary unicode text sequences. ### Mouse Without Borders - Removed Thread.Suspend calls when exiting the utility. That call is deprecated, unneeded and was causing a silent crash. ### Peek - Added the possibility to pause/resume videos with the space bar. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed high CPU usage when idle before initializing the main window. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Implemented Ctrl+W as a shortcut to close Peek. Thanks [@Physalis2](https://github.com/Physalis2)! - Solved an issue incorrectly detecting encoding when previewing code files. - Fixed background issues when peeking into HTML files after the WebView 2 upgrade. ### PowerToys Run - Moved to WPF-UI and redesigned according to Fluent UX principles. Thanks [@niels9001](https://github.com/niels9001)! - Fixed an issue causing 3rd party plugins to not have their custom settings correctly initialized with default values. (This was a hotfix for 0.75) Thanks [@waaverecords](https://github.com/waaverecords)! - Fixed a crash in the VSCode plugin when the VSCode path had trailing backspaces. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed a crash when trying to load invalid image icons. - Fixed a crash in the Programs plugin when getting images for some .lnk files. - Fixed a rare startup initialization error and removed cold start operations that were no longer needed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved calculations for Windows File Time and Unix Epoch Time in the DateTime plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed a crash when trying to get the icon for a link that pointed to no file. - Cleaned up code in the WindowWalker plugin improving the logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Quick Accent - Moved from ModernWPF to WPF-UI. Thanks [@niels9001](https://github.com/niels9001)! - Added support to the Finnish language character set. Thanks [@davidtlascelles](https://github.com/davidtlascelles)! - Added currency symbols for Croatian, Gaeilge, Gàidhlig and Welsh. Thanks [@PesBandi](https://github.com/PesBandi)! - Added a missing Latin letter ꝡ. Thanks [@cubedhuang](https://github.com/cubedhuang)! - Added fraction characters. Thanks [@PesBandi](https://github.com/PesBandi)! - Added support to the Danish language character set. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Kazakhstani Tenge character to the Currencies characters set. Thanks [@PesBandi](https://github.com/PesBandi)! - Renamed Slovakian to Slovak, which is the correct term. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Greek language character set. Thanks [@mcbabo](https://github.com/mcbabo)! ### Settings - When clicking a module's name on the Dashboard, it will navigate to that module's page. - Fixed the clipping of information in the Backup and Restore section of the General Settings page. Thanks [@niels9001](https://github.com/niels9001)! - Updated the File Explorer Add-ons fluent icon. Thanks [@niels9001](https://github.com/niels9001)! - Added a warning when trying to set a shortcut that might conflict with "Alt Gr" key combinations. - Added a direct link to the OOBE's "What's New page" from the main Settings window. Thanks [@iakrayna](https://github.com/iakrayna)! - Changed mentions from Microsoft Docs to Microsoft Learn. - Fixed the slow reaction to system theme changes. ### Text Extractor - Move to WPF-UI, localization and light theme support. Thanks [@niels9001](https://github.com/niels9001)! - Disabled by default on Windows 11, with a information box on Settings to prefer using the Windows Snipping Tool, which now supports OCR. ### Documentation - Fixed some typos in the README. Thanks [@Asymtode712](https://github.com/Asymtode712)! - Reworked the gpo docs on learn.microsoft.com, adding .admx, registry and Intune information. Thanks [@htcfreek](https://github.com/htcfreek)! ### Development - Updated the check-spelling ci action to 0.22. Thanks [@jsoref](https://github.com/jsoref)! - Refactored the modules data model used between the Settings Dashboard and Flyout. - Fixed a flaky interop test that was causing automated CI to hang occasionally. - Increased the WebView 2 loading timeout to reduce flakiness in those tests. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added support for building with the Dev Drive CopyOnWrite feature, increasing build speed. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Addressed the C# static analyzers suggestions. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Addressed the C++ static analyzers suggestions. - PRs that only contain Markdown or text files changes no longer trigger the full CI. Thanks [@snickler](https://github.com/snickler)! - Updated the Microsoft.Windows.CsWinRT to 2.0.4 to fix building with the official Visual Studio 17.8 release. - Fixed new code quality issues caught by the official Visual Studio 17.8 release. - Added a bot trigger to point contributors to the main new contribution issue on GitHub. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Removed unneeded entries from expect.txt. - Turned off a new feature from Visual Studio that was adding the commit hash to the binary files Product Version. - Refactored and reviewed the spellcheck entries into different files. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Added Spectre mitigation and SHA256 hash creation for some DLLs. - Reverted the release pipeline template to a previous release that's stable for shipping PowerToys. #### What is being planned for version 0.77 For [v0.77][github-next-release-work], we'll work on the items below: - New utility: Command Not Found - Language selection - Automated UI testing through WinAppDriver - Develop support for Desired State Configuration - Modernize and refresh the UX of PowerToys based on WPF. Here's the Work in Progress preview for "Color Picker": ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
539b136cd8b8cc8a0776d193eadadea1f977f3fd
0fec6d085c8bf5df8da5ac9bed77eabefc42bdb7
## Unrecognized Spelling [spacebar](#security-tab) is not a recognized word. \(unrecognized-spelling\) [Show more details](https://github.com/microsoft/PowerToys/security/code-scanning/562)
github-advanced-security[bot]
153
microsoft/PowerToys
30,085
0.76 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.76 release. This will be copy / pasted for release notes.
null
2023-11-30 17:08:09+00:00
2023-12-04 17:46:29+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.75.1-x64.exe][ptUserX64] | CFDAE52607689A695F4E4DDD7C1FE68400359AEF0D2B23C86122835E9D32A20F | | Per user - ARM64 | [PowerToysUserSetup-0.75.1-arm64.exe][ptUserArm64] | 9BAD3EF71DEDE70445416AC7369D115FAE095152722BC4F23EE393D8A10F45CA | | Machine wide - x64 | [PowerToysSetup-0.75.1-x64.exe][ptMachineX64] | 18FEB9377B0BA45189FFF4F89627B152DD794CCC15F005592B34A40A3EA62EA8 | | Machine wide - ARM64 | [PowerToysSetup-0.75.1-arm64.exe][ptMachineArm64] | F5CDF5A35876A0B581F446BF728B7AC52B6B701C0850D9CEA9A1874523745CFD | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.75 - October 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - New utility: An environment variables editor with the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Settings has a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Added a previewer to Peek that hosts File Explorer previewers to support every file type that a machine is currently able to preview. For example, this means that if Microsoft Office handlers are installed, Peek can preview Office files. Thanks [@dillydylann](https://github.com/dillydylann)! ### General - Many typo fixes through the projects and documentation. Thanks [@brianteeman](https://github.com/brianteeman)! - Refactored and improved the logic across utilities for bringing a window to the foreground after activation. ### Color Picker - After activating Color Picker, it's now possible to cancel the session by clicking the right mouse button. Thanks [@fredso90](https://github.com/fredso90)! ### Environment Variables - Added a new utility: An environment variables editor that has the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Shows in the title bar if it's running as an administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### FancyZones - Fixed an issue causing context menu pop-ups from some apps to automatically snap to a zone. (This was a hotfix for 0.74) - Applied the fix for the context menu pop-ups to the logic that decides which windows can be snapped. - Reworked the "Keep windows in their zones" option to include the work area and turn it on by default, fixing an incompatibility with the Copilot flyout. - Fixed an issue causing windows to be snapped while moving to a different virtual desktop. ### File Explorer add-ons - Fixed an issue blocking some SVG files from being previewed correctly. (This was a hotfix for 0.74) - Fixed crashes on invalid files in the STL Thumbnail generator. ### GPO - Added a global GPO rule that applies for all utilities unless it's overridden. Thanks [@htcfreek](https://github.com/htcfreek)! - Added GPO rules to control which PowerToys Run plugins should be enabled/disabled by policy. Thanks [@htcfreek](https://github.com/htcfreek)! * All plugins have to provide its plugin ID as static property in its Main method. ### Image Resizer - Fixed wrong .bmp file association in the registry. Thanks [@meitinger](https://github.com/meitinger)! ### Keyboard Manager - Visually distinguish between the Numpad and regular period characters in the UI. - This utility is now disabled by default on new installations, since it requires user configuration to affect keyboard behavior. - Fixed a typo in the Numpad Subtract key in the editor. ### Mouse Highlighter - Removed the lower limit of fade delay and duration, to allow better signaling of doing a double click. Thanks [@fredso90](https://github.com/fredso90)! ### Mouse Jump - The process now runs in the background, for a faster activation time. Thanks [@mikeclayton](https://github.com/mikeclayton)! ### Peek - Reported file sizes will now more closely match what's reported by File Explorer. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a previewer that hosts File Explorer previewers to support every file type that a machine is currently able to preview. Thanks [@dillydylann](https://github.com/dillydylann)! - Fixed an issue causing the preview of the first file to be stuck loading. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed showing the previously previewed video file when invoking Peek with a new file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added the wrap and file formatting options to the Monaco previewer. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### PowerRename - Save data from the last run in a different file to avoid conflicting with changing settings in the Settings application. ### PowerToys Run - Fixed a case where the query wasn't being cleared after invoking a result action through the keyboard. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved the shell selection option for Windows Terminal in the Shell plugin and improved the backend code for adding combo box options to plugins. Thanks [@htcfreek](https://github.com/htcfreek)! * The implementation of the combo box items has changed and isn't backward compatible. (Old plugins won't crash, but the combo box setting isn't shown in settings ui anymore.) - Added Unix time in milliseconds, fixed negative unix time input and improved error messages in the TimeDate plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - The PowerToys plugin allows calling the new Environment Variables utility. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Refactored and added support to VSCodium Stable, VSCodium Insider and Remote Tunnels workspaces. Thanks [@eternalphane](https://github.com/eternalphane)! ### Quick Accent - Fixed characters that were removed from "All languages" because they were not in any single language. (This was a hotfix for 0.74) - Added Asturian characters to the Spanish character set. Thanks [@blakestack](https://github.com/blakestack)! - Added Greek characters with tonos. Thanks [@PesBandi](https://github.com/PesBandi)! ### Registry Preview - Fixed a parsing error that crashed the Application. (This was a hotfix for 0.74) - Fixed opening file names with non-ASCII characters. Thanks [@randyrants](https://github.com/randyrants)! - Fixed wrong parsing when the file contained an assignment with spaces around the equals sign. Thanks [@randyrants](https://github.com/randyrants)! - Fixed key transversal issues when a key was a substring of a parent key. Thanks [@randyrants](https://github.com/randyrants)! ### Runner - Fixed the update notification toast to show a Unicode arrow. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Settings - Added a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Fixed a typo in the Hosts File Editor page. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a lock icon to the flyout listing of all modules when its enabled state is controlled by policy. - The "All apps" list in the flyout will now list all apps even if their enabled state is controlled by policy. ### Video Conference Mute - Added an option to allow for the toolbar to hide after some time passed. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Added an option to select to mute or unmute at startup. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Fixed an issue causing a cascade of mute/unmute triggers. ### Documentation - Updated the Group Policy documentation on learn.microsoft.com, removed the Group Policy documentation from the repository and linked to the published documentation on learn.microsoft.com instead. ### Development - Added project dependencies to the version project and headers to avoid building errors. Thanks [@johnterickson](https://github.com/johnterickson)! - Enabled Control Flow Guard in the C++ projects. Thanks [@DHowett](https://github.com/DHowett)! - Switched the release pipeline to the 1ES governed template. Thanks [@DHowett](https://github.com/DHowett)! - Styled XAML files and added a XAML Style checker to the solution, with a CI action to check if code being contributed is compliant. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Suppressed redundant midl file warnings in PowerRename. - Add unit tests to FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014), [@andrewbengordon](https://github.com/andrewbengordon) and [@Cwighty](https://github.com/Cwighty)! - Improved the Default Layouts internal structure in FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014)! - Fixed code issues to allow building in Visual Studio 17.8 Preview 4. #### What is being planned for version 0.76 For [v0.76][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Allowing Keyboard Manager to output arbitrary Unicode sequences - Automated UI testing through WinAppDriver - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F50 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.76.0-x64.exe][ptUserX64] | 627F60BF3F04583A2ECE7ACE7E6F09ABDE92493E1FFFAC5705CC83009781CD8D | | Per user - ARM64 | [PowerToysUserSetup-0.76.0-arm64.exe][ptUserArm64] | 79D11CDDBDD87DF8A69A5B2FC28869B3085392E5F45FEE6560D278E48F8B0673 | | Machine wide - x64 | [PowerToysSetup-0.76.0-x64.exe][ptMachineX64] | 4F24A288AC92DD0AB74EF52CFE3D66FA744BDC6889CB4E3ED088763D9134C06D | | Machine wide - ARM64 | [PowerToysSetup-0.76.0-arm64.exe][ptMachineArm64] | 1BD9CD9C696D8898AAEE5A6D6A7122F053202CF1865C511BFC91FCFD0D767864 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.76 - November 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - Upgrade to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Keyboard Manager can now remap keys and shortcuts to send sequences of unicode text. - Modernized the Keyboard Manager Editor UI. Thanks [@dillydylann](https://github.com/dillydylann)! - Modernized the PowerToys Run, Quick Accent and Text Extractor UIs. Thanks [@niels9001](https://github.com/niels9001)! - New File Explorer Add-ons: QOI image Preview Handler and Thumbnail Provider. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### General - Updated the WebView 2 dependency to 1.0.2088.41. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed unreadable color brushes used across WinUI3 applications for improved accessibility. Thanks [@niels9001](https://github.com/niels9001)! - Flyouts used across WinUI3 applications are no longer constrained to the application's bounds. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Upgraded the WPF-UI dependency to preview.9 and then preview.11. Thanks [@niels9001](https://github.com/niels9001) and [@pomianowski](https://github.com/pomianowski)! - Upgraded to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Updated the WinAppSDK dependency to 1.4.3. ### Awake - Added localization to the tray icon context menu. ### Crop And Lock - Fixed restoring windows that were reparented while maximized. ### Environment Variables - Fixed crash caused by WinAppSDK version bump by replacing ListView elements with ItemsControl. ### FancyZones - Reverted a change that caused some applications, like the Windows Calculator, to not snap correctly. (This was a hotfix for 0.75) - FancyZones Editor will no longer apply a layout to the current monitor after editing it. - Fixed and refactored the code that detected if a window can be snapped. Added tests to it with known application window styles to avoid regressions in the future. ### File Explorer add-ons - Solved an issue incorrectly detecting encoding when previewing code files preview. - Fixed the background color for Gcode preview handler on dark theme. Thanks [@pedrolamas](https://github.com/pedrolamas)! - New utilities: Preview Handler and Thumbnail Provider for QOI image files. Thanks [@pedrolamas](https://github.com/pedrolamas)! - GCode Thumbnails are now in the 32 bit ARGB format. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Added the perceived type to SVG and QOI file thumbnails. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### GPO - Added the missing Environment Variables utility policy to the .admx and .adml files. (This was a hotfix for 0.75) - Fixed some typos and text improvements in the .adml file. Thanks [@htcfreek](https://github.com/htcfreek)! ### Hosts File Editor - Added a proper warning when the hosts file is read-only and a button to make it writable. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Image Resizer - Fixed a WPF-UI issue regarding the application's background brushes. Thanks [@niels9001](https://github.com/niels9001)! ### Installer - Included the Text Extractor and Awake localization files in the install process. ### Keyboard Manager - Modernized the UI with the Fluent design. Thanks [@dillydylann](https://github.com/dillydylann)! - Added the feature to remap keys and shortcuts to arbitrary unicode text sequences. ### Mouse Without Borders - Removed Thread.Suspend calls when exiting the utility. That call is deprecated, unneeded and was causing a silent crash. ### Peek - Added the possibility to pause/resume videos with the space bar. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed high CPU usage when idle before initializing the main window. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Implemented Ctrl+W as a shortcut to close Peek. Thanks [@Physalis2](https://github.com/Physalis2)! - Solved an issue incorrectly detecting encoding when previewing code files. - Fixed background issues when peeking into HTML files after the WebView 2 upgrade. ### PowerToys Run - Moved to WPF-UI and redesigned according to Fluent UX principles. Thanks [@niels9001](https://github.com/niels9001)! - Fixed an issue causing 3rd party plugins to not have their custom settings correctly initialized with default values. (This was a hotfix for 0.75) Thanks [@waaverecords](https://github.com/waaverecords)! - Fixed a crash in the VSCode plugin when the VSCode path had trailing backspaces. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed a crash when trying to load invalid image icons. - Fixed a crash in the Programs plugin when getting images for some .lnk files. - Fixed a rare startup initialization error and removed cold start operations that were no longer needed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved calculations for Windows File Time and Unix Epoch Time in the DateTime plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed a crash when trying to get the icon for a link that pointed to no file. - Cleaned up code in the WindowWalker plugin improving the logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Quick Accent - Moved from ModernWPF to WPF-UI. Thanks [@niels9001](https://github.com/niels9001)! - Added support to the Finnish language character set. Thanks [@davidtlascelles](https://github.com/davidtlascelles)! - Added currency symbols for Croatian, Gaeilge, Gàidhlig and Welsh. Thanks [@PesBandi](https://github.com/PesBandi)! - Added a missing Latin letter ꝡ. Thanks [@cubedhuang](https://github.com/cubedhuang)! - Added fraction characters. Thanks [@PesBandi](https://github.com/PesBandi)! - Added support to the Danish language character set. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Kazakhstani Tenge character to the Currencies characters set. Thanks [@PesBandi](https://github.com/PesBandi)! - Renamed Slovakian to Slovak, which is the correct term. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Greek language character set. Thanks [@mcbabo](https://github.com/mcbabo)! ### Settings - When clicking a module's name on the Dashboard, it will navigate to that module's page. - Fixed the clipping of information in the Backup and Restore section of the General Settings page. Thanks [@niels9001](https://github.com/niels9001)! - Updated the File Explorer Add-ons fluent icon. Thanks [@niels9001](https://github.com/niels9001)! - Added a warning when trying to set a shortcut that might conflict with "Alt Gr" key combinations. - Added a direct link to the OOBE's "What's New page" from the main Settings window. Thanks [@iakrayna](https://github.com/iakrayna)! - Changed mentions from Microsoft Docs to Microsoft Learn. - Fixed the slow reaction to system theme changes. ### Text Extractor - Move to WPF-UI, localization and light theme support. Thanks [@niels9001](https://github.com/niels9001)! - Disabled by default on Windows 11, with a information box on Settings to prefer using the Windows Snipping Tool, which now supports OCR. ### Documentation - Fixed some typos in the README. Thanks [@Asymtode712](https://github.com/Asymtode712)! - Reworked the gpo docs on learn.microsoft.com, adding .admx, registry and Intune information. Thanks [@htcfreek](https://github.com/htcfreek)! ### Development - Updated the check-spelling ci action to 0.22. Thanks [@jsoref](https://github.com/jsoref)! - Refactored the modules data model used between the Settings Dashboard and Flyout. - Fixed a flaky interop test that was causing automated CI to hang occasionally. - Increased the WebView 2 loading timeout to reduce flakiness in those tests. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added support for building with the Dev Drive CopyOnWrite feature, increasing build speed. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Addressed the C# static analyzers suggestions. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Addressed the C++ static analyzers suggestions. - PRs that only contain Markdown or text files changes no longer trigger the full CI. Thanks [@snickler](https://github.com/snickler)! - Updated the Microsoft.Windows.CsWinRT to 2.0.4 to fix building with the official Visual Studio 17.8 release. - Fixed new code quality issues caught by the official Visual Studio 17.8 release. - Added a bot trigger to point contributors to the main new contribution issue on GitHub. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Removed unneeded entries from expect.txt. - Turned off a new feature from Visual Studio that was adding the commit hash to the binary files Product Version. - Refactored and reviewed the spellcheck entries into different files. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Added Spectre mitigation and SHA256 hash creation for some DLLs. - Reverted the release pipeline template to a previous release that's stable for shipping PowerToys. #### What is being planned for version 0.77 For [v0.77][github-next-release-work], we'll work on the items below: - New utility: Command Not Found - Language selection - Automated UI testing through WinAppDriver - Develop support for Desired State Configuration - Modernize and refresh the UX of PowerToys based on WPF. Here's the Work in Progress preview for "Color Picker": ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
539b136cd8b8cc8a0776d193eadadea1f977f3fd
0fec6d085c8bf5df8da5ac9bed77eabefc42bdb7
## Unrecognized Spelling [charaters](#security-tab) is not a recognized word. \(unrecognized-spelling\) [Show more details](https://github.com/microsoft/PowerToys/security/code-scanning/563)
github-advanced-security[bot]
154
microsoft/PowerToys
30,085
0.76 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.76 release. This will be copy / pasted for release notes.
null
2023-11-30 17:08:09+00:00
2023-12-04 17:46:29+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.75.1-x64.exe][ptUserX64] | CFDAE52607689A695F4E4DDD7C1FE68400359AEF0D2B23C86122835E9D32A20F | | Per user - ARM64 | [PowerToysUserSetup-0.75.1-arm64.exe][ptUserArm64] | 9BAD3EF71DEDE70445416AC7369D115FAE095152722BC4F23EE393D8A10F45CA | | Machine wide - x64 | [PowerToysSetup-0.75.1-x64.exe][ptMachineX64] | 18FEB9377B0BA45189FFF4F89627B152DD794CCC15F005592B34A40A3EA62EA8 | | Machine wide - ARM64 | [PowerToysSetup-0.75.1-arm64.exe][ptMachineArm64] | F5CDF5A35876A0B581F446BF728B7AC52B6B701C0850D9CEA9A1874523745CFD | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.75 - October 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - New utility: An environment variables editor with the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Settings has a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Added a previewer to Peek that hosts File Explorer previewers to support every file type that a machine is currently able to preview. For example, this means that if Microsoft Office handlers are installed, Peek can preview Office files. Thanks [@dillydylann](https://github.com/dillydylann)! ### General - Many typo fixes through the projects and documentation. Thanks [@brianteeman](https://github.com/brianteeman)! - Refactored and improved the logic across utilities for bringing a window to the foreground after activation. ### Color Picker - After activating Color Picker, it's now possible to cancel the session by clicking the right mouse button. Thanks [@fredso90](https://github.com/fredso90)! ### Environment Variables - Added a new utility: An environment variables editor that has the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Shows in the title bar if it's running as an administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### FancyZones - Fixed an issue causing context menu pop-ups from some apps to automatically snap to a zone. (This was a hotfix for 0.74) - Applied the fix for the context menu pop-ups to the logic that decides which windows can be snapped. - Reworked the "Keep windows in their zones" option to include the work area and turn it on by default, fixing an incompatibility with the Copilot flyout. - Fixed an issue causing windows to be snapped while moving to a different virtual desktop. ### File Explorer add-ons - Fixed an issue blocking some SVG files from being previewed correctly. (This was a hotfix for 0.74) - Fixed crashes on invalid files in the STL Thumbnail generator. ### GPO - Added a global GPO rule that applies for all utilities unless it's overridden. Thanks [@htcfreek](https://github.com/htcfreek)! - Added GPO rules to control which PowerToys Run plugins should be enabled/disabled by policy. Thanks [@htcfreek](https://github.com/htcfreek)! * All plugins have to provide its plugin ID as static property in its Main method. ### Image Resizer - Fixed wrong .bmp file association in the registry. Thanks [@meitinger](https://github.com/meitinger)! ### Keyboard Manager - Visually distinguish between the Numpad and regular period characters in the UI. - This utility is now disabled by default on new installations, since it requires user configuration to affect keyboard behavior. - Fixed a typo in the Numpad Subtract key in the editor. ### Mouse Highlighter - Removed the lower limit of fade delay and duration, to allow better signaling of doing a double click. Thanks [@fredso90](https://github.com/fredso90)! ### Mouse Jump - The process now runs in the background, for a faster activation time. Thanks [@mikeclayton](https://github.com/mikeclayton)! ### Peek - Reported file sizes will now more closely match what's reported by File Explorer. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a previewer that hosts File Explorer previewers to support every file type that a machine is currently able to preview. Thanks [@dillydylann](https://github.com/dillydylann)! - Fixed an issue causing the preview of the first file to be stuck loading. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed showing the previously previewed video file when invoking Peek with a new file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added the wrap and file formatting options to the Monaco previewer. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### PowerRename - Save data from the last run in a different file to avoid conflicting with changing settings in the Settings application. ### PowerToys Run - Fixed a case where the query wasn't being cleared after invoking a result action through the keyboard. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved the shell selection option for Windows Terminal in the Shell plugin and improved the backend code for adding combo box options to plugins. Thanks [@htcfreek](https://github.com/htcfreek)! * The implementation of the combo box items has changed and isn't backward compatible. (Old plugins won't crash, but the combo box setting isn't shown in settings ui anymore.) - Added Unix time in milliseconds, fixed negative unix time input and improved error messages in the TimeDate plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - The PowerToys plugin allows calling the new Environment Variables utility. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Refactored and added support to VSCodium Stable, VSCodium Insider and Remote Tunnels workspaces. Thanks [@eternalphane](https://github.com/eternalphane)! ### Quick Accent - Fixed characters that were removed from "All languages" because they were not in any single language. (This was a hotfix for 0.74) - Added Asturian characters to the Spanish character set. Thanks [@blakestack](https://github.com/blakestack)! - Added Greek characters with tonos. Thanks [@PesBandi](https://github.com/PesBandi)! ### Registry Preview - Fixed a parsing error that crashed the Application. (This was a hotfix for 0.74) - Fixed opening file names with non-ASCII characters. Thanks [@randyrants](https://github.com/randyrants)! - Fixed wrong parsing when the file contained an assignment with spaces around the equals sign. Thanks [@randyrants](https://github.com/randyrants)! - Fixed key transversal issues when a key was a substring of a parent key. Thanks [@randyrants](https://github.com/randyrants)! ### Runner - Fixed the update notification toast to show a Unicode arrow. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Settings - Added a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Fixed a typo in the Hosts File Editor page. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a lock icon to the flyout listing of all modules when its enabled state is controlled by policy. - The "All apps" list in the flyout will now list all apps even if their enabled state is controlled by policy. ### Video Conference Mute - Added an option to allow for the toolbar to hide after some time passed. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Added an option to select to mute or unmute at startup. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Fixed an issue causing a cascade of mute/unmute triggers. ### Documentation - Updated the Group Policy documentation on learn.microsoft.com, removed the Group Policy documentation from the repository and linked to the published documentation on learn.microsoft.com instead. ### Development - Added project dependencies to the version project and headers to avoid building errors. Thanks [@johnterickson](https://github.com/johnterickson)! - Enabled Control Flow Guard in the C++ projects. Thanks [@DHowett](https://github.com/DHowett)! - Switched the release pipeline to the 1ES governed template. Thanks [@DHowett](https://github.com/DHowett)! - Styled XAML files and added a XAML Style checker to the solution, with a CI action to check if code being contributed is compliant. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Suppressed redundant midl file warnings in PowerRename. - Add unit tests to FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014), [@andrewbengordon](https://github.com/andrewbengordon) and [@Cwighty](https://github.com/Cwighty)! - Improved the Default Layouts internal structure in FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014)! - Fixed code issues to allow building in Visual Studio 17.8 Preview 4. #### What is being planned for version 0.76 For [v0.76][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Allowing Keyboard Manager to output arbitrary Unicode sequences - Automated UI testing through WinAppDriver - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F50 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.76.0-x64.exe][ptUserX64] | 627F60BF3F04583A2ECE7ACE7E6F09ABDE92493E1FFFAC5705CC83009781CD8D | | Per user - ARM64 | [PowerToysUserSetup-0.76.0-arm64.exe][ptUserArm64] | 79D11CDDBDD87DF8A69A5B2FC28869B3085392E5F45FEE6560D278E48F8B0673 | | Machine wide - x64 | [PowerToysSetup-0.76.0-x64.exe][ptMachineX64] | 4F24A288AC92DD0AB74EF52CFE3D66FA744BDC6889CB4E3ED088763D9134C06D | | Machine wide - ARM64 | [PowerToysSetup-0.76.0-arm64.exe][ptMachineArm64] | 1BD9CD9C696D8898AAEE5A6D6A7122F053202CF1865C511BFC91FCFD0D767864 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.76 - November 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - Upgrade to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Keyboard Manager can now remap keys and shortcuts to send sequences of unicode text. - Modernized the Keyboard Manager Editor UI. Thanks [@dillydylann](https://github.com/dillydylann)! - Modernized the PowerToys Run, Quick Accent and Text Extractor UIs. Thanks [@niels9001](https://github.com/niels9001)! - New File Explorer Add-ons: QOI image Preview Handler and Thumbnail Provider. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### General - Updated the WebView 2 dependency to 1.0.2088.41. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed unreadable color brushes used across WinUI3 applications for improved accessibility. Thanks [@niels9001](https://github.com/niels9001)! - Flyouts used across WinUI3 applications are no longer constrained to the application's bounds. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Upgraded the WPF-UI dependency to preview.9 and then preview.11. Thanks [@niels9001](https://github.com/niels9001) and [@pomianowski](https://github.com/pomianowski)! - Upgraded to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Updated the WinAppSDK dependency to 1.4.3. ### Awake - Added localization to the tray icon context menu. ### Crop And Lock - Fixed restoring windows that were reparented while maximized. ### Environment Variables - Fixed crash caused by WinAppSDK version bump by replacing ListView elements with ItemsControl. ### FancyZones - Reverted a change that caused some applications, like the Windows Calculator, to not snap correctly. (This was a hotfix for 0.75) - FancyZones Editor will no longer apply a layout to the current monitor after editing it. - Fixed and refactored the code that detected if a window can be snapped. Added tests to it with known application window styles to avoid regressions in the future. ### File Explorer add-ons - Solved an issue incorrectly detecting encoding when previewing code files preview. - Fixed the background color for Gcode preview handler on dark theme. Thanks [@pedrolamas](https://github.com/pedrolamas)! - New utilities: Preview Handler and Thumbnail Provider for QOI image files. Thanks [@pedrolamas](https://github.com/pedrolamas)! - GCode Thumbnails are now in the 32 bit ARGB format. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Added the perceived type to SVG and QOI file thumbnails. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### GPO - Added the missing Environment Variables utility policy to the .admx and .adml files. (This was a hotfix for 0.75) - Fixed some typos and text improvements in the .adml file. Thanks [@htcfreek](https://github.com/htcfreek)! ### Hosts File Editor - Added a proper warning when the hosts file is read-only and a button to make it writable. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Image Resizer - Fixed a WPF-UI issue regarding the application's background brushes. Thanks [@niels9001](https://github.com/niels9001)! ### Installer - Included the Text Extractor and Awake localization files in the install process. ### Keyboard Manager - Modernized the UI with the Fluent design. Thanks [@dillydylann](https://github.com/dillydylann)! - Added the feature to remap keys and shortcuts to arbitrary unicode text sequences. ### Mouse Without Borders - Removed Thread.Suspend calls when exiting the utility. That call is deprecated, unneeded and was causing a silent crash. ### Peek - Added the possibility to pause/resume videos with the space bar. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed high CPU usage when idle before initializing the main window. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Implemented Ctrl+W as a shortcut to close Peek. Thanks [@Physalis2](https://github.com/Physalis2)! - Solved an issue incorrectly detecting encoding when previewing code files. - Fixed background issues when peeking into HTML files after the WebView 2 upgrade. ### PowerToys Run - Moved to WPF-UI and redesigned according to Fluent UX principles. Thanks [@niels9001](https://github.com/niels9001)! - Fixed an issue causing 3rd party plugins to not have their custom settings correctly initialized with default values. (This was a hotfix for 0.75) Thanks [@waaverecords](https://github.com/waaverecords)! - Fixed a crash in the VSCode plugin when the VSCode path had trailing backspaces. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed a crash when trying to load invalid image icons. - Fixed a crash in the Programs plugin when getting images for some .lnk files. - Fixed a rare startup initialization error and removed cold start operations that were no longer needed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved calculations for Windows File Time and Unix Epoch Time in the DateTime plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed a crash when trying to get the icon for a link that pointed to no file. - Cleaned up code in the WindowWalker plugin improving the logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Quick Accent - Moved from ModernWPF to WPF-UI. Thanks [@niels9001](https://github.com/niels9001)! - Added support to the Finnish language character set. Thanks [@davidtlascelles](https://github.com/davidtlascelles)! - Added currency symbols for Croatian, Gaeilge, Gàidhlig and Welsh. Thanks [@PesBandi](https://github.com/PesBandi)! - Added a missing Latin letter ꝡ. Thanks [@cubedhuang](https://github.com/cubedhuang)! - Added fraction characters. Thanks [@PesBandi](https://github.com/PesBandi)! - Added support to the Danish language character set. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Kazakhstani Tenge character to the Currencies characters set. Thanks [@PesBandi](https://github.com/PesBandi)! - Renamed Slovakian to Slovak, which is the correct term. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Greek language character set. Thanks [@mcbabo](https://github.com/mcbabo)! ### Settings - When clicking a module's name on the Dashboard, it will navigate to that module's page. - Fixed the clipping of information in the Backup and Restore section of the General Settings page. Thanks [@niels9001](https://github.com/niels9001)! - Updated the File Explorer Add-ons fluent icon. Thanks [@niels9001](https://github.com/niels9001)! - Added a warning when trying to set a shortcut that might conflict with "Alt Gr" key combinations. - Added a direct link to the OOBE's "What's New page" from the main Settings window. Thanks [@iakrayna](https://github.com/iakrayna)! - Changed mentions from Microsoft Docs to Microsoft Learn. - Fixed the slow reaction to system theme changes. ### Text Extractor - Move to WPF-UI, localization and light theme support. Thanks [@niels9001](https://github.com/niels9001)! - Disabled by default on Windows 11, with a information box on Settings to prefer using the Windows Snipping Tool, which now supports OCR. ### Documentation - Fixed some typos in the README. Thanks [@Asymtode712](https://github.com/Asymtode712)! - Reworked the gpo docs on learn.microsoft.com, adding .admx, registry and Intune information. Thanks [@htcfreek](https://github.com/htcfreek)! ### Development - Updated the check-spelling ci action to 0.22. Thanks [@jsoref](https://github.com/jsoref)! - Refactored the modules data model used between the Settings Dashboard and Flyout. - Fixed a flaky interop test that was causing automated CI to hang occasionally. - Increased the WebView 2 loading timeout to reduce flakiness in those tests. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added support for building with the Dev Drive CopyOnWrite feature, increasing build speed. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Addressed the C# static analyzers suggestions. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Addressed the C++ static analyzers suggestions. - PRs that only contain Markdown or text files changes no longer trigger the full CI. Thanks [@snickler](https://github.com/snickler)! - Updated the Microsoft.Windows.CsWinRT to 2.0.4 to fix building with the official Visual Studio 17.8 release. - Fixed new code quality issues caught by the official Visual Studio 17.8 release. - Added a bot trigger to point contributors to the main new contribution issue on GitHub. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Removed unneeded entries from expect.txt. - Turned off a new feature from Visual Studio that was adding the commit hash to the binary files Product Version. - Refactored and reviewed the spellcheck entries into different files. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Added Spectre mitigation and SHA256 hash creation for some DLLs. - Reverted the release pipeline template to a previous release that's stable for shipping PowerToys. #### What is being planned for version 0.77 For [v0.77][github-next-release-work], we'll work on the items below: - New utility: Command Not Found - Language selection - Automated UI testing through WinAppDriver - Develop support for Desired State Configuration - Modernize and refresh the UX of PowerToys based on WPF. Here's the Work in Progress preview for "Color Picker": ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
539b136cd8b8cc8a0776d193eadadea1f977f3fd
0fec6d085c8bf5df8da5ac9bed77eabefc42bdb7
## Unrecognized Spelling [Kazakhstani](#security-tab) is not a recognized word. \(unrecognized-spelling\) [Show more details](https://github.com/microsoft/PowerToys/security/code-scanning/564)
github-advanced-security[bot]
155
microsoft/PowerToys
30,085
0.76 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.76 release. This will be copy / pasted for release notes.
null
2023-11-30 17:08:09+00:00
2023-12-04 17:46:29+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.75.1-x64.exe][ptUserX64] | CFDAE52607689A695F4E4DDD7C1FE68400359AEF0D2B23C86122835E9D32A20F | | Per user - ARM64 | [PowerToysUserSetup-0.75.1-arm64.exe][ptUserArm64] | 9BAD3EF71DEDE70445416AC7369D115FAE095152722BC4F23EE393D8A10F45CA | | Machine wide - x64 | [PowerToysSetup-0.75.1-x64.exe][ptMachineX64] | 18FEB9377B0BA45189FFF4F89627B152DD794CCC15F005592B34A40A3EA62EA8 | | Machine wide - ARM64 | [PowerToysSetup-0.75.1-arm64.exe][ptMachineArm64] | F5CDF5A35876A0B581F446BF728B7AC52B6B701C0850D9CEA9A1874523745CFD | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.75 - October 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - New utility: An environment variables editor with the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Settings has a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Added a previewer to Peek that hosts File Explorer previewers to support every file type that a machine is currently able to preview. For example, this means that if Microsoft Office handlers are installed, Peek can preview Office files. Thanks [@dillydylann](https://github.com/dillydylann)! ### General - Many typo fixes through the projects and documentation. Thanks [@brianteeman](https://github.com/brianteeman)! - Refactored and improved the logic across utilities for bringing a window to the foreground after activation. ### Color Picker - After activating Color Picker, it's now possible to cancel the session by clicking the right mouse button. Thanks [@fredso90](https://github.com/fredso90)! ### Environment Variables - Added a new utility: An environment variables editor that has the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Shows in the title bar if it's running as an administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### FancyZones - Fixed an issue causing context menu pop-ups from some apps to automatically snap to a zone. (This was a hotfix for 0.74) - Applied the fix for the context menu pop-ups to the logic that decides which windows can be snapped. - Reworked the "Keep windows in their zones" option to include the work area and turn it on by default, fixing an incompatibility with the Copilot flyout. - Fixed an issue causing windows to be snapped while moving to a different virtual desktop. ### File Explorer add-ons - Fixed an issue blocking some SVG files from being previewed correctly. (This was a hotfix for 0.74) - Fixed crashes on invalid files in the STL Thumbnail generator. ### GPO - Added a global GPO rule that applies for all utilities unless it's overridden. Thanks [@htcfreek](https://github.com/htcfreek)! - Added GPO rules to control which PowerToys Run plugins should be enabled/disabled by policy. Thanks [@htcfreek](https://github.com/htcfreek)! * All plugins have to provide its plugin ID as static property in its Main method. ### Image Resizer - Fixed wrong .bmp file association in the registry. Thanks [@meitinger](https://github.com/meitinger)! ### Keyboard Manager - Visually distinguish between the Numpad and regular period characters in the UI. - This utility is now disabled by default on new installations, since it requires user configuration to affect keyboard behavior. - Fixed a typo in the Numpad Subtract key in the editor. ### Mouse Highlighter - Removed the lower limit of fade delay and duration, to allow better signaling of doing a double click. Thanks [@fredso90](https://github.com/fredso90)! ### Mouse Jump - The process now runs in the background, for a faster activation time. Thanks [@mikeclayton](https://github.com/mikeclayton)! ### Peek - Reported file sizes will now more closely match what's reported by File Explorer. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a previewer that hosts File Explorer previewers to support every file type that a machine is currently able to preview. Thanks [@dillydylann](https://github.com/dillydylann)! - Fixed an issue causing the preview of the first file to be stuck loading. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed showing the previously previewed video file when invoking Peek with a new file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added the wrap and file formatting options to the Monaco previewer. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### PowerRename - Save data from the last run in a different file to avoid conflicting with changing settings in the Settings application. ### PowerToys Run - Fixed a case where the query wasn't being cleared after invoking a result action through the keyboard. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved the shell selection option for Windows Terminal in the Shell plugin and improved the backend code for adding combo box options to plugins. Thanks [@htcfreek](https://github.com/htcfreek)! * The implementation of the combo box items has changed and isn't backward compatible. (Old plugins won't crash, but the combo box setting isn't shown in settings ui anymore.) - Added Unix time in milliseconds, fixed negative unix time input and improved error messages in the TimeDate plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - The PowerToys plugin allows calling the new Environment Variables utility. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Refactored and added support to VSCodium Stable, VSCodium Insider and Remote Tunnels workspaces. Thanks [@eternalphane](https://github.com/eternalphane)! ### Quick Accent - Fixed characters that were removed from "All languages" because they were not in any single language. (This was a hotfix for 0.74) - Added Asturian characters to the Spanish character set. Thanks [@blakestack](https://github.com/blakestack)! - Added Greek characters with tonos. Thanks [@PesBandi](https://github.com/PesBandi)! ### Registry Preview - Fixed a parsing error that crashed the Application. (This was a hotfix for 0.74) - Fixed opening file names with non-ASCII characters. Thanks [@randyrants](https://github.com/randyrants)! - Fixed wrong parsing when the file contained an assignment with spaces around the equals sign. Thanks [@randyrants](https://github.com/randyrants)! - Fixed key transversal issues when a key was a substring of a parent key. Thanks [@randyrants](https://github.com/randyrants)! ### Runner - Fixed the update notification toast to show a Unicode arrow. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Settings - Added a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Fixed a typo in the Hosts File Editor page. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a lock icon to the flyout listing of all modules when its enabled state is controlled by policy. - The "All apps" list in the flyout will now list all apps even if their enabled state is controlled by policy. ### Video Conference Mute - Added an option to allow for the toolbar to hide after some time passed. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Added an option to select to mute or unmute at startup. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Fixed an issue causing a cascade of mute/unmute triggers. ### Documentation - Updated the Group Policy documentation on learn.microsoft.com, removed the Group Policy documentation from the repository and linked to the published documentation on learn.microsoft.com instead. ### Development - Added project dependencies to the version project and headers to avoid building errors. Thanks [@johnterickson](https://github.com/johnterickson)! - Enabled Control Flow Guard in the C++ projects. Thanks [@DHowett](https://github.com/DHowett)! - Switched the release pipeline to the 1ES governed template. Thanks [@DHowett](https://github.com/DHowett)! - Styled XAML files and added a XAML Style checker to the solution, with a CI action to check if code being contributed is compliant. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Suppressed redundant midl file warnings in PowerRename. - Add unit tests to FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014), [@andrewbengordon](https://github.com/andrewbengordon) and [@Cwighty](https://github.com/Cwighty)! - Improved the Default Layouts internal structure in FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014)! - Fixed code issues to allow building in Visual Studio 17.8 Preview 4. #### What is being planned for version 0.76 For [v0.76][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Allowing Keyboard Manager to output arbitrary Unicode sequences - Automated UI testing through WinAppDriver - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F50 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.76.0-x64.exe][ptUserX64] | 627F60BF3F04583A2ECE7ACE7E6F09ABDE92493E1FFFAC5705CC83009781CD8D | | Per user - ARM64 | [PowerToysUserSetup-0.76.0-arm64.exe][ptUserArm64] | 79D11CDDBDD87DF8A69A5B2FC28869B3085392E5F45FEE6560D278E48F8B0673 | | Machine wide - x64 | [PowerToysSetup-0.76.0-x64.exe][ptMachineX64] | 4F24A288AC92DD0AB74EF52CFE3D66FA744BDC6889CB4E3ED088763D9134C06D | | Machine wide - ARM64 | [PowerToysSetup-0.76.0-arm64.exe][ptMachineArm64] | 1BD9CD9C696D8898AAEE5A6D6A7122F053202CF1865C511BFC91FCFD0D767864 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.76 - November 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - Upgrade to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Keyboard Manager can now remap keys and shortcuts to send sequences of unicode text. - Modernized the Keyboard Manager Editor UI. Thanks [@dillydylann](https://github.com/dillydylann)! - Modernized the PowerToys Run, Quick Accent and Text Extractor UIs. Thanks [@niels9001](https://github.com/niels9001)! - New File Explorer Add-ons: QOI image Preview Handler and Thumbnail Provider. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### General - Updated the WebView 2 dependency to 1.0.2088.41. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed unreadable color brushes used across WinUI3 applications for improved accessibility. Thanks [@niels9001](https://github.com/niels9001)! - Flyouts used across WinUI3 applications are no longer constrained to the application's bounds. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Upgraded the WPF-UI dependency to preview.9 and then preview.11. Thanks [@niels9001](https://github.com/niels9001) and [@pomianowski](https://github.com/pomianowski)! - Upgraded to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Updated the WinAppSDK dependency to 1.4.3. ### Awake - Added localization to the tray icon context menu. ### Crop And Lock - Fixed restoring windows that were reparented while maximized. ### Environment Variables - Fixed crash caused by WinAppSDK version bump by replacing ListView elements with ItemsControl. ### FancyZones - Reverted a change that caused some applications, like the Windows Calculator, to not snap correctly. (This was a hotfix for 0.75) - FancyZones Editor will no longer apply a layout to the current monitor after editing it. - Fixed and refactored the code that detected if a window can be snapped. Added tests to it with known application window styles to avoid regressions in the future. ### File Explorer add-ons - Solved an issue incorrectly detecting encoding when previewing code files preview. - Fixed the background color for Gcode preview handler on dark theme. Thanks [@pedrolamas](https://github.com/pedrolamas)! - New utilities: Preview Handler and Thumbnail Provider for QOI image files. Thanks [@pedrolamas](https://github.com/pedrolamas)! - GCode Thumbnails are now in the 32 bit ARGB format. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Added the perceived type to SVG and QOI file thumbnails. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### GPO - Added the missing Environment Variables utility policy to the .admx and .adml files. (This was a hotfix for 0.75) - Fixed some typos and text improvements in the .adml file. Thanks [@htcfreek](https://github.com/htcfreek)! ### Hosts File Editor - Added a proper warning when the hosts file is read-only and a button to make it writable. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Image Resizer - Fixed a WPF-UI issue regarding the application's background brushes. Thanks [@niels9001](https://github.com/niels9001)! ### Installer - Included the Text Extractor and Awake localization files in the install process. ### Keyboard Manager - Modernized the UI with the Fluent design. Thanks [@dillydylann](https://github.com/dillydylann)! - Added the feature to remap keys and shortcuts to arbitrary unicode text sequences. ### Mouse Without Borders - Removed Thread.Suspend calls when exiting the utility. That call is deprecated, unneeded and was causing a silent crash. ### Peek - Added the possibility to pause/resume videos with the space bar. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed high CPU usage when idle before initializing the main window. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Implemented Ctrl+W as a shortcut to close Peek. Thanks [@Physalis2](https://github.com/Physalis2)! - Solved an issue incorrectly detecting encoding when previewing code files. - Fixed background issues when peeking into HTML files after the WebView 2 upgrade. ### PowerToys Run - Moved to WPF-UI and redesigned according to Fluent UX principles. Thanks [@niels9001](https://github.com/niels9001)! - Fixed an issue causing 3rd party plugins to not have their custom settings correctly initialized with default values. (This was a hotfix for 0.75) Thanks [@waaverecords](https://github.com/waaverecords)! - Fixed a crash in the VSCode plugin when the VSCode path had trailing backspaces. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed a crash when trying to load invalid image icons. - Fixed a crash in the Programs plugin when getting images for some .lnk files. - Fixed a rare startup initialization error and removed cold start operations that were no longer needed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved calculations for Windows File Time and Unix Epoch Time in the DateTime plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed a crash when trying to get the icon for a link that pointed to no file. - Cleaned up code in the WindowWalker plugin improving the logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Quick Accent - Moved from ModernWPF to WPF-UI. Thanks [@niels9001](https://github.com/niels9001)! - Added support to the Finnish language character set. Thanks [@davidtlascelles](https://github.com/davidtlascelles)! - Added currency symbols for Croatian, Gaeilge, Gàidhlig and Welsh. Thanks [@PesBandi](https://github.com/PesBandi)! - Added a missing Latin letter ꝡ. Thanks [@cubedhuang](https://github.com/cubedhuang)! - Added fraction characters. Thanks [@PesBandi](https://github.com/PesBandi)! - Added support to the Danish language character set. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Kazakhstani Tenge character to the Currencies characters set. Thanks [@PesBandi](https://github.com/PesBandi)! - Renamed Slovakian to Slovak, which is the correct term. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Greek language character set. Thanks [@mcbabo](https://github.com/mcbabo)! ### Settings - When clicking a module's name on the Dashboard, it will navigate to that module's page. - Fixed the clipping of information in the Backup and Restore section of the General Settings page. Thanks [@niels9001](https://github.com/niels9001)! - Updated the File Explorer Add-ons fluent icon. Thanks [@niels9001](https://github.com/niels9001)! - Added a warning when trying to set a shortcut that might conflict with "Alt Gr" key combinations. - Added a direct link to the OOBE's "What's New page" from the main Settings window. Thanks [@iakrayna](https://github.com/iakrayna)! - Changed mentions from Microsoft Docs to Microsoft Learn. - Fixed the slow reaction to system theme changes. ### Text Extractor - Move to WPF-UI, localization and light theme support. Thanks [@niels9001](https://github.com/niels9001)! - Disabled by default on Windows 11, with a information box on Settings to prefer using the Windows Snipping Tool, which now supports OCR. ### Documentation - Fixed some typos in the README. Thanks [@Asymtode712](https://github.com/Asymtode712)! - Reworked the gpo docs on learn.microsoft.com, adding .admx, registry and Intune information. Thanks [@htcfreek](https://github.com/htcfreek)! ### Development - Updated the check-spelling ci action to 0.22. Thanks [@jsoref](https://github.com/jsoref)! - Refactored the modules data model used between the Settings Dashboard and Flyout. - Fixed a flaky interop test that was causing automated CI to hang occasionally. - Increased the WebView 2 loading timeout to reduce flakiness in those tests. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added support for building with the Dev Drive CopyOnWrite feature, increasing build speed. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Addressed the C# static analyzers suggestions. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Addressed the C++ static analyzers suggestions. - PRs that only contain Markdown or text files changes no longer trigger the full CI. Thanks [@snickler](https://github.com/snickler)! - Updated the Microsoft.Windows.CsWinRT to 2.0.4 to fix building with the official Visual Studio 17.8 release. - Fixed new code quality issues caught by the official Visual Studio 17.8 release. - Added a bot trigger to point contributors to the main new contribution issue on GitHub. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Removed unneeded entries from expect.txt. - Turned off a new feature from Visual Studio that was adding the commit hash to the binary files Product Version. - Refactored and reviewed the spellcheck entries into different files. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Added Spectre mitigation and SHA256 hash creation for some DLLs. - Reverted the release pipeline template to a previous release that's stable for shipping PowerToys. #### What is being planned for version 0.77 For [v0.77][github-next-release-work], we'll work on the items below: - New utility: Command Not Found - Language selection - Automated UI testing through WinAppDriver - Develop support for Desired State Configuration - Modernize and refresh the UX of PowerToys based on WPF. Here's the Work in Progress preview for "Color Picker": ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
539b136cd8b8cc8a0776d193eadadea1f977f3fd
0fec6d085c8bf5df8da5ac9bed77eabefc42bdb7
## Unrecognized Spelling [Tenge](#security-tab) is not a recognized word. \(unrecognized-spelling\) [Show more details](https://github.com/microsoft/PowerToys/security/code-scanning/565)
github-advanced-security[bot]
156
microsoft/PowerToys
30,085
0.76 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.76 release. This will be copy / pasted for release notes.
null
2023-11-30 17:08:09+00:00
2023-12-04 17:46:29+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.75.1-x64.exe][ptUserX64] | CFDAE52607689A695F4E4DDD7C1FE68400359AEF0D2B23C86122835E9D32A20F | | Per user - ARM64 | [PowerToysUserSetup-0.75.1-arm64.exe][ptUserArm64] | 9BAD3EF71DEDE70445416AC7369D115FAE095152722BC4F23EE393D8A10F45CA | | Machine wide - x64 | [PowerToysSetup-0.75.1-x64.exe][ptMachineX64] | 18FEB9377B0BA45189FFF4F89627B152DD794CCC15F005592B34A40A3EA62EA8 | | Machine wide - ARM64 | [PowerToysSetup-0.75.1-arm64.exe][ptMachineArm64] | F5CDF5A35876A0B581F446BF728B7AC52B6B701C0850D9CEA9A1874523745CFD | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.75 - October 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - New utility: An environment variables editor with the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Settings has a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Added a previewer to Peek that hosts File Explorer previewers to support every file type that a machine is currently able to preview. For example, this means that if Microsoft Office handlers are installed, Peek can preview Office files. Thanks [@dillydylann](https://github.com/dillydylann)! ### General - Many typo fixes through the projects and documentation. Thanks [@brianteeman](https://github.com/brianteeman)! - Refactored and improved the logic across utilities for bringing a window to the foreground after activation. ### Color Picker - After activating Color Picker, it's now possible to cancel the session by clicking the right mouse button. Thanks [@fredso90](https://github.com/fredso90)! ### Environment Variables - Added a new utility: An environment variables editor that has the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Shows in the title bar if it's running as an administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### FancyZones - Fixed an issue causing context menu pop-ups from some apps to automatically snap to a zone. (This was a hotfix for 0.74) - Applied the fix for the context menu pop-ups to the logic that decides which windows can be snapped. - Reworked the "Keep windows in their zones" option to include the work area and turn it on by default, fixing an incompatibility with the Copilot flyout. - Fixed an issue causing windows to be snapped while moving to a different virtual desktop. ### File Explorer add-ons - Fixed an issue blocking some SVG files from being previewed correctly. (This was a hotfix for 0.74) - Fixed crashes on invalid files in the STL Thumbnail generator. ### GPO - Added a global GPO rule that applies for all utilities unless it's overridden. Thanks [@htcfreek](https://github.com/htcfreek)! - Added GPO rules to control which PowerToys Run plugins should be enabled/disabled by policy. Thanks [@htcfreek](https://github.com/htcfreek)! * All plugins have to provide its plugin ID as static property in its Main method. ### Image Resizer - Fixed wrong .bmp file association in the registry. Thanks [@meitinger](https://github.com/meitinger)! ### Keyboard Manager - Visually distinguish between the Numpad and regular period characters in the UI. - This utility is now disabled by default on new installations, since it requires user configuration to affect keyboard behavior. - Fixed a typo in the Numpad Subtract key in the editor. ### Mouse Highlighter - Removed the lower limit of fade delay and duration, to allow better signaling of doing a double click. Thanks [@fredso90](https://github.com/fredso90)! ### Mouse Jump - The process now runs in the background, for a faster activation time. Thanks [@mikeclayton](https://github.com/mikeclayton)! ### Peek - Reported file sizes will now more closely match what's reported by File Explorer. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a previewer that hosts File Explorer previewers to support every file type that a machine is currently able to preview. Thanks [@dillydylann](https://github.com/dillydylann)! - Fixed an issue causing the preview of the first file to be stuck loading. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed showing the previously previewed video file when invoking Peek with a new file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added the wrap and file formatting options to the Monaco previewer. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### PowerRename - Save data from the last run in a different file to avoid conflicting with changing settings in the Settings application. ### PowerToys Run - Fixed a case where the query wasn't being cleared after invoking a result action through the keyboard. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved the shell selection option for Windows Terminal in the Shell plugin and improved the backend code for adding combo box options to plugins. Thanks [@htcfreek](https://github.com/htcfreek)! * The implementation of the combo box items has changed and isn't backward compatible. (Old plugins won't crash, but the combo box setting isn't shown in settings ui anymore.) - Added Unix time in milliseconds, fixed negative unix time input and improved error messages in the TimeDate plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - The PowerToys plugin allows calling the new Environment Variables utility. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Refactored and added support to VSCodium Stable, VSCodium Insider and Remote Tunnels workspaces. Thanks [@eternalphane](https://github.com/eternalphane)! ### Quick Accent - Fixed characters that were removed from "All languages" because they were not in any single language. (This was a hotfix for 0.74) - Added Asturian characters to the Spanish character set. Thanks [@blakestack](https://github.com/blakestack)! - Added Greek characters with tonos. Thanks [@PesBandi](https://github.com/PesBandi)! ### Registry Preview - Fixed a parsing error that crashed the Application. (This was a hotfix for 0.74) - Fixed opening file names with non-ASCII characters. Thanks [@randyrants](https://github.com/randyrants)! - Fixed wrong parsing when the file contained an assignment with spaces around the equals sign. Thanks [@randyrants](https://github.com/randyrants)! - Fixed key transversal issues when a key was a substring of a parent key. Thanks [@randyrants](https://github.com/randyrants)! ### Runner - Fixed the update notification toast to show a Unicode arrow. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Settings - Added a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Fixed a typo in the Hosts File Editor page. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a lock icon to the flyout listing of all modules when its enabled state is controlled by policy. - The "All apps" list in the flyout will now list all apps even if their enabled state is controlled by policy. ### Video Conference Mute - Added an option to allow for the toolbar to hide after some time passed. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Added an option to select to mute or unmute at startup. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Fixed an issue causing a cascade of mute/unmute triggers. ### Documentation - Updated the Group Policy documentation on learn.microsoft.com, removed the Group Policy documentation from the repository and linked to the published documentation on learn.microsoft.com instead. ### Development - Added project dependencies to the version project and headers to avoid building errors. Thanks [@johnterickson](https://github.com/johnterickson)! - Enabled Control Flow Guard in the C++ projects. Thanks [@DHowett](https://github.com/DHowett)! - Switched the release pipeline to the 1ES governed template. Thanks [@DHowett](https://github.com/DHowett)! - Styled XAML files and added a XAML Style checker to the solution, with a CI action to check if code being contributed is compliant. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Suppressed redundant midl file warnings in PowerRename. - Add unit tests to FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014), [@andrewbengordon](https://github.com/andrewbengordon) and [@Cwighty](https://github.com/Cwighty)! - Improved the Default Layouts internal structure in FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014)! - Fixed code issues to allow building in Visual Studio 17.8 Preview 4. #### What is being planned for version 0.76 For [v0.76][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Allowing Keyboard Manager to output arbitrary Unicode sequences - Automated UI testing through WinAppDriver - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F50 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.76.0-x64.exe][ptUserX64] | 627F60BF3F04583A2ECE7ACE7E6F09ABDE92493E1FFFAC5705CC83009781CD8D | | Per user - ARM64 | [PowerToysUserSetup-0.76.0-arm64.exe][ptUserArm64] | 79D11CDDBDD87DF8A69A5B2FC28869B3085392E5F45FEE6560D278E48F8B0673 | | Machine wide - x64 | [PowerToysSetup-0.76.0-x64.exe][ptMachineX64] | 4F24A288AC92DD0AB74EF52CFE3D66FA744BDC6889CB4E3ED088763D9134C06D | | Machine wide - ARM64 | [PowerToysSetup-0.76.0-arm64.exe][ptMachineArm64] | 1BD9CD9C696D8898AAEE5A6D6A7122F053202CF1865C511BFC91FCFD0D767864 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.76 - November 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - Upgrade to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Keyboard Manager can now remap keys and shortcuts to send sequences of unicode text. - Modernized the Keyboard Manager Editor UI. Thanks [@dillydylann](https://github.com/dillydylann)! - Modernized the PowerToys Run, Quick Accent and Text Extractor UIs. Thanks [@niels9001](https://github.com/niels9001)! - New File Explorer Add-ons: QOI image Preview Handler and Thumbnail Provider. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### General - Updated the WebView 2 dependency to 1.0.2088.41. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed unreadable color brushes used across WinUI3 applications for improved accessibility. Thanks [@niels9001](https://github.com/niels9001)! - Flyouts used across WinUI3 applications are no longer constrained to the application's bounds. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Upgraded the WPF-UI dependency to preview.9 and then preview.11. Thanks [@niels9001](https://github.com/niels9001) and [@pomianowski](https://github.com/pomianowski)! - Upgraded to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Updated the WinAppSDK dependency to 1.4.3. ### Awake - Added localization to the tray icon context menu. ### Crop And Lock - Fixed restoring windows that were reparented while maximized. ### Environment Variables - Fixed crash caused by WinAppSDK version bump by replacing ListView elements with ItemsControl. ### FancyZones - Reverted a change that caused some applications, like the Windows Calculator, to not snap correctly. (This was a hotfix for 0.75) - FancyZones Editor will no longer apply a layout to the current monitor after editing it. - Fixed and refactored the code that detected if a window can be snapped. Added tests to it with known application window styles to avoid regressions in the future. ### File Explorer add-ons - Solved an issue incorrectly detecting encoding when previewing code files preview. - Fixed the background color for Gcode preview handler on dark theme. Thanks [@pedrolamas](https://github.com/pedrolamas)! - New utilities: Preview Handler and Thumbnail Provider for QOI image files. Thanks [@pedrolamas](https://github.com/pedrolamas)! - GCode Thumbnails are now in the 32 bit ARGB format. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Added the perceived type to SVG and QOI file thumbnails. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### GPO - Added the missing Environment Variables utility policy to the .admx and .adml files. (This was a hotfix for 0.75) - Fixed some typos and text improvements in the .adml file. Thanks [@htcfreek](https://github.com/htcfreek)! ### Hosts File Editor - Added a proper warning when the hosts file is read-only and a button to make it writable. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Image Resizer - Fixed a WPF-UI issue regarding the application's background brushes. Thanks [@niels9001](https://github.com/niels9001)! ### Installer - Included the Text Extractor and Awake localization files in the install process. ### Keyboard Manager - Modernized the UI with the Fluent design. Thanks [@dillydylann](https://github.com/dillydylann)! - Added the feature to remap keys and shortcuts to arbitrary unicode text sequences. ### Mouse Without Borders - Removed Thread.Suspend calls when exiting the utility. That call is deprecated, unneeded and was causing a silent crash. ### Peek - Added the possibility to pause/resume videos with the space bar. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed high CPU usage when idle before initializing the main window. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Implemented Ctrl+W as a shortcut to close Peek. Thanks [@Physalis2](https://github.com/Physalis2)! - Solved an issue incorrectly detecting encoding when previewing code files. - Fixed background issues when peeking into HTML files after the WebView 2 upgrade. ### PowerToys Run - Moved to WPF-UI and redesigned according to Fluent UX principles. Thanks [@niels9001](https://github.com/niels9001)! - Fixed an issue causing 3rd party plugins to not have their custom settings correctly initialized with default values. (This was a hotfix for 0.75) Thanks [@waaverecords](https://github.com/waaverecords)! - Fixed a crash in the VSCode plugin when the VSCode path had trailing backspaces. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed a crash when trying to load invalid image icons. - Fixed a crash in the Programs plugin when getting images for some .lnk files. - Fixed a rare startup initialization error and removed cold start operations that were no longer needed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved calculations for Windows File Time and Unix Epoch Time in the DateTime plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed a crash when trying to get the icon for a link that pointed to no file. - Cleaned up code in the WindowWalker plugin improving the logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Quick Accent - Moved from ModernWPF to WPF-UI. Thanks [@niels9001](https://github.com/niels9001)! - Added support to the Finnish language character set. Thanks [@davidtlascelles](https://github.com/davidtlascelles)! - Added currency symbols for Croatian, Gaeilge, Gàidhlig and Welsh. Thanks [@PesBandi](https://github.com/PesBandi)! - Added a missing Latin letter ꝡ. Thanks [@cubedhuang](https://github.com/cubedhuang)! - Added fraction characters. Thanks [@PesBandi](https://github.com/PesBandi)! - Added support to the Danish language character set. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Kazakhstani Tenge character to the Currencies characters set. Thanks [@PesBandi](https://github.com/PesBandi)! - Renamed Slovakian to Slovak, which is the correct term. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Greek language character set. Thanks [@mcbabo](https://github.com/mcbabo)! ### Settings - When clicking a module's name on the Dashboard, it will navigate to that module's page. - Fixed the clipping of information in the Backup and Restore section of the General Settings page. Thanks [@niels9001](https://github.com/niels9001)! - Updated the File Explorer Add-ons fluent icon. Thanks [@niels9001](https://github.com/niels9001)! - Added a warning when trying to set a shortcut that might conflict with "Alt Gr" key combinations. - Added a direct link to the OOBE's "What's New page" from the main Settings window. Thanks [@iakrayna](https://github.com/iakrayna)! - Changed mentions from Microsoft Docs to Microsoft Learn. - Fixed the slow reaction to system theme changes. ### Text Extractor - Move to WPF-UI, localization and light theme support. Thanks [@niels9001](https://github.com/niels9001)! - Disabled by default on Windows 11, with a information box on Settings to prefer using the Windows Snipping Tool, which now supports OCR. ### Documentation - Fixed some typos in the README. Thanks [@Asymtode712](https://github.com/Asymtode712)! - Reworked the gpo docs on learn.microsoft.com, adding .admx, registry and Intune information. Thanks [@htcfreek](https://github.com/htcfreek)! ### Development - Updated the check-spelling ci action to 0.22. Thanks [@jsoref](https://github.com/jsoref)! - Refactored the modules data model used between the Settings Dashboard and Flyout. - Fixed a flaky interop test that was causing automated CI to hang occasionally. - Increased the WebView 2 loading timeout to reduce flakiness in those tests. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added support for building with the Dev Drive CopyOnWrite feature, increasing build speed. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Addressed the C# static analyzers suggestions. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Addressed the C++ static analyzers suggestions. - PRs that only contain Markdown or text files changes no longer trigger the full CI. Thanks [@snickler](https://github.com/snickler)! - Updated the Microsoft.Windows.CsWinRT to 2.0.4 to fix building with the official Visual Studio 17.8 release. - Fixed new code quality issues caught by the official Visual Studio 17.8 release. - Added a bot trigger to point contributors to the main new contribution issue on GitHub. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Removed unneeded entries from expect.txt. - Turned off a new feature from Visual Studio that was adding the commit hash to the binary files Product Version. - Refactored and reviewed the spellcheck entries into different files. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Added Spectre mitigation and SHA256 hash creation for some DLLs. - Reverted the release pipeline template to a previous release that's stable for shipping PowerToys. #### What is being planned for version 0.77 For [v0.77][github-next-release-work], we'll work on the items below: - New utility: Command Not Found - Language selection - Automated UI testing through WinAppDriver - Develop support for Desired State Configuration - Modernize and refresh the UX of PowerToys based on WPF. Here's the Work in Progress preview for "Color Picker": ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
539b136cd8b8cc8a0776d193eadadea1f977f3fd
0fec6d085c8bf5df8da5ac9bed77eabefc42bdb7
## Unrecognized Spelling [infobox](#security-tab) is not a recognized word. \(unrecognized-spelling\) [Show more details](https://github.com/microsoft/PowerToys/security/code-scanning/566)
github-advanced-security[bot]
157
microsoft/PowerToys
30,085
0.76 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.76 release. This will be copy / pasted for release notes.
null
2023-11-30 17:08:09+00:00
2023-12-04 17:46:29+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.75.1-x64.exe][ptUserX64] | CFDAE52607689A695F4E4DDD7C1FE68400359AEF0D2B23C86122835E9D32A20F | | Per user - ARM64 | [PowerToysUserSetup-0.75.1-arm64.exe][ptUserArm64] | 9BAD3EF71DEDE70445416AC7369D115FAE095152722BC4F23EE393D8A10F45CA | | Machine wide - x64 | [PowerToysSetup-0.75.1-x64.exe][ptMachineX64] | 18FEB9377B0BA45189FFF4F89627B152DD794CCC15F005592B34A40A3EA62EA8 | | Machine wide - ARM64 | [PowerToysSetup-0.75.1-arm64.exe][ptMachineArm64] | F5CDF5A35876A0B581F446BF728B7AC52B6B701C0850D9CEA9A1874523745CFD | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.75 - October 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - New utility: An environment variables editor with the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Settings has a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Added a previewer to Peek that hosts File Explorer previewers to support every file type that a machine is currently able to preview. For example, this means that if Microsoft Office handlers are installed, Peek can preview Office files. Thanks [@dillydylann](https://github.com/dillydylann)! ### General - Many typo fixes through the projects and documentation. Thanks [@brianteeman](https://github.com/brianteeman)! - Refactored and improved the logic across utilities for bringing a window to the foreground after activation. ### Color Picker - After activating Color Picker, it's now possible to cancel the session by clicking the right mouse button. Thanks [@fredso90](https://github.com/fredso90)! ### Environment Variables - Added a new utility: An environment variables editor that has the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Shows in the title bar if it's running as an administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### FancyZones - Fixed an issue causing context menu pop-ups from some apps to automatically snap to a zone. (This was a hotfix for 0.74) - Applied the fix for the context menu pop-ups to the logic that decides which windows can be snapped. - Reworked the "Keep windows in their zones" option to include the work area and turn it on by default, fixing an incompatibility with the Copilot flyout. - Fixed an issue causing windows to be snapped while moving to a different virtual desktop. ### File Explorer add-ons - Fixed an issue blocking some SVG files from being previewed correctly. (This was a hotfix for 0.74) - Fixed crashes on invalid files in the STL Thumbnail generator. ### GPO - Added a global GPO rule that applies for all utilities unless it's overridden. Thanks [@htcfreek](https://github.com/htcfreek)! - Added GPO rules to control which PowerToys Run plugins should be enabled/disabled by policy. Thanks [@htcfreek](https://github.com/htcfreek)! * All plugins have to provide its plugin ID as static property in its Main method. ### Image Resizer - Fixed wrong .bmp file association in the registry. Thanks [@meitinger](https://github.com/meitinger)! ### Keyboard Manager - Visually distinguish between the Numpad and regular period characters in the UI. - This utility is now disabled by default on new installations, since it requires user configuration to affect keyboard behavior. - Fixed a typo in the Numpad Subtract key in the editor. ### Mouse Highlighter - Removed the lower limit of fade delay and duration, to allow better signaling of doing a double click. Thanks [@fredso90](https://github.com/fredso90)! ### Mouse Jump - The process now runs in the background, for a faster activation time. Thanks [@mikeclayton](https://github.com/mikeclayton)! ### Peek - Reported file sizes will now more closely match what's reported by File Explorer. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a previewer that hosts File Explorer previewers to support every file type that a machine is currently able to preview. Thanks [@dillydylann](https://github.com/dillydylann)! - Fixed an issue causing the preview of the first file to be stuck loading. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed showing the previously previewed video file when invoking Peek with a new file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added the wrap and file formatting options to the Monaco previewer. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### PowerRename - Save data from the last run in a different file to avoid conflicting with changing settings in the Settings application. ### PowerToys Run - Fixed a case where the query wasn't being cleared after invoking a result action through the keyboard. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved the shell selection option for Windows Terminal in the Shell plugin and improved the backend code for adding combo box options to plugins. Thanks [@htcfreek](https://github.com/htcfreek)! * The implementation of the combo box items has changed and isn't backward compatible. (Old plugins won't crash, but the combo box setting isn't shown in settings ui anymore.) - Added Unix time in milliseconds, fixed negative unix time input and improved error messages in the TimeDate plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - The PowerToys plugin allows calling the new Environment Variables utility. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Refactored and added support to VSCodium Stable, VSCodium Insider and Remote Tunnels workspaces. Thanks [@eternalphane](https://github.com/eternalphane)! ### Quick Accent - Fixed characters that were removed from "All languages" because they were not in any single language. (This was a hotfix for 0.74) - Added Asturian characters to the Spanish character set. Thanks [@blakestack](https://github.com/blakestack)! - Added Greek characters with tonos. Thanks [@PesBandi](https://github.com/PesBandi)! ### Registry Preview - Fixed a parsing error that crashed the Application. (This was a hotfix for 0.74) - Fixed opening file names with non-ASCII characters. Thanks [@randyrants](https://github.com/randyrants)! - Fixed wrong parsing when the file contained an assignment with spaces around the equals sign. Thanks [@randyrants](https://github.com/randyrants)! - Fixed key transversal issues when a key was a substring of a parent key. Thanks [@randyrants](https://github.com/randyrants)! ### Runner - Fixed the update notification toast to show a Unicode arrow. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Settings - Added a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Fixed a typo in the Hosts File Editor page. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a lock icon to the flyout listing of all modules when its enabled state is controlled by policy. - The "All apps" list in the flyout will now list all apps even if their enabled state is controlled by policy. ### Video Conference Mute - Added an option to allow for the toolbar to hide after some time passed. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Added an option to select to mute or unmute at startup. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Fixed an issue causing a cascade of mute/unmute triggers. ### Documentation - Updated the Group Policy documentation on learn.microsoft.com, removed the Group Policy documentation from the repository and linked to the published documentation on learn.microsoft.com instead. ### Development - Added project dependencies to the version project and headers to avoid building errors. Thanks [@johnterickson](https://github.com/johnterickson)! - Enabled Control Flow Guard in the C++ projects. Thanks [@DHowett](https://github.com/DHowett)! - Switched the release pipeline to the 1ES governed template. Thanks [@DHowett](https://github.com/DHowett)! - Styled XAML files and added a XAML Style checker to the solution, with a CI action to check if code being contributed is compliant. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Suppressed redundant midl file warnings in PowerRename. - Add unit tests to FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014), [@andrewbengordon](https://github.com/andrewbengordon) and [@Cwighty](https://github.com/Cwighty)! - Improved the Default Layouts internal structure in FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014)! - Fixed code issues to allow building in Visual Studio 17.8 Preview 4. #### What is being planned for version 0.76 For [v0.76][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Allowing Keyboard Manager to output arbitrary Unicode sequences - Automated UI testing through WinAppDriver - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F50 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.76.0-x64.exe][ptUserX64] | 627F60BF3F04583A2ECE7ACE7E6F09ABDE92493E1FFFAC5705CC83009781CD8D | | Per user - ARM64 | [PowerToysUserSetup-0.76.0-arm64.exe][ptUserArm64] | 79D11CDDBDD87DF8A69A5B2FC28869B3085392E5F45FEE6560D278E48F8B0673 | | Machine wide - x64 | [PowerToysSetup-0.76.0-x64.exe][ptMachineX64] | 4F24A288AC92DD0AB74EF52CFE3D66FA744BDC6889CB4E3ED088763D9134C06D | | Machine wide - ARM64 | [PowerToysSetup-0.76.0-arm64.exe][ptMachineArm64] | 1BD9CD9C696D8898AAEE5A6D6A7122F053202CF1865C511BFC91FCFD0D767864 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.76 - November 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - Upgrade to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Keyboard Manager can now remap keys and shortcuts to send sequences of unicode text. - Modernized the Keyboard Manager Editor UI. Thanks [@dillydylann](https://github.com/dillydylann)! - Modernized the PowerToys Run, Quick Accent and Text Extractor UIs. Thanks [@niels9001](https://github.com/niels9001)! - New File Explorer Add-ons: QOI image Preview Handler and Thumbnail Provider. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### General - Updated the WebView 2 dependency to 1.0.2088.41. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed unreadable color brushes used across WinUI3 applications for improved accessibility. Thanks [@niels9001](https://github.com/niels9001)! - Flyouts used across WinUI3 applications are no longer constrained to the application's bounds. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Upgraded the WPF-UI dependency to preview.9 and then preview.11. Thanks [@niels9001](https://github.com/niels9001) and [@pomianowski](https://github.com/pomianowski)! - Upgraded to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Updated the WinAppSDK dependency to 1.4.3. ### Awake - Added localization to the tray icon context menu. ### Crop And Lock - Fixed restoring windows that were reparented while maximized. ### Environment Variables - Fixed crash caused by WinAppSDK version bump by replacing ListView elements with ItemsControl. ### FancyZones - Reverted a change that caused some applications, like the Windows Calculator, to not snap correctly. (This was a hotfix for 0.75) - FancyZones Editor will no longer apply a layout to the current monitor after editing it. - Fixed and refactored the code that detected if a window can be snapped. Added tests to it with known application window styles to avoid regressions in the future. ### File Explorer add-ons - Solved an issue incorrectly detecting encoding when previewing code files preview. - Fixed the background color for Gcode preview handler on dark theme. Thanks [@pedrolamas](https://github.com/pedrolamas)! - New utilities: Preview Handler and Thumbnail Provider for QOI image files. Thanks [@pedrolamas](https://github.com/pedrolamas)! - GCode Thumbnails are now in the 32 bit ARGB format. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Added the perceived type to SVG and QOI file thumbnails. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### GPO - Added the missing Environment Variables utility policy to the .admx and .adml files. (This was a hotfix for 0.75) - Fixed some typos and text improvements in the .adml file. Thanks [@htcfreek](https://github.com/htcfreek)! ### Hosts File Editor - Added a proper warning when the hosts file is read-only and a button to make it writable. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Image Resizer - Fixed a WPF-UI issue regarding the application's background brushes. Thanks [@niels9001](https://github.com/niels9001)! ### Installer - Included the Text Extractor and Awake localization files in the install process. ### Keyboard Manager - Modernized the UI with the Fluent design. Thanks [@dillydylann](https://github.com/dillydylann)! - Added the feature to remap keys and shortcuts to arbitrary unicode text sequences. ### Mouse Without Borders - Removed Thread.Suspend calls when exiting the utility. That call is deprecated, unneeded and was causing a silent crash. ### Peek - Added the possibility to pause/resume videos with the space bar. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed high CPU usage when idle before initializing the main window. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Implemented Ctrl+W as a shortcut to close Peek. Thanks [@Physalis2](https://github.com/Physalis2)! - Solved an issue incorrectly detecting encoding when previewing code files. - Fixed background issues when peeking into HTML files after the WebView 2 upgrade. ### PowerToys Run - Moved to WPF-UI and redesigned according to Fluent UX principles. Thanks [@niels9001](https://github.com/niels9001)! - Fixed an issue causing 3rd party plugins to not have their custom settings correctly initialized with default values. (This was a hotfix for 0.75) Thanks [@waaverecords](https://github.com/waaverecords)! - Fixed a crash in the VSCode plugin when the VSCode path had trailing backspaces. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed a crash when trying to load invalid image icons. - Fixed a crash in the Programs plugin when getting images for some .lnk files. - Fixed a rare startup initialization error and removed cold start operations that were no longer needed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved calculations for Windows File Time and Unix Epoch Time in the DateTime plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed a crash when trying to get the icon for a link that pointed to no file. - Cleaned up code in the WindowWalker plugin improving the logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Quick Accent - Moved from ModernWPF to WPF-UI. Thanks [@niels9001](https://github.com/niels9001)! - Added support to the Finnish language character set. Thanks [@davidtlascelles](https://github.com/davidtlascelles)! - Added currency symbols for Croatian, Gaeilge, Gàidhlig and Welsh. Thanks [@PesBandi](https://github.com/PesBandi)! - Added a missing Latin letter ꝡ. Thanks [@cubedhuang](https://github.com/cubedhuang)! - Added fraction characters. Thanks [@PesBandi](https://github.com/PesBandi)! - Added support to the Danish language character set. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Kazakhstani Tenge character to the Currencies characters set. Thanks [@PesBandi](https://github.com/PesBandi)! - Renamed Slovakian to Slovak, which is the correct term. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Greek language character set. Thanks [@mcbabo](https://github.com/mcbabo)! ### Settings - When clicking a module's name on the Dashboard, it will navigate to that module's page. - Fixed the clipping of information in the Backup and Restore section of the General Settings page. Thanks [@niels9001](https://github.com/niels9001)! - Updated the File Explorer Add-ons fluent icon. Thanks [@niels9001](https://github.com/niels9001)! - Added a warning when trying to set a shortcut that might conflict with "Alt Gr" key combinations. - Added a direct link to the OOBE's "What's New page" from the main Settings window. Thanks [@iakrayna](https://github.com/iakrayna)! - Changed mentions from Microsoft Docs to Microsoft Learn. - Fixed the slow reaction to system theme changes. ### Text Extractor - Move to WPF-UI, localization and light theme support. Thanks [@niels9001](https://github.com/niels9001)! - Disabled by default on Windows 11, with a information box on Settings to prefer using the Windows Snipping Tool, which now supports OCR. ### Documentation - Fixed some typos in the README. Thanks [@Asymtode712](https://github.com/Asymtode712)! - Reworked the gpo docs on learn.microsoft.com, adding .admx, registry and Intune information. Thanks [@htcfreek](https://github.com/htcfreek)! ### Development - Updated the check-spelling ci action to 0.22. Thanks [@jsoref](https://github.com/jsoref)! - Refactored the modules data model used between the Settings Dashboard and Flyout. - Fixed a flaky interop test that was causing automated CI to hang occasionally. - Increased the WebView 2 loading timeout to reduce flakiness in those tests. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added support for building with the Dev Drive CopyOnWrite feature, increasing build speed. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Addressed the C# static analyzers suggestions. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Addressed the C++ static analyzers suggestions. - PRs that only contain Markdown or text files changes no longer trigger the full CI. Thanks [@snickler](https://github.com/snickler)! - Updated the Microsoft.Windows.CsWinRT to 2.0.4 to fix building with the official Visual Studio 17.8 release. - Fixed new code quality issues caught by the official Visual Studio 17.8 release. - Added a bot trigger to point contributors to the main new contribution issue on GitHub. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Removed unneeded entries from expect.txt. - Turned off a new feature from Visual Studio that was adding the commit hash to the binary files Product Version. - Refactored and reviewed the spellcheck entries into different files. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Added Spectre mitigation and SHA256 hash creation for some DLLs. - Reverted the release pipeline template to a previous release that's stable for shipping PowerToys. #### What is being planned for version 0.77 For [v0.77][github-next-release-work], we'll work on the items below: - New utility: Command Not Found - Language selection - Automated UI testing through WinAppDriver - Develop support for Desired State Configuration - Modernize and refresh the UX of PowerToys based on WPF. Here's the Work in Progress preview for "Color Picker": ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
539b136cd8b8cc8a0776d193eadadea1f977f3fd
0fec6d085c8bf5df8da5ac9bed77eabefc42bdb7
I have reworked the gpo docs on learn.ms.com again on this release and added admx, registry and intune information.
htcfreek
158
microsoft/PowerToys
30,085
0.76 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.76 release. This will be copy / pasted for release notes.
null
2023-11-30 17:08:09+00:00
2023-12-04 17:46:29+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.75.1-x64.exe][ptUserX64] | CFDAE52607689A695F4E4DDD7C1FE68400359AEF0D2B23C86122835E9D32A20F | | Per user - ARM64 | [PowerToysUserSetup-0.75.1-arm64.exe][ptUserArm64] | 9BAD3EF71DEDE70445416AC7369D115FAE095152722BC4F23EE393D8A10F45CA | | Machine wide - x64 | [PowerToysSetup-0.75.1-x64.exe][ptMachineX64] | 18FEB9377B0BA45189FFF4F89627B152DD794CCC15F005592B34A40A3EA62EA8 | | Machine wide - ARM64 | [PowerToysSetup-0.75.1-arm64.exe][ptMachineArm64] | F5CDF5A35876A0B581F446BF728B7AC52B6B701C0850D9CEA9A1874523745CFD | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.75 - October 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - New utility: An environment variables editor with the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Settings has a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Added a previewer to Peek that hosts File Explorer previewers to support every file type that a machine is currently able to preview. For example, this means that if Microsoft Office handlers are installed, Peek can preview Office files. Thanks [@dillydylann](https://github.com/dillydylann)! ### General - Many typo fixes through the projects and documentation. Thanks [@brianteeman](https://github.com/brianteeman)! - Refactored and improved the logic across utilities for bringing a window to the foreground after activation. ### Color Picker - After activating Color Picker, it's now possible to cancel the session by clicking the right mouse button. Thanks [@fredso90](https://github.com/fredso90)! ### Environment Variables - Added a new utility: An environment variables editor that has the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Shows in the title bar if it's running as an administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### FancyZones - Fixed an issue causing context menu pop-ups from some apps to automatically snap to a zone. (This was a hotfix for 0.74) - Applied the fix for the context menu pop-ups to the logic that decides which windows can be snapped. - Reworked the "Keep windows in their zones" option to include the work area and turn it on by default, fixing an incompatibility with the Copilot flyout. - Fixed an issue causing windows to be snapped while moving to a different virtual desktop. ### File Explorer add-ons - Fixed an issue blocking some SVG files from being previewed correctly. (This was a hotfix for 0.74) - Fixed crashes on invalid files in the STL Thumbnail generator. ### GPO - Added a global GPO rule that applies for all utilities unless it's overridden. Thanks [@htcfreek](https://github.com/htcfreek)! - Added GPO rules to control which PowerToys Run plugins should be enabled/disabled by policy. Thanks [@htcfreek](https://github.com/htcfreek)! * All plugins have to provide its plugin ID as static property in its Main method. ### Image Resizer - Fixed wrong .bmp file association in the registry. Thanks [@meitinger](https://github.com/meitinger)! ### Keyboard Manager - Visually distinguish between the Numpad and regular period characters in the UI. - This utility is now disabled by default on new installations, since it requires user configuration to affect keyboard behavior. - Fixed a typo in the Numpad Subtract key in the editor. ### Mouse Highlighter - Removed the lower limit of fade delay and duration, to allow better signaling of doing a double click. Thanks [@fredso90](https://github.com/fredso90)! ### Mouse Jump - The process now runs in the background, for a faster activation time. Thanks [@mikeclayton](https://github.com/mikeclayton)! ### Peek - Reported file sizes will now more closely match what's reported by File Explorer. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a previewer that hosts File Explorer previewers to support every file type that a machine is currently able to preview. Thanks [@dillydylann](https://github.com/dillydylann)! - Fixed an issue causing the preview of the first file to be stuck loading. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed showing the previously previewed video file when invoking Peek with a new file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added the wrap and file formatting options to the Monaco previewer. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### PowerRename - Save data from the last run in a different file to avoid conflicting with changing settings in the Settings application. ### PowerToys Run - Fixed a case where the query wasn't being cleared after invoking a result action through the keyboard. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved the shell selection option for Windows Terminal in the Shell plugin and improved the backend code for adding combo box options to plugins. Thanks [@htcfreek](https://github.com/htcfreek)! * The implementation of the combo box items has changed and isn't backward compatible. (Old plugins won't crash, but the combo box setting isn't shown in settings ui anymore.) - Added Unix time in milliseconds, fixed negative unix time input and improved error messages in the TimeDate plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - The PowerToys plugin allows calling the new Environment Variables utility. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Refactored and added support to VSCodium Stable, VSCodium Insider and Remote Tunnels workspaces. Thanks [@eternalphane](https://github.com/eternalphane)! ### Quick Accent - Fixed characters that were removed from "All languages" because they were not in any single language. (This was a hotfix for 0.74) - Added Asturian characters to the Spanish character set. Thanks [@blakestack](https://github.com/blakestack)! - Added Greek characters with tonos. Thanks [@PesBandi](https://github.com/PesBandi)! ### Registry Preview - Fixed a parsing error that crashed the Application. (This was a hotfix for 0.74) - Fixed opening file names with non-ASCII characters. Thanks [@randyrants](https://github.com/randyrants)! - Fixed wrong parsing when the file contained an assignment with spaces around the equals sign. Thanks [@randyrants](https://github.com/randyrants)! - Fixed key transversal issues when a key was a substring of a parent key. Thanks [@randyrants](https://github.com/randyrants)! ### Runner - Fixed the update notification toast to show a Unicode arrow. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Settings - Added a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Fixed a typo in the Hosts File Editor page. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a lock icon to the flyout listing of all modules when its enabled state is controlled by policy. - The "All apps" list in the flyout will now list all apps even if their enabled state is controlled by policy. ### Video Conference Mute - Added an option to allow for the toolbar to hide after some time passed. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Added an option to select to mute or unmute at startup. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Fixed an issue causing a cascade of mute/unmute triggers. ### Documentation - Updated the Group Policy documentation on learn.microsoft.com, removed the Group Policy documentation from the repository and linked to the published documentation on learn.microsoft.com instead. ### Development - Added project dependencies to the version project and headers to avoid building errors. Thanks [@johnterickson](https://github.com/johnterickson)! - Enabled Control Flow Guard in the C++ projects. Thanks [@DHowett](https://github.com/DHowett)! - Switched the release pipeline to the 1ES governed template. Thanks [@DHowett](https://github.com/DHowett)! - Styled XAML files and added a XAML Style checker to the solution, with a CI action to check if code being contributed is compliant. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Suppressed redundant midl file warnings in PowerRename. - Add unit tests to FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014), [@andrewbengordon](https://github.com/andrewbengordon) and [@Cwighty](https://github.com/Cwighty)! - Improved the Default Layouts internal structure in FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014)! - Fixed code issues to allow building in Visual Studio 17.8 Preview 4. #### What is being planned for version 0.76 For [v0.76][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Allowing Keyboard Manager to output arbitrary Unicode sequences - Automated UI testing through WinAppDriver - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F50 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.76.0-x64.exe][ptUserX64] | 627F60BF3F04583A2ECE7ACE7E6F09ABDE92493E1FFFAC5705CC83009781CD8D | | Per user - ARM64 | [PowerToysUserSetup-0.76.0-arm64.exe][ptUserArm64] | 79D11CDDBDD87DF8A69A5B2FC28869B3085392E5F45FEE6560D278E48F8B0673 | | Machine wide - x64 | [PowerToysSetup-0.76.0-x64.exe][ptMachineX64] | 4F24A288AC92DD0AB74EF52CFE3D66FA744BDC6889CB4E3ED088763D9134C06D | | Machine wide - ARM64 | [PowerToysSetup-0.76.0-arm64.exe][ptMachineArm64] | 1BD9CD9C696D8898AAEE5A6D6A7122F053202CF1865C511BFC91FCFD0D767864 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.76 - November 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - Upgrade to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Keyboard Manager can now remap keys and shortcuts to send sequences of unicode text. - Modernized the Keyboard Manager Editor UI. Thanks [@dillydylann](https://github.com/dillydylann)! - Modernized the PowerToys Run, Quick Accent and Text Extractor UIs. Thanks [@niels9001](https://github.com/niels9001)! - New File Explorer Add-ons: QOI image Preview Handler and Thumbnail Provider. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### General - Updated the WebView 2 dependency to 1.0.2088.41. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed unreadable color brushes used across WinUI3 applications for improved accessibility. Thanks [@niels9001](https://github.com/niels9001)! - Flyouts used across WinUI3 applications are no longer constrained to the application's bounds. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Upgraded the WPF-UI dependency to preview.9 and then preview.11. Thanks [@niels9001](https://github.com/niels9001) and [@pomianowski](https://github.com/pomianowski)! - Upgraded to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Updated the WinAppSDK dependency to 1.4.3. ### Awake - Added localization to the tray icon context menu. ### Crop And Lock - Fixed restoring windows that were reparented while maximized. ### Environment Variables - Fixed crash caused by WinAppSDK version bump by replacing ListView elements with ItemsControl. ### FancyZones - Reverted a change that caused some applications, like the Windows Calculator, to not snap correctly. (This was a hotfix for 0.75) - FancyZones Editor will no longer apply a layout to the current monitor after editing it. - Fixed and refactored the code that detected if a window can be snapped. Added tests to it with known application window styles to avoid regressions in the future. ### File Explorer add-ons - Solved an issue incorrectly detecting encoding when previewing code files preview. - Fixed the background color for Gcode preview handler on dark theme. Thanks [@pedrolamas](https://github.com/pedrolamas)! - New utilities: Preview Handler and Thumbnail Provider for QOI image files. Thanks [@pedrolamas](https://github.com/pedrolamas)! - GCode Thumbnails are now in the 32 bit ARGB format. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Added the perceived type to SVG and QOI file thumbnails. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### GPO - Added the missing Environment Variables utility policy to the .admx and .adml files. (This was a hotfix for 0.75) - Fixed some typos and text improvements in the .adml file. Thanks [@htcfreek](https://github.com/htcfreek)! ### Hosts File Editor - Added a proper warning when the hosts file is read-only and a button to make it writable. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Image Resizer - Fixed a WPF-UI issue regarding the application's background brushes. Thanks [@niels9001](https://github.com/niels9001)! ### Installer - Included the Text Extractor and Awake localization files in the install process. ### Keyboard Manager - Modernized the UI with the Fluent design. Thanks [@dillydylann](https://github.com/dillydylann)! - Added the feature to remap keys and shortcuts to arbitrary unicode text sequences. ### Mouse Without Borders - Removed Thread.Suspend calls when exiting the utility. That call is deprecated, unneeded and was causing a silent crash. ### Peek - Added the possibility to pause/resume videos with the space bar. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed high CPU usage when idle before initializing the main window. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Implemented Ctrl+W as a shortcut to close Peek. Thanks [@Physalis2](https://github.com/Physalis2)! - Solved an issue incorrectly detecting encoding when previewing code files. - Fixed background issues when peeking into HTML files after the WebView 2 upgrade. ### PowerToys Run - Moved to WPF-UI and redesigned according to Fluent UX principles. Thanks [@niels9001](https://github.com/niels9001)! - Fixed an issue causing 3rd party plugins to not have their custom settings correctly initialized with default values. (This was a hotfix for 0.75) Thanks [@waaverecords](https://github.com/waaverecords)! - Fixed a crash in the VSCode plugin when the VSCode path had trailing backspaces. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed a crash when trying to load invalid image icons. - Fixed a crash in the Programs plugin when getting images for some .lnk files. - Fixed a rare startup initialization error and removed cold start operations that were no longer needed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved calculations for Windows File Time and Unix Epoch Time in the DateTime plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed a crash when trying to get the icon for a link that pointed to no file. - Cleaned up code in the WindowWalker plugin improving the logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Quick Accent - Moved from ModernWPF to WPF-UI. Thanks [@niels9001](https://github.com/niels9001)! - Added support to the Finnish language character set. Thanks [@davidtlascelles](https://github.com/davidtlascelles)! - Added currency symbols for Croatian, Gaeilge, Gàidhlig and Welsh. Thanks [@PesBandi](https://github.com/PesBandi)! - Added a missing Latin letter ꝡ. Thanks [@cubedhuang](https://github.com/cubedhuang)! - Added fraction characters. Thanks [@PesBandi](https://github.com/PesBandi)! - Added support to the Danish language character set. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Kazakhstani Tenge character to the Currencies characters set. Thanks [@PesBandi](https://github.com/PesBandi)! - Renamed Slovakian to Slovak, which is the correct term. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Greek language character set. Thanks [@mcbabo](https://github.com/mcbabo)! ### Settings - When clicking a module's name on the Dashboard, it will navigate to that module's page. - Fixed the clipping of information in the Backup and Restore section of the General Settings page. Thanks [@niels9001](https://github.com/niels9001)! - Updated the File Explorer Add-ons fluent icon. Thanks [@niels9001](https://github.com/niels9001)! - Added a warning when trying to set a shortcut that might conflict with "Alt Gr" key combinations. - Added a direct link to the OOBE's "What's New page" from the main Settings window. Thanks [@iakrayna](https://github.com/iakrayna)! - Changed mentions from Microsoft Docs to Microsoft Learn. - Fixed the slow reaction to system theme changes. ### Text Extractor - Move to WPF-UI, localization and light theme support. Thanks [@niels9001](https://github.com/niels9001)! - Disabled by default on Windows 11, with a information box on Settings to prefer using the Windows Snipping Tool, which now supports OCR. ### Documentation - Fixed some typos in the README. Thanks [@Asymtode712](https://github.com/Asymtode712)! - Reworked the gpo docs on learn.microsoft.com, adding .admx, registry and Intune information. Thanks [@htcfreek](https://github.com/htcfreek)! ### Development - Updated the check-spelling ci action to 0.22. Thanks [@jsoref](https://github.com/jsoref)! - Refactored the modules data model used between the Settings Dashboard and Flyout. - Fixed a flaky interop test that was causing automated CI to hang occasionally. - Increased the WebView 2 loading timeout to reduce flakiness in those tests. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added support for building with the Dev Drive CopyOnWrite feature, increasing build speed. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Addressed the C# static analyzers suggestions. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Addressed the C++ static analyzers suggestions. - PRs that only contain Markdown or text files changes no longer trigger the full CI. Thanks [@snickler](https://github.com/snickler)! - Updated the Microsoft.Windows.CsWinRT to 2.0.4 to fix building with the official Visual Studio 17.8 release. - Fixed new code quality issues caught by the official Visual Studio 17.8 release. - Added a bot trigger to point contributors to the main new contribution issue on GitHub. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Removed unneeded entries from expect.txt. - Turned off a new feature from Visual Studio that was adding the commit hash to the binary files Product Version. - Refactored and reviewed the spellcheck entries into different files. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Added Spectre mitigation and SHA256 hash creation for some DLLs. - Reverted the release pipeline template to a previous release that's stable for shipping PowerToys. #### What is being planned for version 0.77 For [v0.77][github-next-release-work], we'll work on the items below: - New utility: Command Not Found - Language selection - Automated UI testing through WinAppDriver - Develop support for Desired State Configuration - Modernize and refresh the UX of PowerToys based on WPF. Here's the Work in Progress preview for "Color Picker": ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
539b136cd8b8cc8a0776d193eadadea1f977f3fd
0fec6d085c8bf5df8da5ac9bed77eabefc42bdb7
Definitely. I've added it. Thanks!
jaimecbernardo
159
microsoft/PowerToys
30,085
0.76 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.76 release. This will be copy / pasted for release notes.
null
2023-11-30 17:08:09+00:00
2023-12-04 17:46:29+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysUserSetup-0.75.1-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.75.1/PowerToysSetup-0.75.1-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.75.1-x64.exe][ptUserX64] | CFDAE52607689A695F4E4DDD7C1FE68400359AEF0D2B23C86122835E9D32A20F | | Per user - ARM64 | [PowerToysUserSetup-0.75.1-arm64.exe][ptUserArm64] | 9BAD3EF71DEDE70445416AC7369D115FAE095152722BC4F23EE393D8A10F45CA | | Machine wide - x64 | [PowerToysSetup-0.75.1-x64.exe][ptMachineX64] | 18FEB9377B0BA45189FFF4F89627B152DD794CCC15F005592B34A40A3EA62EA8 | | Machine wide - ARM64 | [PowerToysSetup-0.75.1-arm64.exe][ptMachineArm64] | F5CDF5A35876A0B581F446BF728B7AC52B6B701C0850D9CEA9A1874523745CFD | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.75 - October 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - New utility: An environment variables editor with the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Settings has a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Added a previewer to Peek that hosts File Explorer previewers to support every file type that a machine is currently able to preview. For example, this means that if Microsoft Office handlers are installed, Peek can preview Office files. Thanks [@dillydylann](https://github.com/dillydylann)! ### General - Many typo fixes through the projects and documentation. Thanks [@brianteeman](https://github.com/brianteeman)! - Refactored and improved the logic across utilities for bringing a window to the foreground after activation. ### Color Picker - After activating Color Picker, it's now possible to cancel the session by clicking the right mouse button. Thanks [@fredso90](https://github.com/fredso90)! ### Environment Variables - Added a new utility: An environment variables editor that has the functionality to configure profiles that can be enabled/disabled. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Shows in the title bar if it's running as an administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### FancyZones - Fixed an issue causing context menu pop-ups from some apps to automatically snap to a zone. (This was a hotfix for 0.74) - Applied the fix for the context menu pop-ups to the logic that decides which windows can be snapped. - Reworked the "Keep windows in their zones" option to include the work area and turn it on by default, fixing an incompatibility with the Copilot flyout. - Fixed an issue causing windows to be snapped while moving to a different virtual desktop. ### File Explorer add-ons - Fixed an issue blocking some SVG files from being previewed correctly. (This was a hotfix for 0.74) - Fixed crashes on invalid files in the STL Thumbnail generator. ### GPO - Added a global GPO rule that applies for all utilities unless it's overridden. Thanks [@htcfreek](https://github.com/htcfreek)! - Added GPO rules to control which PowerToys Run plugins should be enabled/disabled by policy. Thanks [@htcfreek](https://github.com/htcfreek)! * All plugins have to provide its plugin ID as static property in its Main method. ### Image Resizer - Fixed wrong .bmp file association in the registry. Thanks [@meitinger](https://github.com/meitinger)! ### Keyboard Manager - Visually distinguish between the Numpad and regular period characters in the UI. - This utility is now disabled by default on new installations, since it requires user configuration to affect keyboard behavior. - Fixed a typo in the Numpad Subtract key in the editor. ### Mouse Highlighter - Removed the lower limit of fade delay and duration, to allow better signaling of doing a double click. Thanks [@fredso90](https://github.com/fredso90)! ### Mouse Jump - The process now runs in the background, for a faster activation time. Thanks [@mikeclayton](https://github.com/mikeclayton)! ### Peek - Reported file sizes will now more closely match what's reported by File Explorer. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a previewer that hosts File Explorer previewers to support every file type that a machine is currently able to preview. Thanks [@dillydylann](https://github.com/dillydylann)! - Fixed an issue causing the preview of the first file to be stuck loading. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed showing the previously previewed video file when invoking Peek with a new file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added the wrap and file formatting options to the Monaco previewer. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### PowerRename - Save data from the last run in a different file to avoid conflicting with changing settings in the Settings application. ### PowerToys Run - Fixed a case where the query wasn't being cleared after invoking a result action through the keyboard. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved the shell selection option for Windows Terminal in the Shell plugin and improved the backend code for adding combo box options to plugins. Thanks [@htcfreek](https://github.com/htcfreek)! * The implementation of the combo box items has changed and isn't backward compatible. (Old plugins won't crash, but the combo box setting isn't shown in settings ui anymore.) - Added Unix time in milliseconds, fixed negative unix time input and improved error messages in the TimeDate plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - The PowerToys plugin allows calling the new Environment Variables utility. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Refactored and added support to VSCodium Stable, VSCodium Insider and Remote Tunnels workspaces. Thanks [@eternalphane](https://github.com/eternalphane)! ### Quick Accent - Fixed characters that were removed from "All languages" because they were not in any single language. (This was a hotfix for 0.74) - Added Asturian characters to the Spanish character set. Thanks [@blakestack](https://github.com/blakestack)! - Added Greek characters with tonos. Thanks [@PesBandi](https://github.com/PesBandi)! ### Registry Preview - Fixed a parsing error that crashed the Application. (This was a hotfix for 0.74) - Fixed opening file names with non-ASCII characters. Thanks [@randyrants](https://github.com/randyrants)! - Fixed wrong parsing when the file contained an assignment with spaces around the equals sign. Thanks [@randyrants](https://github.com/randyrants)! - Fixed key transversal issues when a key was a substring of a parent key. Thanks [@randyrants](https://github.com/randyrants)! ### Runner - Fixed the update notification toast to show a Unicode arrow. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Settings - Added a new Dashboard home page, with quick access for enabling modules, short descriptions and activation methods. Thanks [@niels9001](https://github.com/niels9001) for the design and UI work that made this possible! - Fixed a typo in the Hosts File Editor page. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Added a lock icon to the flyout listing of all modules when its enabled state is controlled by policy. - The "All apps" list in the flyout will now list all apps even if their enabled state is controlled by policy. ### Video Conference Mute - Added an option to allow for the toolbar to hide after some time passed. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Added an option to select to mute or unmute at startup. Thanks [@quyenvsp](https://github.com/quyenvsp)! - Fixed an issue causing a cascade of mute/unmute triggers. ### Documentation - Updated the Group Policy documentation on learn.microsoft.com, removed the Group Policy documentation from the repository and linked to the published documentation on learn.microsoft.com instead. ### Development - Added project dependencies to the version project and headers to avoid building errors. Thanks [@johnterickson](https://github.com/johnterickson)! - Enabled Control Flow Guard in the C++ projects. Thanks [@DHowett](https://github.com/DHowett)! - Switched the release pipeline to the 1ES governed template. Thanks [@DHowett](https://github.com/DHowett)! - Styled XAML files and added a XAML Style checker to the solution, with a CI action to check if code being contributed is compliant. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Suppressed redundant midl file warnings in PowerRename. - Add unit tests to FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014), [@andrewbengordon](https://github.com/andrewbengordon) and [@Cwighty](https://github.com/Cwighty)! - Improved the Default Layouts internal structure in FancyZones Editor. Thanks [@garv5014](https://github.com/garv5014)! - Fixed code issues to allow building in Visual Studio 17.8 Preview 4. #### What is being planned for version 0.76 For [v0.76][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Allowing Keyboard Manager to output arbitrary Unicode sequences - Automated UI testing through WinAppDriver - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [Environment Variables](https://aka.ms/PowerToysOverview_EnvironmentVariables) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F50 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F49 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysUserSetup-0.76.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.76.0/PowerToysSetup-0.76.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.76.0-x64.exe][ptUserX64] | 627F60BF3F04583A2ECE7ACE7E6F09ABDE92493E1FFFAC5705CC83009781CD8D | | Per user - ARM64 | [PowerToysUserSetup-0.76.0-arm64.exe][ptUserArm64] | 79D11CDDBDD87DF8A69A5B2FC28869B3085392E5F45FEE6560D278E48F8B0673 | | Machine wide - x64 | [PowerToysSetup-0.76.0-x64.exe][ptMachineX64] | 4F24A288AC92DD0AB74EF52CFE3D66FA744BDC6889CB4E3ED088763D9134C06D | | Machine wide - ARM64 | [PowerToysSetup-0.76.0-arm64.exe][ptMachineArm64] | 1BD9CD9C696D8898AAEE5A6D6A7122F053202CF1865C511BFC91FCFD0D767864 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.76 - November 2023 Update In this release, we focused on new features, stability and improvements. **Highlights** - Upgrade to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Keyboard Manager can now remap keys and shortcuts to send sequences of unicode text. - Modernized the Keyboard Manager Editor UI. Thanks [@dillydylann](https://github.com/dillydylann)! - Modernized the PowerToys Run, Quick Accent and Text Extractor UIs. Thanks [@niels9001](https://github.com/niels9001)! - New File Explorer Add-ons: QOI image Preview Handler and Thumbnail Provider. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### General - Updated the WebView 2 dependency to 1.0.2088.41. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed unreadable color brushes used across WinUI3 applications for improved accessibility. Thanks [@niels9001](https://github.com/niels9001)! - Flyouts used across WinUI3 applications are no longer constrained to the application's bounds. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Upgraded the WPF-UI dependency to preview.9 and then preview.11. Thanks [@niels9001](https://github.com/niels9001) and [@pomianowski](https://github.com/pomianowski)! - Upgraded to .NET 8. Thanks [@snickler](https://github.com/snickler)! - Updated the WinAppSDK dependency to 1.4.3. ### Awake - Added localization to the tray icon context menu. ### Crop And Lock - Fixed restoring windows that were reparented while maximized. ### Environment Variables - Fixed crash caused by WinAppSDK version bump by replacing ListView elements with ItemsControl. ### FancyZones - Reverted a change that caused some applications, like the Windows Calculator, to not snap correctly. (This was a hotfix for 0.75) - FancyZones Editor will no longer apply a layout to the current monitor after editing it. - Fixed and refactored the code that detected if a window can be snapped. Added tests to it with known application window styles to avoid regressions in the future. ### File Explorer add-ons - Solved an issue incorrectly detecting encoding when previewing code files preview. - Fixed the background color for Gcode preview handler on dark theme. Thanks [@pedrolamas](https://github.com/pedrolamas)! - New utilities: Preview Handler and Thumbnail Provider for QOI image files. Thanks [@pedrolamas](https://github.com/pedrolamas)! - GCode Thumbnails are now in the 32 bit ARGB format. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Added the perceived type to SVG and QOI file thumbnails. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### GPO - Added the missing Environment Variables utility policy to the .admx and .adml files. (This was a hotfix for 0.75) - Fixed some typos and text improvements in the .adml file. Thanks [@htcfreek](https://github.com/htcfreek)! ### Hosts File Editor - Added a proper warning when the hosts file is read-only and a button to make it writable. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Image Resizer - Fixed a WPF-UI issue regarding the application's background brushes. Thanks [@niels9001](https://github.com/niels9001)! ### Installer - Included the Text Extractor and Awake localization files in the install process. ### Keyboard Manager - Modernized the UI with the Fluent design. Thanks [@dillydylann](https://github.com/dillydylann)! - Added the feature to remap keys and shortcuts to arbitrary unicode text sequences. ### Mouse Without Borders - Removed Thread.Suspend calls when exiting the utility. That call is deprecated, unneeded and was causing a silent crash. ### Peek - Added the possibility to pause/resume videos with the space bar. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed high CPU usage when idle before initializing the main window. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Implemented Ctrl+W as a shortcut to close Peek. Thanks [@Physalis2](https://github.com/Physalis2)! - Solved an issue incorrectly detecting encoding when previewing code files. - Fixed background issues when peeking into HTML files after the WebView 2 upgrade. ### PowerToys Run - Moved to WPF-UI and redesigned according to Fluent UX principles. Thanks [@niels9001](https://github.com/niels9001)! - Fixed an issue causing 3rd party plugins to not have their custom settings correctly initialized with default values. (This was a hotfix for 0.75) Thanks [@waaverecords](https://github.com/waaverecords)! - Fixed a crash in the VSCode plugin when the VSCode path had trailing backspaces. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed a crash when trying to load invalid image icons. - Fixed a crash in the Programs plugin when getting images for some .lnk files. - Fixed a rare startup initialization error and removed cold start operations that were no longer needed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved calculations for Windows File Time and Unix Epoch Time in the DateTime plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed a crash when trying to get the icon for a link that pointed to no file. - Cleaned up code in the WindowWalker plugin improving the logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Quick Accent - Moved from ModernWPF to WPF-UI. Thanks [@niels9001](https://github.com/niels9001)! - Added support to the Finnish language character set. Thanks [@davidtlascelles](https://github.com/davidtlascelles)! - Added currency symbols for Croatian, Gaeilge, Gàidhlig and Welsh. Thanks [@PesBandi](https://github.com/PesBandi)! - Added a missing Latin letter ꝡ. Thanks [@cubedhuang](https://github.com/cubedhuang)! - Added fraction characters. Thanks [@PesBandi](https://github.com/PesBandi)! - Added support to the Danish language character set. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Kazakhstani Tenge character to the Currencies characters set. Thanks [@PesBandi](https://github.com/PesBandi)! - Renamed Slovakian to Slovak, which is the correct term. Thanks [@PesBandi](https://github.com/PesBandi)! - Added the Greek language character set. Thanks [@mcbabo](https://github.com/mcbabo)! ### Settings - When clicking a module's name on the Dashboard, it will navigate to that module's page. - Fixed the clipping of information in the Backup and Restore section of the General Settings page. Thanks [@niels9001](https://github.com/niels9001)! - Updated the File Explorer Add-ons fluent icon. Thanks [@niels9001](https://github.com/niels9001)! - Added a warning when trying to set a shortcut that might conflict with "Alt Gr" key combinations. - Added a direct link to the OOBE's "What's New page" from the main Settings window. Thanks [@iakrayna](https://github.com/iakrayna)! - Changed mentions from Microsoft Docs to Microsoft Learn. - Fixed the slow reaction to system theme changes. ### Text Extractor - Move to WPF-UI, localization and light theme support. Thanks [@niels9001](https://github.com/niels9001)! - Disabled by default on Windows 11, with a information box on Settings to prefer using the Windows Snipping Tool, which now supports OCR. ### Documentation - Fixed some typos in the README. Thanks [@Asymtode712](https://github.com/Asymtode712)! - Reworked the gpo docs on learn.microsoft.com, adding .admx, registry and Intune information. Thanks [@htcfreek](https://github.com/htcfreek)! ### Development - Updated the check-spelling ci action to 0.22. Thanks [@jsoref](https://github.com/jsoref)! - Refactored the modules data model used between the Settings Dashboard and Flyout. - Fixed a flaky interop test that was causing automated CI to hang occasionally. - Increased the WebView 2 loading timeout to reduce flakiness in those tests. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Added support for building with the Dev Drive CopyOnWrite feature, increasing build speed. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Addressed the C# static analyzers suggestions. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Addressed the C++ static analyzers suggestions. - PRs that only contain Markdown or text files changes no longer trigger the full CI. Thanks [@snickler](https://github.com/snickler)! - Updated the Microsoft.Windows.CsWinRT to 2.0.4 to fix building with the official Visual Studio 17.8 release. - Fixed new code quality issues caught by the official Visual Studio 17.8 release. - Added a bot trigger to point contributors to the main new contribution issue on GitHub. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Removed unneeded entries from expect.txt. - Turned off a new feature from Visual Studio that was adding the commit hash to the binary files Product Version. - Refactored and reviewed the spellcheck entries into different files. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Added Spectre mitigation and SHA256 hash creation for some DLLs. - Reverted the release pipeline template to a previous release that's stable for shipping PowerToys. #### What is being planned for version 0.77 For [v0.77][github-next-release-work], we'll work on the items below: - New utility: Command Not Found - Language selection - Automated UI testing through WinAppDriver - Develop support for Desired State Configuration - Modernize and refresh the UX of PowerToys based on WPF. Here's the Work in Progress preview for "Color Picker": ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
539b136cd8b8cc8a0776d193eadadea1f977f3fd
0fec6d085c8bf5df8da5ac9bed77eabefc42bdb7
```suggestion - Cleaned up code in the WindowWalker plugin improving the logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ```
davidegiacometti
160
microsoft/PowerToys
30,039
[KBM]Change UI strings to mention remap to text
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Keyboard Manager will now allow remapping to text as well. This PR tweaks the strings in the UI to mention the remap to text as well. ![image](https://github.com/microsoft/PowerToys/assets/26118718/1ca0ab3e-acce-404b-8884-83e02986905b) ![image](https://github.com/microsoft/PowerToys/assets/26118718/34658139-5137-40a2-acca-5118ef0a4401) ![image](https://github.com/microsoft/PowerToys/assets/26118718/9453b7ea-fd04-4978-9dd7-4d74157adfb5) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Ran Settings and KBM Editor and verified the strings were changed.
null
2023-11-27 11:30:25+00:00
2023-11-27 14:15:17+00:00
src/modules/keyboardmanager/KeyboardManagerEditor/Resources.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Settings_Description" xml:space="preserve"> <value>This feature requires Windows 10 version 1903 or higher</value> <comment>Windows = the OS</comment> </data> <data name="KeyboardManager" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="CreateWindowFailed_ErrorMessage" xml:space="preserve"> <value>Call to CreateWindow failed!</value> </data> <data name="CreateWindowFailed_ErrorTitle" xml:space="preserve"> <value>Error</value> </data> <data name="RegisterClassFailed_ErrorMessage" xml:space="preserve"> <value>Windows registration failed!</value> <comment>This refers to an application window</comment> </data> <data name="RegisterClassFailed_ErrorTitle" xml:space="preserve"> <value>Error</value> </data> <data name="EditKeyboard_WindowName" xml:space="preserve"> <value>Remap keys</value> <comment>keys on a keyboard</comment> </data> <data name="EditShortcuts_WindowName" xml:space="preserve"> <value>Remap shortcuts</value> </data> <data name="Ok_Button" xml:space="preserve"> <value>OK</value> </data> <data name="Cancel_Button" xml:space="preserve"> <value>Cancel</value> </data> <data name="Continue_Button" xml:space="preserve"> <value>Continue anyway</value> </data> <data name="EditKeyboard_SourceHeader" xml:space="preserve"> <value>Select:</value> <comment>verb, alternative to "type a key on a keyboard"</comment> </data> <data name="EditKeyboard_TargetHeader" xml:space="preserve"> <value>To send:</value> </data> <data name="EditShortcuts_TargetHeader" xml:space="preserve"> <value>To send:</value> </data> <data name="EditShortcuts_TargetAppHeader" xml:space="preserve"> <value>Target app:</value> </data> <data name="EditKeyboard_OrphanedDialogTitle" xml:space="preserve"> <value>Warning: The following keys do not have assignments:</value> <comment>Key on a keyboard</comment> </data> <data name="EditKeyboard_PartialConfirmationDialogTitle" xml:space="preserve"> <value>Some of the keys could not be remapped. Do you want to continue anyway?</value> </data> <data name="EditShortcuts_PartialConfirmationDialogTitle" xml:space="preserve"> <value>Some of the shortcuts could not be remapped. Continue anyway?</value> </data> <data name="EditKeyboard_Info" xml:space="preserve"> <value>Select the key you want to change ("Select") and then the key or shortcut you want it to send ("To send").</value> </data> <data name="EditKeyboard_InfoExample" xml:space="preserve"> <value>Example of a remapping: Select A and send "Ctrl+C", "A" would be your "Select" and "Ctrl+C" would be your "To send" command.</value> <comment>Key on a keyboard</comment> </data> <data name="EditShortcuts_Info" xml:space="preserve"> <value>Select the shortcut you want to change ("Select") and then the key or shortcut you want it to invoke ("To send").</value> <comment>Key on a keyboard</comment> </data> <data name="EditShortcuts_InfoExample" xml:space="preserve"> <value>Example of a remapping: Select "Alt+T" and send "Ctrl+T" only on Microsoft Edge. "MSEdge" (exe name) would be your "Target app". Note: if you remapped a key, that will influence the shortcut.</value> <comment>Key on a keyboard</comment> </data> <data name="Type_Button" xml:space="preserve"> <value>Select</value> <comment>verb, alternative to "type a key on a keyboard"</comment> </data> <data name="TypeKey_Title" xml:space="preserve"> <value>Select a key on selected keyboard</value> <comment>Key on a keyboard</comment> </data> <data name="TypeShortcut_Title" xml:space="preserve"> <value>Select the keys in the shortcut</value> <comment>Keys on a keyboard</comment> </data> <data name="TypeKey_Header" xml:space="preserve"> <value>Key selected:</value> <comment>Key on a keyboard</comment> </data> <data name="TypeShortcut_Header" xml:space="preserve"> <value>Keys selected:</value> <comment>Keys on a keyboard</comment> </data> <data name="Type_HoldEnter" xml:space="preserve"> <value>Hold Enter to continue</value> </data> <data name="Type_HoldEsc" xml:space="preserve"> <value>Hold Esc to discard</value> </data> <data name="EditShortcuts_AllApps" xml:space="preserve"> <value>All apps</value> </data> <data name="ErrorMessage_RemapSuccessful" xml:space="preserve"> <value>Remapping successful</value> </data> <data name="ErrorMessage_RemapUnsuccessful" xml:space="preserve"> <value>Some remappings were not applied</value> </data> <data name="ErrorMessage_SameKeyPreviouslyMapped" xml:space="preserve"> <value>Cannot remap a key more than once</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_MappedToSameKey" xml:space="preserve"> <value>Cannot remap a key to itself</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ConflictingModifierKey" xml:space="preserve"> <value>Cannot remap this key as it conflicts with another remapped key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_SameShortcutPreviouslyMapped" xml:space="preserve"> <value>Cannot remap a shortcut more than once for the same target app</value> </data> <data name="ErrorMessage_MapToSameShortcut" xml:space="preserve"> <value>Cannot remap a shortcut to itself</value> </data> <data name="ErrorMessage_ConflictingModifierShortcut" xml:space="preserve"> <value>Cannot remap this shortcut as it conflicts with another remapped shortcut</value> </data> <data name="ErrorMessage_WinL" xml:space="preserve"> <value>Cannot remap from/to Win L</value> <comment>Win refers to the key on a keyboard</comment> </data> <data name="ErrorMessage_CtrlAltDel" xml:space="preserve"> <value>Cannot remap from/to Ctrl Alt Del</value> </data> <data name="ErrorMessage_SaveFailed" xml:space="preserve"> <value>Failed to save the remappings</value> </data> <data name="ErrorMessage_ShortcutStartWithModifier" xml:space="preserve"> <value>Shortcut must start with a modifier key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ShortcutNoRepeatedModifier" xml:space="preserve"> <value>Shortcut cannot contain a repeated modifier</value> </data> <data name="ErrorMessage_ShortcutAtleast2Keys" xml:space="preserve"> <value>Shortcut must have at least 2 keys</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ShortcutOneActionKey" xml:space="preserve"> <value>Shortcut must contain an action key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ShortcutMaxOneActionKey" xml:space="preserve"> <value>Shortcut cannot have more than one action key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_MaxShortcutSize" xml:space="preserve"> <value>Shortcuts can only have up to 4 modifier keys</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_Default" xml:space="preserve"> <value>Unexpected error</value> </data> <data name="Key_DropDown_Combobox" xml:space="preserve"> <value>Key</value> <comment>Key on a keyboard</comment> </data> <data name="Mapping_Type_DropDown_Text" xml:space="preserve"> <value>Text</value> </data> <data name="Mapping_Type_DropDown_Shortcut" xml:space="preserve"> <value>Shortcut</value> </data> <data name="Mapping_Type_DropDown_Key" xml:space="preserve"> <value>Key</value> <comment>Key on a keyboard</comment> </data> <data name="Add_Key_Remap_Button" xml:space="preserve"> <value>Add key remapping</value> <comment>Key on a keyboard</comment> </data> <data name="Add_Shortcut_Button" xml:space="preserve"> <value>Add shortcut remapping</value> </data> <data name="Delete_Remapping_Button" xml:space="preserve"> <value>Delete remapping</value> </data> <data name="Delete_Remapping_Event" xml:space="preserve"> <value>Remapping deleted</value> </data> <data name="AutomationProperties_Row" xml:space="preserve"> <value>Row </value> <comment>Row as in horizontal rows in a table, and columns</comment> </data> <data name="ERRORMESSAGE_DISABLEASACTIONKEY" xml:space="preserve"> <value>Disable can not be an action or a modifier key</value> <comment>Key on a keyboard</comment> </data> <data name="EditShortcuts_SourceHeader" xml:space="preserve"> <value>Select:</value> <comment>key sequence on a keyboard, example: Ctrl+C to copy a string</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Settings_Description" xml:space="preserve"> <value>This feature requires Windows 10 version 1903 or higher</value> <comment>Windows = the OS</comment> </data> <data name="KeyboardManager" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="CreateWindowFailed_ErrorMessage" xml:space="preserve"> <value>Call to CreateWindow failed!</value> </data> <data name="CreateWindowFailed_ErrorTitle" xml:space="preserve"> <value>Error</value> </data> <data name="RegisterClassFailed_ErrorMessage" xml:space="preserve"> <value>Windows registration failed!</value> <comment>This refers to an application window</comment> </data> <data name="RegisterClassFailed_ErrorTitle" xml:space="preserve"> <value>Error</value> </data> <data name="EditKeyboard_WindowName" xml:space="preserve"> <value>Remap keys</value> <comment>keys on a keyboard</comment> </data> <data name="EditShortcuts_WindowName" xml:space="preserve"> <value>Remap shortcuts</value> </data> <data name="Ok_Button" xml:space="preserve"> <value>OK</value> </data> <data name="Cancel_Button" xml:space="preserve"> <value>Cancel</value> </data> <data name="Continue_Button" xml:space="preserve"> <value>Continue anyway</value> </data> <data name="EditKeyboard_SourceHeader" xml:space="preserve"> <value>Select:</value> <comment>verb, alternative to "type a key on a keyboard"</comment> </data> <data name="EditKeyboard_TargetHeader" xml:space="preserve"> <value>To send:</value> </data> <data name="EditShortcuts_TargetHeader" xml:space="preserve"> <value>To send:</value> </data> <data name="EditShortcuts_TargetAppHeader" xml:space="preserve"> <value>Target app:</value> </data> <data name="EditKeyboard_OrphanedDialogTitle" xml:space="preserve"> <value>Warning: The following keys do not have assignments:</value> <comment>Key on a keyboard</comment> </data> <data name="EditKeyboard_PartialConfirmationDialogTitle" xml:space="preserve"> <value>Some of the keys could not be remapped. Do you want to continue anyway?</value> </data> <data name="EditShortcuts_PartialConfirmationDialogTitle" xml:space="preserve"> <value>Some of the shortcuts could not be remapped. Continue anyway?</value> </data> <data name="EditKeyboard_Info" xml:space="preserve"> <value>Select the key you want to change ("Select") and then configure the key, shortcut or text you want it to send ("To send").</value> </data> <data name="EditKeyboard_InfoExample" xml:space="preserve"> <value>Example of a remapping: Select A and send "Ctrl+C", "A" would be your "Select" and "Ctrl+C" would be your "To send" command.</value> <comment>Key on a keyboard</comment> </data> <data name="EditShortcuts_Info" xml:space="preserve"> <value>Select the shortcut you want to change ("Select") and then configure the key, shortcut or text you want it to send ("To send").</value> <comment>Key on a keyboard</comment> </data> <data name="EditShortcuts_InfoExample" xml:space="preserve"> <value>Example of a remapping: Select "Alt+T" and send "Ctrl+T" only on Microsoft Edge. "MSEdge" (exe name) would be your "Target app". Note: if you remapped a key, that will influence the shortcut.</value> <comment>Key on a keyboard</comment> </data> <data name="Type_Button" xml:space="preserve"> <value>Select</value> <comment>verb, alternative to "type a key on a keyboard"</comment> </data> <data name="TypeKey_Title" xml:space="preserve"> <value>Select a key on selected keyboard</value> <comment>Key on a keyboard</comment> </data> <data name="TypeShortcut_Title" xml:space="preserve"> <value>Select the keys in the shortcut</value> <comment>Keys on a keyboard</comment> </data> <data name="TypeKey_Header" xml:space="preserve"> <value>Key selected:</value> <comment>Key on a keyboard</comment> </data> <data name="TypeShortcut_Header" xml:space="preserve"> <value>Keys selected:</value> <comment>Keys on a keyboard</comment> </data> <data name="Type_HoldEnter" xml:space="preserve"> <value>Hold Enter to continue</value> </data> <data name="Type_HoldEsc" xml:space="preserve"> <value>Hold Esc to discard</value> </data> <data name="EditShortcuts_AllApps" xml:space="preserve"> <value>All apps</value> </data> <data name="ErrorMessage_RemapSuccessful" xml:space="preserve"> <value>Remapping successful</value> </data> <data name="ErrorMessage_RemapUnsuccessful" xml:space="preserve"> <value>Some remappings were not applied</value> </data> <data name="ErrorMessage_SameKeyPreviouslyMapped" xml:space="preserve"> <value>Cannot remap a key more than once</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_MappedToSameKey" xml:space="preserve"> <value>Cannot remap a key to itself</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ConflictingModifierKey" xml:space="preserve"> <value>Cannot remap this key as it conflicts with another remapped key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_SameShortcutPreviouslyMapped" xml:space="preserve"> <value>Cannot remap a shortcut more than once for the same target app</value> </data> <data name="ErrorMessage_MapToSameShortcut" xml:space="preserve"> <value>Cannot remap a shortcut to itself</value> </data> <data name="ErrorMessage_ConflictingModifierShortcut" xml:space="preserve"> <value>Cannot remap this shortcut as it conflicts with another remapped shortcut</value> </data> <data name="ErrorMessage_WinL" xml:space="preserve"> <value>Cannot remap from/to Win L</value> <comment>Win refers to the key on a keyboard</comment> </data> <data name="ErrorMessage_CtrlAltDel" xml:space="preserve"> <value>Cannot remap from/to Ctrl Alt Del</value> </data> <data name="ErrorMessage_SaveFailed" xml:space="preserve"> <value>Failed to save the remappings</value> </data> <data name="ErrorMessage_ShortcutStartWithModifier" xml:space="preserve"> <value>Shortcut must start with a modifier key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ShortcutNoRepeatedModifier" xml:space="preserve"> <value>Shortcut cannot contain a repeated modifier</value> </data> <data name="ErrorMessage_ShortcutAtleast2Keys" xml:space="preserve"> <value>Shortcut must have at least 2 keys</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ShortcutOneActionKey" xml:space="preserve"> <value>Shortcut must contain an action key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ShortcutMaxOneActionKey" xml:space="preserve"> <value>Shortcut cannot have more than one action key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_MaxShortcutSize" xml:space="preserve"> <value>Shortcuts can only have up to 4 modifier keys</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_Default" xml:space="preserve"> <value>Unexpected error</value> </data> <data name="Key_DropDown_Combobox" xml:space="preserve"> <value>Key</value> <comment>Key on a keyboard</comment> </data> <data name="Mapping_Type_DropDown_Text" xml:space="preserve"> <value>Text</value> </data> <data name="Mapping_Type_DropDown_Key_Shortcut" xml:space="preserve"> <value>Key/Shortcut</value> <comment>Key on a keyboard</comment> </data> <data name="Add_Key_Remap_Button" xml:space="preserve"> <value>Add key remapping</value> <comment>Key on a keyboard</comment> </data> <data name="Add_Shortcut_Button" xml:space="preserve"> <value>Add shortcut remapping</value> </data> <data name="Delete_Remapping_Button" xml:space="preserve"> <value>Delete remapping</value> </data> <data name="Delete_Remapping_Event" xml:space="preserve"> <value>Remapping deleted</value> </data> <data name="AutomationProperties_Row" xml:space="preserve"> <value>Row </value> <comment>Row as in horizontal rows in a table, and columns</comment> </data> <data name="ERRORMESSAGE_DISABLEASACTIONKEY" xml:space="preserve"> <value>Disable can not be an action or a modifier key</value> <comment>Key on a keyboard</comment> </data> <data name="EditShortcuts_SourceHeader" xml:space="preserve"> <value>Select:</value> <comment>key sequence on a keyboard, example: Ctrl+C to copy a string</comment> </data> </root>
jaimecbernardo
a090558aad7065b2cfb2892922048e74cb5f546d
c6d605ea39c1ce996e052694e2c95c51632b09e5
```suggestion <value>Select the key you want to change ("Select") and then configure the key, shortcut or text you want it to send ("To send").</value> ``` You can't select the target "text". 😅
htcfreek
161
microsoft/PowerToys
30,039
[KBM]Change UI strings to mention remap to text
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Keyboard Manager will now allow remapping to text as well. This PR tweaks the strings in the UI to mention the remap to text as well. ![image](https://github.com/microsoft/PowerToys/assets/26118718/1ca0ab3e-acce-404b-8884-83e02986905b) ![image](https://github.com/microsoft/PowerToys/assets/26118718/34658139-5137-40a2-acca-5118ef0a4401) ![image](https://github.com/microsoft/PowerToys/assets/26118718/9453b7ea-fd04-4978-9dd7-4d74157adfb5) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Ran Settings and KBM Editor and verified the strings were changed.
null
2023-11-27 11:30:25+00:00
2023-11-27 14:15:17+00:00
src/modules/keyboardmanager/KeyboardManagerEditor/Resources.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Settings_Description" xml:space="preserve"> <value>This feature requires Windows 10 version 1903 or higher</value> <comment>Windows = the OS</comment> </data> <data name="KeyboardManager" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="CreateWindowFailed_ErrorMessage" xml:space="preserve"> <value>Call to CreateWindow failed!</value> </data> <data name="CreateWindowFailed_ErrorTitle" xml:space="preserve"> <value>Error</value> </data> <data name="RegisterClassFailed_ErrorMessage" xml:space="preserve"> <value>Windows registration failed!</value> <comment>This refers to an application window</comment> </data> <data name="RegisterClassFailed_ErrorTitle" xml:space="preserve"> <value>Error</value> </data> <data name="EditKeyboard_WindowName" xml:space="preserve"> <value>Remap keys</value> <comment>keys on a keyboard</comment> </data> <data name="EditShortcuts_WindowName" xml:space="preserve"> <value>Remap shortcuts</value> </data> <data name="Ok_Button" xml:space="preserve"> <value>OK</value> </data> <data name="Cancel_Button" xml:space="preserve"> <value>Cancel</value> </data> <data name="Continue_Button" xml:space="preserve"> <value>Continue anyway</value> </data> <data name="EditKeyboard_SourceHeader" xml:space="preserve"> <value>Select:</value> <comment>verb, alternative to "type a key on a keyboard"</comment> </data> <data name="EditKeyboard_TargetHeader" xml:space="preserve"> <value>To send:</value> </data> <data name="EditShortcuts_TargetHeader" xml:space="preserve"> <value>To send:</value> </data> <data name="EditShortcuts_TargetAppHeader" xml:space="preserve"> <value>Target app:</value> </data> <data name="EditKeyboard_OrphanedDialogTitle" xml:space="preserve"> <value>Warning: The following keys do not have assignments:</value> <comment>Key on a keyboard</comment> </data> <data name="EditKeyboard_PartialConfirmationDialogTitle" xml:space="preserve"> <value>Some of the keys could not be remapped. Do you want to continue anyway?</value> </data> <data name="EditShortcuts_PartialConfirmationDialogTitle" xml:space="preserve"> <value>Some of the shortcuts could not be remapped. Continue anyway?</value> </data> <data name="EditKeyboard_Info" xml:space="preserve"> <value>Select the key you want to change ("Select") and then the key or shortcut you want it to send ("To send").</value> </data> <data name="EditKeyboard_InfoExample" xml:space="preserve"> <value>Example of a remapping: Select A and send "Ctrl+C", "A" would be your "Select" and "Ctrl+C" would be your "To send" command.</value> <comment>Key on a keyboard</comment> </data> <data name="EditShortcuts_Info" xml:space="preserve"> <value>Select the shortcut you want to change ("Select") and then the key or shortcut you want it to invoke ("To send").</value> <comment>Key on a keyboard</comment> </data> <data name="EditShortcuts_InfoExample" xml:space="preserve"> <value>Example of a remapping: Select "Alt+T" and send "Ctrl+T" only on Microsoft Edge. "MSEdge" (exe name) would be your "Target app". Note: if you remapped a key, that will influence the shortcut.</value> <comment>Key on a keyboard</comment> </data> <data name="Type_Button" xml:space="preserve"> <value>Select</value> <comment>verb, alternative to "type a key on a keyboard"</comment> </data> <data name="TypeKey_Title" xml:space="preserve"> <value>Select a key on selected keyboard</value> <comment>Key on a keyboard</comment> </data> <data name="TypeShortcut_Title" xml:space="preserve"> <value>Select the keys in the shortcut</value> <comment>Keys on a keyboard</comment> </data> <data name="TypeKey_Header" xml:space="preserve"> <value>Key selected:</value> <comment>Key on a keyboard</comment> </data> <data name="TypeShortcut_Header" xml:space="preserve"> <value>Keys selected:</value> <comment>Keys on a keyboard</comment> </data> <data name="Type_HoldEnter" xml:space="preserve"> <value>Hold Enter to continue</value> </data> <data name="Type_HoldEsc" xml:space="preserve"> <value>Hold Esc to discard</value> </data> <data name="EditShortcuts_AllApps" xml:space="preserve"> <value>All apps</value> </data> <data name="ErrorMessage_RemapSuccessful" xml:space="preserve"> <value>Remapping successful</value> </data> <data name="ErrorMessage_RemapUnsuccessful" xml:space="preserve"> <value>Some remappings were not applied</value> </data> <data name="ErrorMessage_SameKeyPreviouslyMapped" xml:space="preserve"> <value>Cannot remap a key more than once</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_MappedToSameKey" xml:space="preserve"> <value>Cannot remap a key to itself</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ConflictingModifierKey" xml:space="preserve"> <value>Cannot remap this key as it conflicts with another remapped key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_SameShortcutPreviouslyMapped" xml:space="preserve"> <value>Cannot remap a shortcut more than once for the same target app</value> </data> <data name="ErrorMessage_MapToSameShortcut" xml:space="preserve"> <value>Cannot remap a shortcut to itself</value> </data> <data name="ErrorMessage_ConflictingModifierShortcut" xml:space="preserve"> <value>Cannot remap this shortcut as it conflicts with another remapped shortcut</value> </data> <data name="ErrorMessage_WinL" xml:space="preserve"> <value>Cannot remap from/to Win L</value> <comment>Win refers to the key on a keyboard</comment> </data> <data name="ErrorMessage_CtrlAltDel" xml:space="preserve"> <value>Cannot remap from/to Ctrl Alt Del</value> </data> <data name="ErrorMessage_SaveFailed" xml:space="preserve"> <value>Failed to save the remappings</value> </data> <data name="ErrorMessage_ShortcutStartWithModifier" xml:space="preserve"> <value>Shortcut must start with a modifier key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ShortcutNoRepeatedModifier" xml:space="preserve"> <value>Shortcut cannot contain a repeated modifier</value> </data> <data name="ErrorMessage_ShortcutAtleast2Keys" xml:space="preserve"> <value>Shortcut must have at least 2 keys</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ShortcutOneActionKey" xml:space="preserve"> <value>Shortcut must contain an action key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ShortcutMaxOneActionKey" xml:space="preserve"> <value>Shortcut cannot have more than one action key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_MaxShortcutSize" xml:space="preserve"> <value>Shortcuts can only have up to 4 modifier keys</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_Default" xml:space="preserve"> <value>Unexpected error</value> </data> <data name="Key_DropDown_Combobox" xml:space="preserve"> <value>Key</value> <comment>Key on a keyboard</comment> </data> <data name="Mapping_Type_DropDown_Text" xml:space="preserve"> <value>Text</value> </data> <data name="Mapping_Type_DropDown_Shortcut" xml:space="preserve"> <value>Shortcut</value> </data> <data name="Mapping_Type_DropDown_Key" xml:space="preserve"> <value>Key</value> <comment>Key on a keyboard</comment> </data> <data name="Add_Key_Remap_Button" xml:space="preserve"> <value>Add key remapping</value> <comment>Key on a keyboard</comment> </data> <data name="Add_Shortcut_Button" xml:space="preserve"> <value>Add shortcut remapping</value> </data> <data name="Delete_Remapping_Button" xml:space="preserve"> <value>Delete remapping</value> </data> <data name="Delete_Remapping_Event" xml:space="preserve"> <value>Remapping deleted</value> </data> <data name="AutomationProperties_Row" xml:space="preserve"> <value>Row </value> <comment>Row as in horizontal rows in a table, and columns</comment> </data> <data name="ERRORMESSAGE_DISABLEASACTIONKEY" xml:space="preserve"> <value>Disable can not be an action or a modifier key</value> <comment>Key on a keyboard</comment> </data> <data name="EditShortcuts_SourceHeader" xml:space="preserve"> <value>Select:</value> <comment>key sequence on a keyboard, example: Ctrl+C to copy a string</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Settings_Description" xml:space="preserve"> <value>This feature requires Windows 10 version 1903 or higher</value> <comment>Windows = the OS</comment> </data> <data name="KeyboardManager" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="CreateWindowFailed_ErrorMessage" xml:space="preserve"> <value>Call to CreateWindow failed!</value> </data> <data name="CreateWindowFailed_ErrorTitle" xml:space="preserve"> <value>Error</value> </data> <data name="RegisterClassFailed_ErrorMessage" xml:space="preserve"> <value>Windows registration failed!</value> <comment>This refers to an application window</comment> </data> <data name="RegisterClassFailed_ErrorTitle" xml:space="preserve"> <value>Error</value> </data> <data name="EditKeyboard_WindowName" xml:space="preserve"> <value>Remap keys</value> <comment>keys on a keyboard</comment> </data> <data name="EditShortcuts_WindowName" xml:space="preserve"> <value>Remap shortcuts</value> </data> <data name="Ok_Button" xml:space="preserve"> <value>OK</value> </data> <data name="Cancel_Button" xml:space="preserve"> <value>Cancel</value> </data> <data name="Continue_Button" xml:space="preserve"> <value>Continue anyway</value> </data> <data name="EditKeyboard_SourceHeader" xml:space="preserve"> <value>Select:</value> <comment>verb, alternative to "type a key on a keyboard"</comment> </data> <data name="EditKeyboard_TargetHeader" xml:space="preserve"> <value>To send:</value> </data> <data name="EditShortcuts_TargetHeader" xml:space="preserve"> <value>To send:</value> </data> <data name="EditShortcuts_TargetAppHeader" xml:space="preserve"> <value>Target app:</value> </data> <data name="EditKeyboard_OrphanedDialogTitle" xml:space="preserve"> <value>Warning: The following keys do not have assignments:</value> <comment>Key on a keyboard</comment> </data> <data name="EditKeyboard_PartialConfirmationDialogTitle" xml:space="preserve"> <value>Some of the keys could not be remapped. Do you want to continue anyway?</value> </data> <data name="EditShortcuts_PartialConfirmationDialogTitle" xml:space="preserve"> <value>Some of the shortcuts could not be remapped. Continue anyway?</value> </data> <data name="EditKeyboard_Info" xml:space="preserve"> <value>Select the key you want to change ("Select") and then configure the key, shortcut or text you want it to send ("To send").</value> </data> <data name="EditKeyboard_InfoExample" xml:space="preserve"> <value>Example of a remapping: Select A and send "Ctrl+C", "A" would be your "Select" and "Ctrl+C" would be your "To send" command.</value> <comment>Key on a keyboard</comment> </data> <data name="EditShortcuts_Info" xml:space="preserve"> <value>Select the shortcut you want to change ("Select") and then configure the key, shortcut or text you want it to send ("To send").</value> <comment>Key on a keyboard</comment> </data> <data name="EditShortcuts_InfoExample" xml:space="preserve"> <value>Example of a remapping: Select "Alt+T" and send "Ctrl+T" only on Microsoft Edge. "MSEdge" (exe name) would be your "Target app". Note: if you remapped a key, that will influence the shortcut.</value> <comment>Key on a keyboard</comment> </data> <data name="Type_Button" xml:space="preserve"> <value>Select</value> <comment>verb, alternative to "type a key on a keyboard"</comment> </data> <data name="TypeKey_Title" xml:space="preserve"> <value>Select a key on selected keyboard</value> <comment>Key on a keyboard</comment> </data> <data name="TypeShortcut_Title" xml:space="preserve"> <value>Select the keys in the shortcut</value> <comment>Keys on a keyboard</comment> </data> <data name="TypeKey_Header" xml:space="preserve"> <value>Key selected:</value> <comment>Key on a keyboard</comment> </data> <data name="TypeShortcut_Header" xml:space="preserve"> <value>Keys selected:</value> <comment>Keys on a keyboard</comment> </data> <data name="Type_HoldEnter" xml:space="preserve"> <value>Hold Enter to continue</value> </data> <data name="Type_HoldEsc" xml:space="preserve"> <value>Hold Esc to discard</value> </data> <data name="EditShortcuts_AllApps" xml:space="preserve"> <value>All apps</value> </data> <data name="ErrorMessage_RemapSuccessful" xml:space="preserve"> <value>Remapping successful</value> </data> <data name="ErrorMessage_RemapUnsuccessful" xml:space="preserve"> <value>Some remappings were not applied</value> </data> <data name="ErrorMessage_SameKeyPreviouslyMapped" xml:space="preserve"> <value>Cannot remap a key more than once</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_MappedToSameKey" xml:space="preserve"> <value>Cannot remap a key to itself</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ConflictingModifierKey" xml:space="preserve"> <value>Cannot remap this key as it conflicts with another remapped key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_SameShortcutPreviouslyMapped" xml:space="preserve"> <value>Cannot remap a shortcut more than once for the same target app</value> </data> <data name="ErrorMessage_MapToSameShortcut" xml:space="preserve"> <value>Cannot remap a shortcut to itself</value> </data> <data name="ErrorMessage_ConflictingModifierShortcut" xml:space="preserve"> <value>Cannot remap this shortcut as it conflicts with another remapped shortcut</value> </data> <data name="ErrorMessage_WinL" xml:space="preserve"> <value>Cannot remap from/to Win L</value> <comment>Win refers to the key on a keyboard</comment> </data> <data name="ErrorMessage_CtrlAltDel" xml:space="preserve"> <value>Cannot remap from/to Ctrl Alt Del</value> </data> <data name="ErrorMessage_SaveFailed" xml:space="preserve"> <value>Failed to save the remappings</value> </data> <data name="ErrorMessage_ShortcutStartWithModifier" xml:space="preserve"> <value>Shortcut must start with a modifier key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ShortcutNoRepeatedModifier" xml:space="preserve"> <value>Shortcut cannot contain a repeated modifier</value> </data> <data name="ErrorMessage_ShortcutAtleast2Keys" xml:space="preserve"> <value>Shortcut must have at least 2 keys</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ShortcutOneActionKey" xml:space="preserve"> <value>Shortcut must contain an action key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_ShortcutMaxOneActionKey" xml:space="preserve"> <value>Shortcut cannot have more than one action key</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_MaxShortcutSize" xml:space="preserve"> <value>Shortcuts can only have up to 4 modifier keys</value> <comment>Key on a keyboard</comment> </data> <data name="ErrorMessage_Default" xml:space="preserve"> <value>Unexpected error</value> </data> <data name="Key_DropDown_Combobox" xml:space="preserve"> <value>Key</value> <comment>Key on a keyboard</comment> </data> <data name="Mapping_Type_DropDown_Text" xml:space="preserve"> <value>Text</value> </data> <data name="Mapping_Type_DropDown_Key_Shortcut" xml:space="preserve"> <value>Key/Shortcut</value> <comment>Key on a keyboard</comment> </data> <data name="Add_Key_Remap_Button" xml:space="preserve"> <value>Add key remapping</value> <comment>Key on a keyboard</comment> </data> <data name="Add_Shortcut_Button" xml:space="preserve"> <value>Add shortcut remapping</value> </data> <data name="Delete_Remapping_Button" xml:space="preserve"> <value>Delete remapping</value> </data> <data name="Delete_Remapping_Event" xml:space="preserve"> <value>Remapping deleted</value> </data> <data name="AutomationProperties_Row" xml:space="preserve"> <value>Row </value> <comment>Row as in horizontal rows in a table, and columns</comment> </data> <data name="ERRORMESSAGE_DISABLEASACTIONKEY" xml:space="preserve"> <value>Disable can not be an action or a modifier key</value> <comment>Key on a keyboard</comment> </data> <data name="EditShortcuts_SourceHeader" xml:space="preserve"> <value>Select:</value> <comment>key sequence on a keyboard, example: Ctrl+C to copy a string</comment> </data> </root>
jaimecbernardo
a090558aad7065b2cfb2892922048e74cb5f546d
c6d605ea39c1ce996e052694e2c95c51632b09e5
```suggestion <value>Select the shortcut you want to change ("Select") and then configure the key, shortcut or text you want it to send ("To send").</value> ``` You can't select the "text". 😅 Why her `to invoke` and for above `to send`. `to send` sounds better because you can't invoke text.
htcfreek
162
microsoft/PowerToys
29,973
SDL and SHA tweaks for dll creation
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Making the SDL and sha checks to be Globals. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #29957 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-22 16:59:45+00:00
2023-11-22 17:52:33+00:00
Cpp.Build.props
<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- Project configurations --> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|x64"> <Configuration>Debug</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|x64"> <Configuration>Release</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Debug|ARM64"> <Configuration>Debug</Configuration> <Platform>ARM64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|ARM64"> <Configuration>Release</Configuration> <Platform>ARM64</Platform> </ProjectConfiguration> </ItemGroup> <!-- Props that should be disabled while building on CI server --> <ItemDefinitionGroup Condition="'$(CIBuild)'!='true'"> <ClCompile> <MultiProcessorCompilation>true</MultiProcessorCompilation> <PrecompiledHeader>Use</PrecompiledHeader> </ClCompile> </ItemDefinitionGroup> <!-- Run code analysis locally and in PR CI, but not on release CI --> <PropertyGroup Condition="'$(SkipCppCodeAnalysis)' == ''"> <RunCodeAnalysis>true</RunCodeAnalysis> <CodeAnalysisRuleSet>$(MsbuildThisFileDirectory)\CppRuleSet.ruleset</CodeAnalysisRuleSet> </PropertyGroup> <!-- C++ source compile-specific things for all configurations --> <PropertyGroup> <PreferredToolArchitecture>x64</PreferredToolArchitecture> <PreferredToolArchitecture Condition="'$(PROCESSOR_ARCHITECTURE)' == 'ARM64' or '$(PROCESSOR_ARCHITEW6432)' == 'ARM64'">arm64</PreferredToolArchitecture> <VcpkgEnabled>false</VcpkgEnabled> <ExternalIncludePath>$(MSBuildThisFileFullPath)\..\deps\;$(MSBuildThisFileFullPath)\..\packages\;$(ExternalIncludePath)</ExternalIncludePath> <!-- Enable control flow guard for C++ projects that don't consume any C++ files --> <!-- This covers the case where a .dll exports a .lib, but doesn't have any ClCompile entries. --> <LinkControlFlowGuard>Guard</LinkControlFlowGuard> </PropertyGroup> <ItemDefinitionGroup> <ClCompile> <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> <WarningLevel>Level4</WarningLevel> <DisableSpecificWarnings>4679;5271;%(DisableSpecificWarnings)</DisableSpecificWarnings> <DisableAnalyzeExternal >true</DisableAnalyzeExternal> <ExternalWarningLevel>TurnOffAllWarnings</ExternalWarningLevel> <ConformanceMode>false</ConformanceMode> <TreatWarningAsError>true</TreatWarningAsError> <LanguageStandard>stdcpplatest</LanguageStandard> <BuildStlModules>false</BuildStlModules> <AdditionalOptions>/await %(AdditionalOptions)</AdditionalOptions> <!-- TODO: _SILENCE_STDEXT_ARR_ITERS_DEPRECATION_WARNING for compatibility with VS 17.8. Check if we can remove. --> <PreprocessorDefinitions>_SILENCE_STDEXT_ARR_ITERS_DEPRECATION_WARNING;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions> <!-- CLR + CFG are not compatible >:{ --> <ControlFlowGuard Condition="'$(CLRSupport)' == ''">Guard</ControlFlowGuard> <DebugInformationFormat Condition="'%(ControlFlowGuard)' == 'Guard'">ProgramDatabase</DebugInformationFormat> </ClCompile> <Link> <SubSystem>Windows</SubSystem> </Link> <Lib> <TreatLibWarningAsErrors>true</TreatLibWarningAsErrors> </Lib> </ItemDefinitionGroup> <!-- C++ source compile-specific things for Debug/Release configurations --> <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'"> <ClCompile> <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> <Optimization>Disabled</Optimization> <SDLCheck>true</SDLCheck> <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'"> <ClCompile> <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> <Optimization>MaxSpeed</Optimization> <SDLCheck>false</SDLCheck> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> <FunctionLevelLinking>true</FunctionLevelLinking> <IntrinsicFunctions>true</IntrinsicFunctions> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> <EnableCOMDATFolding>true</EnableCOMDATFolding> <OptimizeReferences>true</OptimizeReferences> </Link> </ItemDefinitionGroup> <!-- Global props --> <PropertyGroup Label="Globals" Condition="'$(OverrideWindowsTargetPlatformVersion)'!='True'"> <WindowsTargetPlatformVersion>10.0.20348.0</WindowsTargetPlatformVersion> <TargetPlatformVersion>10.0.20348.0</TargetPlatformVersion> <WindowsTargetPlatformMinVersion>10.0.19041.0</WindowsTargetPlatformMinVersion> </PropertyGroup> <!-- Props that are constant for both Debug and Release configurations --> <PropertyGroup Label="Configuration"> <PlatformToolset Condition="'$(OverridePlatformToolset)'!='True'">v143</PlatformToolset> <CharacterSet>Unicode</CharacterSet> <DesktopCompatible>true</DesktopCompatible> </PropertyGroup> <!-- Debug/Release props --> <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration"> <UseDebugLibraries>true</UseDebugLibraries> <LinkIncremental>true</LinkIncremental> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration"> <UseDebugLibraries>false</UseDebugLibraries> <WholeProgramOptimization>true</WholeProgramOptimization> <LinkIncremental>false</LinkIncremental> </PropertyGroup> </Project>
<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- Project configurations --> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|x64"> <Configuration>Debug</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|x64"> <Configuration>Release</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Debug|ARM64"> <Configuration>Debug</Configuration> <Platform>ARM64</Platform> </ProjectConfiguration> <ProjectConfiguration Include="Release|ARM64"> <Configuration>Release</Configuration> <Platform>ARM64</Platform> </ProjectConfiguration> </ItemGroup> <!-- Props that should be disabled while building on CI server --> <ItemDefinitionGroup Condition="'$(CIBuild)'!='true'"> <ClCompile> <MultiProcessorCompilation>true</MultiProcessorCompilation> <PrecompiledHeader>Use</PrecompiledHeader> </ClCompile> </ItemDefinitionGroup> <!-- Run code analysis locally and in PR CI, but not on release CI --> <PropertyGroup Condition="'$(SkipCppCodeAnalysis)' == ''"> <RunCodeAnalysis>true</RunCodeAnalysis> <CodeAnalysisRuleSet>$(MsbuildThisFileDirectory)\CppRuleSet.ruleset</CodeAnalysisRuleSet> </PropertyGroup> <!-- C++ source compile-specific things for all configurations --> <PropertyGroup> <PreferredToolArchitecture>x64</PreferredToolArchitecture> <PreferredToolArchitecture Condition="'$(PROCESSOR_ARCHITECTURE)' == 'ARM64' or '$(PROCESSOR_ARCHITEW6432)' == 'ARM64'">arm64</PreferredToolArchitecture> <VcpkgEnabled>false</VcpkgEnabled> <ExternalIncludePath>$(MSBuildThisFileFullPath)\..\deps\;$(MSBuildThisFileFullPath)\..\packages\;$(ExternalIncludePath)</ExternalIncludePath> <!-- Enable control flow guard for C++ projects that don't consume any C++ files --> <!-- This covers the case where a .dll exports a .lib, but doesn't have any ClCompile entries. --> <LinkControlFlowGuard>Guard</LinkControlFlowGuard> </PropertyGroup> <ItemDefinitionGroup> <ClCompile> <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> <WarningLevel>Level4</WarningLevel> <DisableSpecificWarnings>4679;5271;%(DisableSpecificWarnings)</DisableSpecificWarnings> <DisableAnalyzeExternal >true</DisableAnalyzeExternal> <ExternalWarningLevel>TurnOffAllWarnings</ExternalWarningLevel> <ConformanceMode>false</ConformanceMode> <TreatWarningAsError>true</TreatWarningAsError> <LanguageStandard>stdcpplatest</LanguageStandard> <BuildStlModules>false</BuildStlModules> <AdditionalOptions>/await %(AdditionalOptions)</AdditionalOptions> <!-- TODO: _SILENCE_STDEXT_ARR_ITERS_DEPRECATION_WARNING for compatibility with VS 17.8. Check if we can remove. --> <PreprocessorDefinitions>_SILENCE_STDEXT_ARR_ITERS_DEPRECATION_WARNING;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions> <!-- CLR + CFG are not compatible >:{ --> <ControlFlowGuard Condition="'$(CLRSupport)' == ''">Guard</ControlFlowGuard> <DebugInformationFormat Condition="'%(ControlFlowGuard)' == 'Guard'">ProgramDatabase</DebugInformationFormat> <SDLCheck>true</SDLCheck> </ClCompile> <Link> <SubSystem>Windows</SubSystem> </Link> <Lib> <TreatLibWarningAsErrors>true</TreatLibWarningAsErrors> </Lib> </ItemDefinitionGroup> <!-- C++ source compile-specific things for Debug/Release configurations --> <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'"> <ClCompile> <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> <Optimization>Disabled</Optimization> <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> </Link> </ItemDefinitionGroup> <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'"> <ClCompile> <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> <Optimization>MaxSpeed</Optimization> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> <FunctionLevelLinking>true</FunctionLevelLinking> <IntrinsicFunctions>true</IntrinsicFunctions> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> <EnableCOMDATFolding>true</EnableCOMDATFolding> <OptimizeReferences>true</OptimizeReferences> </Link> </ItemDefinitionGroup> <!-- Global props --> <PropertyGroup Label="Globals" Condition="'$(OverrideWindowsTargetPlatformVersion)'!='True'"> <WindowsTargetPlatformVersion>10.0.20348.0</WindowsTargetPlatformVersion> <TargetPlatformVersion>10.0.20348.0</TargetPlatformVersion> <WindowsTargetPlatformMinVersion>10.0.19041.0</WindowsTargetPlatformMinVersion> </PropertyGroup> <!-- Props that are constant for both Debug and Release configurations --> <PropertyGroup Label="Configuration"> <PlatformToolset Condition="'$(OverridePlatformToolset)'!='True'">v143</PlatformToolset> <CharacterSet>Unicode</CharacterSet> <DesktopCompatible>true</DesktopCompatible> <SpectreMitigation>Spectre</SpectreMitigation> </PropertyGroup> <!-- Debug/Release props --> <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration"> <UseDebugLibraries>true</UseDebugLibraries> <LinkIncremental>true</LinkIncremental> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration"> <UseDebugLibraries>false</UseDebugLibraries> <WholeProgramOptimization>true</WholeProgramOptimization> <LinkIncremental>false</LinkIncremental> </PropertyGroup> </Project>
crutkas
b2b2856e5292767214239c2fb0517a9083129ac2
3cc7c4da0b2468230849fec2054669d8628fa0c9
```suggestion <SpectreMitigation>Spectre</SpectreMitigation> ```
jaimecbernardo
163
microsoft/PowerToys
29,895
implemented ctrl + w to close peek.
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request implemented ctrl + w to close peek. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29867 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Implemented CrtlWInvoked() with the method Uninitialize() in it. liked to the Ctrl + W shortcut <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed crtl + w should close peek.
null
2023-11-17 00:49:21+00:00
2023-11-19 15:36:13+00:00
src/modules/peek/Peek.UI/PeekXAML/MainWindow.xaml
<!-- Copyright (c) Microsoft Corporation and Contributors. --> <!-- Licensed under the MIT License. --> <winuiex:WindowEx x:Class="Peek.UI.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:fp="using:Peek.FilePreviewer" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:views="using:Peek.UI.Views" xmlns:winuiex="using:WinUIEx" MinWidth="450" MinHeight="400" mc:Ignorable="d"> <Window.SystemBackdrop> <MicaBackdrop /> </Window.SystemBackdrop> <Grid KeyboardAcceleratorPlacementMode="Hidden"> <Grid.KeyboardAccelerators> <KeyboardAccelerator Key="Left" Invoked="PreviousNavigationInvoked" /> <KeyboardAccelerator Key="Up" Invoked="PreviousNavigationInvoked" /> <KeyboardAccelerator Key="Right" Invoked="NextNavigationInvoked" /> <KeyboardAccelerator Key="Down" Invoked="NextNavigationInvoked" /> <KeyboardAccelerator Key="Escape" Invoked="EscKeyInvoked" /> </Grid.KeyboardAccelerators> <Grid.RowDefinitions> <RowDefinition Height="48" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <views:TitleBar x:Name="TitleBarControl" Grid.Row="0" FileIndex="{x:Bind ViewModel.CurrentIndex, Mode=OneWay}" IsMultiSelection="{x:Bind ViewModel.NeighboringItemsQuery.IsMultipleFilesActivation, Mode=OneWay}" Item="{x:Bind ViewModel.CurrentItem, Mode=OneWay}" NumberOfFiles="{x:Bind ViewModel.Items.Count, Mode=OneWay}" /> <fp:FilePreview Grid.Row="1" Item="{x:Bind ViewModel.CurrentItem, Mode=OneWay}" PreviewSizeChanged="FilePreviewer_PreviewSizeChanged" ScalingFactor="{x:Bind ViewModel.ScalingFactor, Mode=OneWay}" /> </Grid> </winuiex:WindowEx>
<!-- Copyright (c) Microsoft Corporation and Contributors. --> <!-- Licensed under the MIT License. --> <winuiex:WindowEx x:Class="Peek.UI.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:fp="using:Peek.FilePreviewer" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:views="using:Peek.UI.Views" xmlns:winuiex="using:WinUIEx" MinWidth="450" MinHeight="400" mc:Ignorable="d"> <Window.SystemBackdrop> <MicaBackdrop /> </Window.SystemBackdrop> <Grid KeyboardAcceleratorPlacementMode="Hidden"> <Grid.KeyboardAccelerators> <KeyboardAccelerator Key="Left" Invoked="PreviousNavigationInvoked" /> <KeyboardAccelerator Key="Up" Invoked="PreviousNavigationInvoked" /> <KeyboardAccelerator Key="Right" Invoked="NextNavigationInvoked" /> <KeyboardAccelerator Key="Down" Invoked="NextNavigationInvoked" /> <KeyboardAccelerator Key="Escape" Invoked="CloseInvoked" /> <KeyboardAccelerator Key="W" Invoked="CloseInvoked" Modifiers="Control" /> </Grid.KeyboardAccelerators> <Grid.RowDefinitions> <RowDefinition Height="48" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <views:TitleBar x:Name="TitleBarControl" Grid.Row="0" FileIndex="{x:Bind ViewModel.CurrentIndex, Mode=OneWay}" IsMultiSelection="{x:Bind ViewModel.NeighboringItemsQuery.IsMultipleFilesActivation, Mode=OneWay}" Item="{x:Bind ViewModel.CurrentItem, Mode=OneWay}" NumberOfFiles="{x:Bind ViewModel.Items.Count, Mode=OneWay}" /> <fp:FilePreview Grid.Row="1" Item="{x:Bind ViewModel.CurrentItem, Mode=OneWay}" PreviewSizeChanged="FilePreviewer_PreviewSizeChanged" ScalingFactor="{x:Bind ViewModel.ScalingFactor, Mode=OneWay}" /> </Grid> </winuiex:WindowEx>
Physalis2
7d9681ecd2533e63a13ac3a88257e698b9c7b5a9
67b18d0e987cf0be9dec6d2bb260c066036e4b2d
I’d rename the esc invoke to close invoked and have the two call the same method
crutkas
164
microsoft/PowerToys
29,890
[Run] Addressed some disposable + VirtualDesktopHelper cleanup
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request `VirtualDesktopHelper` class is heavy used by WindowWalker plugin at every query. I have noticed that some `RegistryKey` weren't properly disposed. I have also cached Terminal Session ID and Windows version since they stay the same during PT execution. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** https://github.com/microsoft/PowerToys/issues/29891 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested PT Run and verified that virtual desktop names are properly displayed on WindowWalker results.
null
2023-11-16 20:56:22+00:00
2023-11-23 16:16:12+00:00
src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VirtualDesktopHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Diagnostics; using System.Runtime.InteropServices; using Microsoft.Win32; using Wox.Plugin.Common.VirtualDesktop.Interop; using Wox.Plugin.Common.Win32; using Wox.Plugin.Logger; using Wox.Plugin.Properties; namespace Wox.Plugin.Common.VirtualDesktop.Helper { /// <summary> /// Helper class to work with Virtual Desktops. /// This helper uses only public available and documented COM-Interfaces or information from registry. /// </summary> /// <remarks> /// To use this helper you have to create an instance of it and access the method via the helper instance. /// We are only allowed to use public documented com interfaces. /// </remarks> /// <SeeAlso href="https://learn.microsoft.com/windows/win32/api/shobjidl_core/nn-shobjidl_core-ivirtualdesktopmanager">Documentation of IVirtualDesktopManager interface</SeeAlso> /// <SeeAlso href="https://learn.microsoft.com/archive/blogs/winsdk/virtual-desktop-switching-in-windows-10">CSharp example code for IVirtualDesktopManager</SeeAlso> public class VirtualDesktopHelper { /// <summary> /// Are we running on Windows 11 /// </summary> private static readonly bool _IsWindowsEleven = IsWindowsElevenOrLater(); /// <summary> /// Instance of "Virtual Desktop Manager" /// </summary> private readonly IVirtualDesktopManager _virtualDesktopManager; /// <summary> /// Internal settings to enable automatic update of desktop list. /// This will be off by default to avoid to many registry queries. /// </summary> private readonly bool _desktopListAutoUpdate; /// <summary> /// List of all available Virtual Desktop in their real order /// The order and list in the registry is always up to date /// </summary> private List<Guid> availableDesktops = new List<Guid>(); /// <summary> /// Id of the current visible Desktop. /// </summary> private Guid currentDesktop; /// <summary> /// Initializes a new instance of the <see cref="VirtualDesktopHelper"/> class. /// </summary> /// <param name="desktopListUpdate">Setting to configure if the list of available desktops should update automatically or only when calling <see cref="UpdateDesktopList"/>. Per default this is set to manual update (false) to have less registry queries.</param> public VirtualDesktopHelper(bool desktopListUpdate = false) { try { _virtualDesktopManager = (IVirtualDesktopManager)new CVirtualDesktopManager(); } catch (COMException ex) { Log.Exception("Initialization of <VirtualDesktopHelper> failed: An exception was thrown when creating the instance of COM interface <IVirtualDesktopManager>.", ex, typeof(VirtualDesktopHelper)); return; } _desktopListAutoUpdate = desktopListUpdate; UpdateDesktopList(); } /// <summary> /// Gets a value indicating whether the Virtual Desktop Manager is initialized successfully /// </summary> public bool VirtualDesktopManagerInitialized { get { return _virtualDesktopManager != null; } } /// <summary> /// Method to update the list of Virtual Desktops from Registry /// The data in the registry are always up to date /// </summary> /// <remarks>If we can not read from registry, we set the list/guid to empty values.</remarks> public void UpdateDesktopList() { // Registry paths int userSessionId = Process.GetCurrentProcess().SessionId; string registrySessionVirtualDesktops = $"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\{userSessionId}\\VirtualDesktops"; string registryExplorerVirtualDesktops = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VirtualDesktops"; // List of all desktops byte[] allDeskValue = (byte[])Registry.CurrentUser.OpenSubKey(registryExplorerVirtualDesktops, false)?.GetValue("VirtualDesktopIDs", null); if (allDeskValue != null) { // We clear only, if we can read from registry. Otherwise we keep the existing values. availableDesktops.Clear(); // Each guid has a length of 16 elements int numberOfDesktops = allDeskValue.Length / 16; for (int i = 0; i < numberOfDesktops; i++) { byte[] guidArray = new byte[16]; Array.ConstrainedCopy(allDeskValue, i * 16, guidArray, 0, 16); availableDesktops.Add(new Guid(guidArray)); } } else { Log.Debug("VirtualDesktopHelper.UpdateDesktopList() failed to read the list of existing desktops form registry.", typeof(VirtualDesktopHelper)); } // Guid for current desktop var currentDeskSessionValue = Registry.CurrentUser.OpenSubKey(registrySessionVirtualDesktops, false)?.GetValue("CurrentVirtualDesktop", null); // Windows 10 var currentDeskExplorerValue = Registry.CurrentUser.OpenSubKey(registryExplorerVirtualDesktops, false)?.GetValue("CurrentVirtualDesktop", null); // Windows 11 var currentDeskValue = _IsWindowsEleven ? currentDeskExplorerValue : currentDeskSessionValue; if (currentDeskValue != null) { currentDesktop = new Guid((byte[])currentDeskValue); } else { // The registry value is missing when the user hasn't switched the desktop at least one time before reading the registry. In this case we can set it to desktop one. // We can only set it to desktop one, if we have at least one desktop in the desktops list. Otherwise we keep the existing value. Log.Debug("VirtualDesktopHelper.UpdateDesktopList() failed to read the id for the current desktop form registry.", typeof(VirtualDesktopHelper)); currentDesktop = availableDesktops.Count >= 1 ? availableDesktops[0] : currentDesktop; } } /// <summary> /// Returns an ordered list with the ids of all existing desktops. The list is ordered in the same way as the existing desktops. /// </summary> /// <returns>List of desktop ids or an empty list on failure.</returns> public List<Guid> GetDesktopIdList() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return availableDesktops; } /// <summary> /// Returns an ordered list with of all existing desktops and their properties. The list is ordered in the same way as the existing desktops. /// </summary> /// <returns>List of desktops or an empty list on failure.</returns> public List<VDesktop> GetDesktopList() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } List<VDesktop> list = new List<VDesktop>(); foreach (Guid d in availableDesktops) { list.Add(CreateVDesktopInstance(d)); } return list; } /// <summary> /// Returns the count of existing desktops /// </summary> /// <returns>Number of existing desktops or zero on failure.</returns> public int GetDesktopCount() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return availableDesktops.Count; } /// <summary> /// Returns the id of the desktop that is currently visible to the user. /// </summary> /// <returns>The <see cref="Guid"/> of the current desktop. Or <see cref="Guid.Empty"/> on failure and if we don't know the current desktop.</returns> public Guid GetCurrentDesktopId() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return currentDesktop; } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for the desktop that is currently visible to the user. /// </summary> /// <returns>An instance of <see cref="VDesktop"/> for the current desktop, or an empty instance of <see cref="VDesktop"/> on failure.</returns> public VDesktop GetCurrentDesktop() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return CreateVDesktopInstance(currentDesktop); } /// <summary> /// Checks if a desktop is currently visible to the user. /// </summary> /// <param name="desktop">The guid of the desktop to check.</param> /// <returns><see langword="True"/> if the guid belongs to the currently visible desktop. <see langword="False"/> if not or if we don't know the visible desktop.</returns> public bool IsDesktopVisible(Guid desktop) { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return currentDesktop == desktop; } /// <summary> /// Returns the number (position) of a desktop. /// </summary> /// <param name="desktop">The guid of the desktop.</param> /// <returns>Number of the desktop, if found. Otherwise a value of zero.</returns> public int GetDesktopNumber(Guid desktop) { if (_desktopListAutoUpdate) { UpdateDesktopList(); } // Adding +1 because index starts with zero and humans start counting with one. return availableDesktops.IndexOf(desktop) + 1; } /// <summary> /// Returns the name of a desktop /// </summary> /// <param name="desktop">Guid of the desktop</param> /// <returns>Returns the name of the desktop or <see cref="string.Empty"/> on failure.</returns> public string GetDesktopName(Guid desktop) { if (desktop == Guid.Empty || !GetDesktopIdList().Contains(desktop)) { Log.Debug($"VirtualDesktopHelper.GetDesktopName() failed. Parameter contains an invalid desktop guid ({desktop}) that doesn't belongs to an available desktop. Maybe the guid belongs to the generic 'AllDesktops' view.", typeof(VirtualDesktopHelper)); return string.Empty; } // If the desktop name was not changed by the user, it isn't saved to the registry. Then we need the default name for the desktop. var defaultName = string.Format(System.Globalization.CultureInfo.InvariantCulture, Resources.VirtualDesktopHelper_Desktop, GetDesktopNumber(desktop)); string registryPath = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VirtualDesktops\\Desktops\\{" + desktop.ToString().ToUpper(System.Globalization.CultureInfo.InvariantCulture) + "}"; RegistryKey deskSubKey = Registry.CurrentUser.OpenSubKey(registryPath, false); var desktopName = deskSubKey?.GetValue("Name"); return (desktopName != null) ? (string)desktopName : defaultName; } /// <summary> /// Returns the position type for a desktop. /// </summary> /// <param name="desktop">Guid of the desktop.</param> /// <returns>Type of <see cref="VirtualDesktopPosition"/>. On failure we return <see cref="VirtualDesktopPosition.Unknown"/>.</returns> public VirtualDesktopPosition GetDesktopPositionType(Guid desktop) { int desktopNumber = GetDesktopNumber(desktop); int desktopCount = GetDesktopCount(); if (desktopCount == 0 || desktop == Guid.Empty) { // On failure or empty guid return VirtualDesktopPosition.NotApplicable; } else if (desktopNumber == 1) { return VirtualDesktopPosition.FirstDesktop; } else if (desktopNumber == desktopCount) { return VirtualDesktopPosition.LastDesktop; } else if (desktopNumber > 1 & desktopNumber < desktopCount) { return VirtualDesktopPosition.BetweenOtherDesktops; } else { // All desktops view or a guid that doesn't belong to an existing desktop return VirtualDesktopPosition.NotApplicable; } } /// <summary> /// Returns the desktop id for a window. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktopId">The guid of the desktop, where the window is shown.</param> /// <returns>HResult of the called method as integer.</returns> public int GetWindowDesktopId(IntPtr hWindow, out Guid desktopId) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktopId() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); desktopId = Guid.Empty; return unchecked((int)HRESULT.E_UNEXPECTED); } return _virtualDesktopManager.GetWindowDesktopId(hWindow, out desktopId); } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for the desktop where the window is assigned to. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <returns>An instance of <see cref="VDesktop"/> for the desktop where the window is assigned to, or an empty instance of <see cref="VDesktop"/> on failure.</returns> public VDesktop GetWindowDesktop(IntPtr hWindow) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktop() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return CreateVDesktopInstance(Guid.Empty); } int hr = _virtualDesktopManager.GetWindowDesktopId(hWindow, out Guid desktopId); return (hr != (int)HRESULT.S_OK || desktopId == Guid.Empty) ? VDesktop.Empty : CreateVDesktopInstance(desktopId, hWindow); } /// <summary> /// Returns the desktop assignment type for a window. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns>Type of <see cref="VirtualDesktopAssignmentType"/>.</returns> public VirtualDesktopAssignmentType GetWindowDesktopAssignmentType(IntPtr hWindow, Guid? desktop = null) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktopAssignmentType() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return VirtualDesktopAssignmentType.Unknown; } _ = _virtualDesktopManager.IsWindowOnCurrentVirtualDesktop(hWindow, out int isOnCurrentDesktop); Guid windowDesktopId = desktop ?? Guid.Empty; // Prepare variable in case we have no input parameter for desktop int hResult = desktop is null ? GetWindowDesktopId(hWindow, out windowDesktopId) : 0; if (hResult != (int)HRESULT.S_OK) { return VirtualDesktopAssignmentType.Unknown; } else if (windowDesktopId == Guid.Empty) { return VirtualDesktopAssignmentType.NotAssigned; } else if (isOnCurrentDesktop == 1 && !GetDesktopIdList().Contains(windowDesktopId)) { // These windows are marked as visible on the current desktop, but the desktop id doesn't belongs to an existing desktop. // In this case the desktop id belongs to the generic view 'AllDesktops'. return VirtualDesktopAssignmentType.AllDesktops; } else if (isOnCurrentDesktop == 1) { return VirtualDesktopAssignmentType.CurrentDesktop; } else { return VirtualDesktopAssignmentType.OtherDesktop; } } /// <summary> /// Returns a value indicating if the window is assigned to a currently visible desktop. /// </summary> /// <param name="hWindow">Handle to the top level window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns><see langword="True"/> if the desktop with the window is visible or if the window is assigned to all desktops. <see langword="False"/> if the desktop is not visible and on failure,</returns> public bool IsWindowOnVisibleDesktop(IntPtr hWindow, Guid? desktop = null) { return GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.CurrentDesktop || GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.AllDesktops; } /// <summary> /// Returns a value indicating if the window is cloaked by VirtualDesktopManager. /// (A cloaked window is not visible to the user. But the window is still composed by DWM.) /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns>A value indicating if the window is cloaked by Virtual Desktop Manager, because it is moved to another desktop.</returns> public bool IsWindowCloakedByVirtualDesktopManager(IntPtr hWindow, Guid? desktop = null) { // If a window is hidden because it is moved to another desktop, then DWM returns type "CloakedShell". If DWM returns another type the window is not cloaked by shell or VirtualDesktopManager. _ = NativeMethods.DwmGetWindowAttribute(hWindow, (int)DwmWindowAttributes.Cloaked, out int dwmCloakedState, sizeof(uint)); return GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.OtherDesktop && dwmCloakedState == (int)DwmWindowCloakStates.CloakedShell; } /// <summary> /// Moves the window to a specific desktop. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <param name="desktopId">Guid of the target desktop.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowToDesktop(IntPtr hWindow, in Guid desktopId) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.MoveWindowToDesktop() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return false; } int hr = _virtualDesktopManager.MoveWindowToDesktop(hWindow, desktopId); if (hr != (int)HRESULT.S_OK) { Log.Exception($"VirtualDesktopHelper.MoveWindowToDesktop() failed: An exception was thrown when moving the window ({hWindow}) to another desktop ({desktopId}).", Marshal.GetExceptionForHR(hr), typeof(VirtualDesktopHelper)); return false; } return true; } /// <summary> /// Move a window one desktop left. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowOneDesktopLeft(IntPtr hWindow) { int hr = GetWindowDesktopId(hWindow, out Guid windowDesktop); if (hr != (int)HRESULT.S_OK) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: Can't get current desktop of the window.", typeof(VirtualDesktopHelper)); return false; } if (GetDesktopIdList().Count == 0 || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.Unknown || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.NotAssigned) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: We can't find the target desktop. This can happen if the desktop list is empty or if the window isn't assigned to a specific desktop.", typeof(VirtualDesktopHelper)); return false; } int windowDesktopNumber = GetDesktopIdList().IndexOf(windowDesktop); if (windowDesktopNumber == 1) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: The window is on the first desktop.", typeof(VirtualDesktopHelper)); return false; } Guid newDesktop = availableDesktops[windowDesktopNumber - 1]; return MoveWindowToDesktop(hWindow, newDesktop); } /// <summary> /// Move a window one desktop right. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowOneDesktopRight(IntPtr hWindow) { int hr = GetWindowDesktopId(hWindow, out Guid windowDesktop); if (hr != (int)HRESULT.S_OK) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: Can't get current desktop of the window.", typeof(VirtualDesktopHelper)); return false; } if (GetDesktopIdList().Count == 0 || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.Unknown || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.NotAssigned) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: We can't find the target desktop. This can happen if the desktop list is empty or if the window isn't assigned to a specific desktop.", typeof(VirtualDesktopHelper)); return false; } int windowDesktopNumber = GetDesktopIdList().IndexOf(windowDesktop); if (windowDesktopNumber == GetDesktopCount()) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: The window is on the last desktop.", typeof(VirtualDesktopHelper)); return false; } Guid newDesktop = availableDesktops[windowDesktopNumber + 1]; return MoveWindowToDesktop(hWindow, newDesktop); } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for a Guid. /// </summary> /// <param name="desktop">Guid of the desktop.</param> /// <param name="hWindow">Handle of the window shown on the desktop. If this parameter is set we can detect if it is the AllDesktops view.</param> /// <returns>A <see cref="VDesktop"/> instance. If the parameter desktop is <see cref="Guid.Empty"/>, we return an empty <see cref="VDesktop"/> instance.</returns> private VDesktop CreateVDesktopInstance(Guid desktop, IntPtr hWindow = default) { if (desktop == Guid.Empty) { return VDesktop.Empty; } // Can be only detected if method is invoked with window handle parameter. VirtualDesktopAssignmentType desktopType = (hWindow != default) ? GetWindowDesktopAssignmentType(hWindow, desktop) : VirtualDesktopAssignmentType.Unknown; bool isAllDesktops = (hWindow != default) && desktopType == VirtualDesktopAssignmentType.AllDesktops; bool isDesktopVisible = (hWindow != default) ? (isAllDesktops || desktopType == VirtualDesktopAssignmentType.CurrentDesktop) : IsDesktopVisible(desktop); return new VDesktop() { Id = desktop, Name = isAllDesktops ? Resources.VirtualDesktopHelper_AllDesktops : GetDesktopName(desktop), Number = GetDesktopNumber(desktop), IsVisible = isDesktopVisible || isAllDesktops, IsAllDesktopsView = isAllDesktops, Position = GetDesktopPositionType(desktop), }; } /// <summary> /// Check if we running on Windows 11 or later. /// </summary> /// <returns><see langword="True"/> if yes and <see langword="false"/> if no.</returns> private static bool IsWindowsElevenOrLater() { var currentBuildString = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", false)?.GetValue("CurrentBuild", null) ?? uint.MinValue; uint currentBuild = uint.TryParse(currentBuildString as string, out var build) ? build : uint.MinValue; var currentBuildNumberString = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", false)?.GetValue("CurrentBuildNumber", null) ?? uint.MinValue; uint currentBuildNumber = uint.TryParse(currentBuildNumberString as string, out var buildNumber) ? buildNumber : uint.MinValue; uint currentWindowsBuild = currentBuild != uint.MinValue ? currentBuild : currentBuildNumber; return currentWindowsBuild >= 22000; } } /// <summary> /// Enum to show in which way a window is assigned to a desktop /// </summary> public enum VirtualDesktopAssignmentType { Unknown = -1, NotAssigned = 0, AllDesktops = 1, CurrentDesktop = 2, OtherDesktop = 3, } /// <summary> /// Enum to show the position of a desktop in the list of all desktops /// </summary> public enum VirtualDesktopPosition { FirstDesktop, BetweenOtherDesktops, LastDesktop, NotApplicable, // If not applicable or unknown } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Diagnostics; using System.Runtime.InteropServices; using Common.UI; using Microsoft.Win32; using Wox.Plugin.Common.VirtualDesktop.Interop; using Wox.Plugin.Common.Win32; using Wox.Plugin.Logger; using Wox.Plugin.Properties; namespace Wox.Plugin.Common.VirtualDesktop.Helper { /// <summary> /// Helper class to work with Virtual Desktops. /// This helper uses only public available and documented COM-Interfaces or information from registry. /// </summary> /// <remarks> /// To use this helper you have to create an instance of it and access the method via the helper instance. /// We are only allowed to use public documented com interfaces. /// </remarks> /// <SeeAlso href="https://learn.microsoft.com/windows/win32/api/shobjidl_core/nn-shobjidl_core-ivirtualdesktopmanager">Documentation of IVirtualDesktopManager interface</SeeAlso> /// <SeeAlso href="https://learn.microsoft.com/archive/blogs/winsdk/virtual-desktop-switching-in-windows-10">CSharp example code for IVirtualDesktopManager</SeeAlso> public class VirtualDesktopHelper { /// <summary> /// Are we running on Windows 11 /// </summary> private readonly bool _isWindowsEleven; /// <summary> /// Instance of "Virtual Desktop Manager" /// </summary> private readonly IVirtualDesktopManager _virtualDesktopManager; /// <summary> /// Internal settings to enable automatic update of desktop list. /// This will be off by default to avoid to many registry queries. /// </summary> private readonly bool _desktopListAutoUpdate; /// <summary> /// List of all available Virtual Desktop in their real order /// The order and list in the registry is always up to date /// </summary> private List<Guid> _availableDesktops = new List<Guid>(); /// <summary> /// Id of the current visible Desktop. /// </summary> private Guid _currentDesktop; /// <summary> /// Initializes a new instance of the <see cref="VirtualDesktopHelper"/> class. /// </summary> /// <param name="desktopListUpdate">Setting to configure if the list of available desktops should update automatically or only when calling <see cref="UpdateDesktopList"/>. Per default this is set to manual update (false) to have less registry queries.</param> public VirtualDesktopHelper(bool desktopListUpdate = false) { try { _virtualDesktopManager = (IVirtualDesktopManager)new CVirtualDesktopManager(); } catch (COMException ex) { Log.Exception("Initialization of <VirtualDesktopHelper> failed: An exception was thrown when creating the instance of COM interface <IVirtualDesktopManager>.", ex, typeof(VirtualDesktopHelper)); return; } _isWindowsEleven = OSVersionHelper.IsWindows11(); _desktopListAutoUpdate = desktopListUpdate; UpdateDesktopList(); } /// <summary> /// Gets a value indicating whether the Virtual Desktop Manager is initialized successfully /// </summary> public bool VirtualDesktopManagerInitialized { get { return _virtualDesktopManager != null; } } /// <summary> /// Method to update the list of Virtual Desktops from Registry /// The data in the registry are always up to date /// </summary> /// <remarks>If we can not read from registry, we set the list/guid to empty values.</remarks> public void UpdateDesktopList() { int userSessionId = Process.GetCurrentProcess().SessionId; string registrySessionVirtualDesktops = $"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\{userSessionId}\\VirtualDesktops"; // Windows 10 string registryExplorerVirtualDesktops = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VirtualDesktops"; // Windows 11 // List of all desktops using RegistryKey virtualDesktopKey = Registry.CurrentUser.OpenSubKey(registryExplorerVirtualDesktops, false); if (virtualDesktopKey != null) { byte[] allDeskValue = (byte[])virtualDesktopKey.GetValue("VirtualDesktopIDs", null); if (allDeskValue != null) { // We clear only, if we can read from registry. Otherwise we keep the existing values. _availableDesktops.Clear(); // Each guid has a length of 16 elements int numberOfDesktops = allDeskValue.Length / 16; for (int i = 0; i < numberOfDesktops; i++) { byte[] guidArray = new byte[16]; Array.ConstrainedCopy(allDeskValue, i * 16, guidArray, 0, 16); _availableDesktops.Add(new Guid(guidArray)); } } else { Log.Debug("VirtualDesktopHelper.UpdateDesktopList() failed to read the list of existing desktops form registry.", typeof(VirtualDesktopHelper)); } } // Guid for current desktop var virtualDesktopsKeyName = _isWindowsEleven ? registryExplorerVirtualDesktops : registrySessionVirtualDesktops; using RegistryKey virtualDesktopsKey = Registry.CurrentUser.OpenSubKey(virtualDesktopsKeyName, false); if (virtualDesktopsKey != null) { var currentVirtualDesktopValue = virtualDesktopsKey.GetValue("CurrentVirtualDesktop", null); if (currentVirtualDesktopValue != null) { _currentDesktop = new Guid((byte[])currentVirtualDesktopValue); } else { // The registry value is missing when the user hasn't switched the desktop at least one time before reading the registry. In this case we can set it to desktop one. // We can only set it to desktop one, if we have at least one desktop in the desktops list. Otherwise we keep the existing value. Log.Debug("VirtualDesktopHelper.UpdateDesktopList() failed to read the id for the current desktop form registry.", typeof(VirtualDesktopHelper)); _currentDesktop = _availableDesktops.Count >= 1 ? _availableDesktops[0] : _currentDesktop; } } } /// <summary> /// Returns an ordered list with the ids of all existing desktops. The list is ordered in the same way as the existing desktops. /// </summary> /// <returns>List of desktop ids or an empty list on failure.</returns> public List<Guid> GetDesktopIdList() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return _availableDesktops; } /// <summary> /// Returns an ordered list with of all existing desktops and their properties. The list is ordered in the same way as the existing desktops. /// </summary> /// <returns>List of desktops or an empty list on failure.</returns> public List<VDesktop> GetDesktopList() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } List<VDesktop> list = new List<VDesktop>(); foreach (Guid d in _availableDesktops) { list.Add(CreateVDesktopInstance(d)); } return list; } /// <summary> /// Returns the count of existing desktops /// </summary> /// <returns>Number of existing desktops or zero on failure.</returns> public int GetDesktopCount() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return _availableDesktops.Count; } /// <summary> /// Returns the id of the desktop that is currently visible to the user. /// </summary> /// <returns>The <see cref="Guid"/> of the current desktop. Or <see cref="Guid.Empty"/> on failure and if we don't know the current desktop.</returns> public Guid GetCurrentDesktopId() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return _currentDesktop; } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for the desktop that is currently visible to the user. /// </summary> /// <returns>An instance of <see cref="VDesktop"/> for the current desktop, or an empty instance of <see cref="VDesktop"/> on failure.</returns> public VDesktop GetCurrentDesktop() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return CreateVDesktopInstance(_currentDesktop); } /// <summary> /// Checks if a desktop is currently visible to the user. /// </summary> /// <param name="desktop">The guid of the desktop to check.</param> /// <returns><see langword="True"/> if the guid belongs to the currently visible desktop. <see langword="False"/> if not or if we don't know the visible desktop.</returns> public bool IsDesktopVisible(Guid desktop) { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return _currentDesktop == desktop; } /// <summary> /// Returns the number (position) of a desktop. /// </summary> /// <param name="desktop">The guid of the desktop.</param> /// <returns>Number of the desktop, if found. Otherwise a value of zero.</returns> public int GetDesktopNumber(Guid desktop) { if (_desktopListAutoUpdate) { UpdateDesktopList(); } // Adding +1 because index starts with zero and humans start counting with one. return _availableDesktops.IndexOf(desktop) + 1; } /// <summary> /// Returns the name of a desktop /// </summary> /// <param name="desktop">Guid of the desktop</param> /// <returns>Returns the name of the desktop or <see cref="string.Empty"/> on failure.</returns> public string GetDesktopName(Guid desktop) { if (desktop == Guid.Empty || !GetDesktopIdList().Contains(desktop)) { Log.Debug($"VirtualDesktopHelper.GetDesktopName() failed. Parameter contains an invalid desktop guid ({desktop}) that doesn't belongs to an available desktop. Maybe the guid belongs to the generic 'AllDesktops' view.", typeof(VirtualDesktopHelper)); return string.Empty; } // If the desktop name was not changed by the user, it isn't saved to the registry. Then we need the default name for the desktop. var defaultName = string.Format(System.Globalization.CultureInfo.InvariantCulture, Resources.VirtualDesktopHelper_Desktop, GetDesktopNumber(desktop)); string registryPath = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VirtualDesktops\\Desktops\\{" + desktop.ToString().ToUpper(System.Globalization.CultureInfo.InvariantCulture) + "}"; using RegistryKey deskSubKey = Registry.CurrentUser.OpenSubKey(registryPath, false); var desktopName = deskSubKey?.GetValue("Name"); return (desktopName != null) ? (string)desktopName : defaultName; } /// <summary> /// Returns the position type for a desktop. /// </summary> /// <param name="desktop">Guid of the desktop.</param> /// <returns>Type of <see cref="VirtualDesktopPosition"/>. On failure we return <see cref="VirtualDesktopPosition.Unknown"/>.</returns> public VirtualDesktopPosition GetDesktopPositionType(Guid desktop) { int desktopNumber = GetDesktopNumber(desktop); int desktopCount = GetDesktopCount(); if (desktopCount == 0 || desktop == Guid.Empty) { // On failure or empty guid return VirtualDesktopPosition.NotApplicable; } else if (desktopNumber == 1) { return VirtualDesktopPosition.FirstDesktop; } else if (desktopNumber == desktopCount) { return VirtualDesktopPosition.LastDesktop; } else if (desktopNumber > 1 & desktopNumber < desktopCount) { return VirtualDesktopPosition.BetweenOtherDesktops; } else { // All desktops view or a guid that doesn't belong to an existing desktop return VirtualDesktopPosition.NotApplicable; } } /// <summary> /// Returns the desktop id for a window. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktopId">The guid of the desktop, where the window is shown.</param> /// <returns>HResult of the called method as integer.</returns> public int GetWindowDesktopId(IntPtr hWindow, out Guid desktopId) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktopId() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); desktopId = Guid.Empty; return unchecked((int)HRESULT.E_UNEXPECTED); } return _virtualDesktopManager.GetWindowDesktopId(hWindow, out desktopId); } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for the desktop where the window is assigned to. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <returns>An instance of <see cref="VDesktop"/> for the desktop where the window is assigned to, or an empty instance of <see cref="VDesktop"/> on failure.</returns> public VDesktop GetWindowDesktop(IntPtr hWindow) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktop() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return CreateVDesktopInstance(Guid.Empty); } int hr = _virtualDesktopManager.GetWindowDesktopId(hWindow, out Guid desktopId); return (hr != (int)HRESULT.S_OK || desktopId == Guid.Empty) ? VDesktop.Empty : CreateVDesktopInstance(desktopId, hWindow); } /// <summary> /// Returns the desktop assignment type for a window. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns>Type of <see cref="VirtualDesktopAssignmentType"/>.</returns> public VirtualDesktopAssignmentType GetWindowDesktopAssignmentType(IntPtr hWindow, Guid? desktop = null) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktopAssignmentType() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return VirtualDesktopAssignmentType.Unknown; } _ = _virtualDesktopManager.IsWindowOnCurrentVirtualDesktop(hWindow, out int isOnCurrentDesktop); Guid windowDesktopId = desktop ?? Guid.Empty; // Prepare variable in case we have no input parameter for desktop int hResult = desktop is null ? GetWindowDesktopId(hWindow, out windowDesktopId) : 0; if (hResult != (int)HRESULT.S_OK) { return VirtualDesktopAssignmentType.Unknown; } else if (windowDesktopId == Guid.Empty) { return VirtualDesktopAssignmentType.NotAssigned; } else if (isOnCurrentDesktop == 1 && !GetDesktopIdList().Contains(windowDesktopId)) { // These windows are marked as visible on the current desktop, but the desktop id doesn't belongs to an existing desktop. // In this case the desktop id belongs to the generic view 'AllDesktops'. return VirtualDesktopAssignmentType.AllDesktops; } else if (isOnCurrentDesktop == 1) { return VirtualDesktopAssignmentType.CurrentDesktop; } else { return VirtualDesktopAssignmentType.OtherDesktop; } } /// <summary> /// Returns a value indicating if the window is assigned to a currently visible desktop. /// </summary> /// <param name="hWindow">Handle to the top level window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns><see langword="True"/> if the desktop with the window is visible or if the window is assigned to all desktops. <see langword="False"/> if the desktop is not visible and on failure,</returns> public bool IsWindowOnVisibleDesktop(IntPtr hWindow, Guid? desktop = null) { return GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.CurrentDesktop || GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.AllDesktops; } /// <summary> /// Returns a value indicating if the window is cloaked by VirtualDesktopManager. /// (A cloaked window is not visible to the user. But the window is still composed by DWM.) /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns>A value indicating if the window is cloaked by Virtual Desktop Manager, because it is moved to another desktop.</returns> public bool IsWindowCloakedByVirtualDesktopManager(IntPtr hWindow, Guid? desktop = null) { // If a window is hidden because it is moved to another desktop, then DWM returns type "CloakedShell". If DWM returns another type the window is not cloaked by shell or VirtualDesktopManager. _ = NativeMethods.DwmGetWindowAttribute(hWindow, (int)DwmWindowAttributes.Cloaked, out int dwmCloakedState, sizeof(uint)); return GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.OtherDesktop && dwmCloakedState == (int)DwmWindowCloakStates.CloakedShell; } /// <summary> /// Moves the window to a specific desktop. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <param name="desktopId">Guid of the target desktop.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowToDesktop(IntPtr hWindow, in Guid desktopId) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.MoveWindowToDesktop() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return false; } int hr = _virtualDesktopManager.MoveWindowToDesktop(hWindow, desktopId); if (hr != (int)HRESULT.S_OK) { Log.Exception($"VirtualDesktopHelper.MoveWindowToDesktop() failed: An exception was thrown when moving the window ({hWindow}) to another desktop ({desktopId}).", Marshal.GetExceptionForHR(hr), typeof(VirtualDesktopHelper)); return false; } return true; } /// <summary> /// Move a window one desktop left. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowOneDesktopLeft(IntPtr hWindow) { int hr = GetWindowDesktopId(hWindow, out Guid windowDesktop); if (hr != (int)HRESULT.S_OK) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: Can't get current desktop of the window.", typeof(VirtualDesktopHelper)); return false; } if (GetDesktopIdList().Count == 0 || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.Unknown || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.NotAssigned) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: We can't find the target desktop. This can happen if the desktop list is empty or if the window isn't assigned to a specific desktop.", typeof(VirtualDesktopHelper)); return false; } int windowDesktopNumber = GetDesktopIdList().IndexOf(windowDesktop); if (windowDesktopNumber == 1) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: The window is on the first desktop.", typeof(VirtualDesktopHelper)); return false; } Guid newDesktop = _availableDesktops[windowDesktopNumber - 1]; return MoveWindowToDesktop(hWindow, newDesktop); } /// <summary> /// Move a window one desktop right. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowOneDesktopRight(IntPtr hWindow) { int hr = GetWindowDesktopId(hWindow, out Guid windowDesktop); if (hr != (int)HRESULT.S_OK) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: Can't get current desktop of the window.", typeof(VirtualDesktopHelper)); return false; } if (GetDesktopIdList().Count == 0 || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.Unknown || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.NotAssigned) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: We can't find the target desktop. This can happen if the desktop list is empty or if the window isn't assigned to a specific desktop.", typeof(VirtualDesktopHelper)); return false; } int windowDesktopNumber = GetDesktopIdList().IndexOf(windowDesktop); if (windowDesktopNumber == GetDesktopCount()) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: The window is on the last desktop.", typeof(VirtualDesktopHelper)); return false; } Guid newDesktop = _availableDesktops[windowDesktopNumber + 1]; return MoveWindowToDesktop(hWindow, newDesktop); } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for a Guid. /// </summary> /// <param name="desktop">Guid of the desktop.</param> /// <param name="hWindow">Handle of the window shown on the desktop. If this parameter is set we can detect if it is the AllDesktops view.</param> /// <returns>A <see cref="VDesktop"/> instance. If the parameter desktop is <see cref="Guid.Empty"/>, we return an empty <see cref="VDesktop"/> instance.</returns> private VDesktop CreateVDesktopInstance(Guid desktop, IntPtr hWindow = default) { if (desktop == Guid.Empty) { return VDesktop.Empty; } // Can be only detected if method is invoked with window handle parameter. VirtualDesktopAssignmentType desktopType = (hWindow != default) ? GetWindowDesktopAssignmentType(hWindow, desktop) : VirtualDesktopAssignmentType.Unknown; bool isAllDesktops = (hWindow != default) && desktopType == VirtualDesktopAssignmentType.AllDesktops; bool isDesktopVisible = (hWindow != default) ? (isAllDesktops || desktopType == VirtualDesktopAssignmentType.CurrentDesktop) : IsDesktopVisible(desktop); return new VDesktop() { Id = desktop, Name = isAllDesktops ? Resources.VirtualDesktopHelper_AllDesktops : GetDesktopName(desktop), Number = GetDesktopNumber(desktop), IsVisible = isDesktopVisible || isAllDesktops, IsAllDesktopsView = isAllDesktops, Position = GetDesktopPositionType(desktop), }; } } /// <summary> /// Enum to show in which way a window is assigned to a desktop /// </summary> public enum VirtualDesktopAssignmentType { Unknown = -1, NotAssigned = 0, AllDesktops = 1, CurrentDesktop = 2, OtherDesktop = 3, } /// <summary> /// Enum to show the position of a desktop in the list of all desktops /// </summary> public enum VirtualDesktopPosition { FirstDesktop, BetweenOtherDesktops, LastDesktop, NotApplicable, // If not applicable or unknown } }
davidegiacometti
9c1fb53d2a77c8691ecf3a319ebdf72eeba8e4ff
df14a5dbb31f9b0989ef4e92e382023d5f0b3327
## Unrecognized Spelling [Destktop](#security-tab) is not a recognized word. \(unrecognized-spelling\) [Show more details](https://github.com/microsoft/PowerToys/security/code-scanning/70)
github-advanced-security[bot]
165
microsoft/PowerToys
29,890
[Run] Addressed some disposable + VirtualDesktopHelper cleanup
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request `VirtualDesktopHelper` class is heavy used by WindowWalker plugin at every query. I have noticed that some `RegistryKey` weren't properly disposed. I have also cached Terminal Session ID and Windows version since they stay the same during PT execution. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** https://github.com/microsoft/PowerToys/issues/29891 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested PT Run and verified that virtual desktop names are properly displayed on WindowWalker results.
null
2023-11-16 20:56:22+00:00
2023-11-23 16:16:12+00:00
src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VirtualDesktopHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Diagnostics; using System.Runtime.InteropServices; using Microsoft.Win32; using Wox.Plugin.Common.VirtualDesktop.Interop; using Wox.Plugin.Common.Win32; using Wox.Plugin.Logger; using Wox.Plugin.Properties; namespace Wox.Plugin.Common.VirtualDesktop.Helper { /// <summary> /// Helper class to work with Virtual Desktops. /// This helper uses only public available and documented COM-Interfaces or information from registry. /// </summary> /// <remarks> /// To use this helper you have to create an instance of it and access the method via the helper instance. /// We are only allowed to use public documented com interfaces. /// </remarks> /// <SeeAlso href="https://learn.microsoft.com/windows/win32/api/shobjidl_core/nn-shobjidl_core-ivirtualdesktopmanager">Documentation of IVirtualDesktopManager interface</SeeAlso> /// <SeeAlso href="https://learn.microsoft.com/archive/blogs/winsdk/virtual-desktop-switching-in-windows-10">CSharp example code for IVirtualDesktopManager</SeeAlso> public class VirtualDesktopHelper { /// <summary> /// Are we running on Windows 11 /// </summary> private static readonly bool _IsWindowsEleven = IsWindowsElevenOrLater(); /// <summary> /// Instance of "Virtual Desktop Manager" /// </summary> private readonly IVirtualDesktopManager _virtualDesktopManager; /// <summary> /// Internal settings to enable automatic update of desktop list. /// This will be off by default to avoid to many registry queries. /// </summary> private readonly bool _desktopListAutoUpdate; /// <summary> /// List of all available Virtual Desktop in their real order /// The order and list in the registry is always up to date /// </summary> private List<Guid> availableDesktops = new List<Guid>(); /// <summary> /// Id of the current visible Desktop. /// </summary> private Guid currentDesktop; /// <summary> /// Initializes a new instance of the <see cref="VirtualDesktopHelper"/> class. /// </summary> /// <param name="desktopListUpdate">Setting to configure if the list of available desktops should update automatically or only when calling <see cref="UpdateDesktopList"/>. Per default this is set to manual update (false) to have less registry queries.</param> public VirtualDesktopHelper(bool desktopListUpdate = false) { try { _virtualDesktopManager = (IVirtualDesktopManager)new CVirtualDesktopManager(); } catch (COMException ex) { Log.Exception("Initialization of <VirtualDesktopHelper> failed: An exception was thrown when creating the instance of COM interface <IVirtualDesktopManager>.", ex, typeof(VirtualDesktopHelper)); return; } _desktopListAutoUpdate = desktopListUpdate; UpdateDesktopList(); } /// <summary> /// Gets a value indicating whether the Virtual Desktop Manager is initialized successfully /// </summary> public bool VirtualDesktopManagerInitialized { get { return _virtualDesktopManager != null; } } /// <summary> /// Method to update the list of Virtual Desktops from Registry /// The data in the registry are always up to date /// </summary> /// <remarks>If we can not read from registry, we set the list/guid to empty values.</remarks> public void UpdateDesktopList() { // Registry paths int userSessionId = Process.GetCurrentProcess().SessionId; string registrySessionVirtualDesktops = $"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\{userSessionId}\\VirtualDesktops"; string registryExplorerVirtualDesktops = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VirtualDesktops"; // List of all desktops byte[] allDeskValue = (byte[])Registry.CurrentUser.OpenSubKey(registryExplorerVirtualDesktops, false)?.GetValue("VirtualDesktopIDs", null); if (allDeskValue != null) { // We clear only, if we can read from registry. Otherwise we keep the existing values. availableDesktops.Clear(); // Each guid has a length of 16 elements int numberOfDesktops = allDeskValue.Length / 16; for (int i = 0; i < numberOfDesktops; i++) { byte[] guidArray = new byte[16]; Array.ConstrainedCopy(allDeskValue, i * 16, guidArray, 0, 16); availableDesktops.Add(new Guid(guidArray)); } } else { Log.Debug("VirtualDesktopHelper.UpdateDesktopList() failed to read the list of existing desktops form registry.", typeof(VirtualDesktopHelper)); } // Guid for current desktop var currentDeskSessionValue = Registry.CurrentUser.OpenSubKey(registrySessionVirtualDesktops, false)?.GetValue("CurrentVirtualDesktop", null); // Windows 10 var currentDeskExplorerValue = Registry.CurrentUser.OpenSubKey(registryExplorerVirtualDesktops, false)?.GetValue("CurrentVirtualDesktop", null); // Windows 11 var currentDeskValue = _IsWindowsEleven ? currentDeskExplorerValue : currentDeskSessionValue; if (currentDeskValue != null) { currentDesktop = new Guid((byte[])currentDeskValue); } else { // The registry value is missing when the user hasn't switched the desktop at least one time before reading the registry. In this case we can set it to desktop one. // We can only set it to desktop one, if we have at least one desktop in the desktops list. Otherwise we keep the existing value. Log.Debug("VirtualDesktopHelper.UpdateDesktopList() failed to read the id for the current desktop form registry.", typeof(VirtualDesktopHelper)); currentDesktop = availableDesktops.Count >= 1 ? availableDesktops[0] : currentDesktop; } } /// <summary> /// Returns an ordered list with the ids of all existing desktops. The list is ordered in the same way as the existing desktops. /// </summary> /// <returns>List of desktop ids or an empty list on failure.</returns> public List<Guid> GetDesktopIdList() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return availableDesktops; } /// <summary> /// Returns an ordered list with of all existing desktops and their properties. The list is ordered in the same way as the existing desktops. /// </summary> /// <returns>List of desktops or an empty list on failure.</returns> public List<VDesktop> GetDesktopList() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } List<VDesktop> list = new List<VDesktop>(); foreach (Guid d in availableDesktops) { list.Add(CreateVDesktopInstance(d)); } return list; } /// <summary> /// Returns the count of existing desktops /// </summary> /// <returns>Number of existing desktops or zero on failure.</returns> public int GetDesktopCount() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return availableDesktops.Count; } /// <summary> /// Returns the id of the desktop that is currently visible to the user. /// </summary> /// <returns>The <see cref="Guid"/> of the current desktop. Or <see cref="Guid.Empty"/> on failure and if we don't know the current desktop.</returns> public Guid GetCurrentDesktopId() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return currentDesktop; } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for the desktop that is currently visible to the user. /// </summary> /// <returns>An instance of <see cref="VDesktop"/> for the current desktop, or an empty instance of <see cref="VDesktop"/> on failure.</returns> public VDesktop GetCurrentDesktop() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return CreateVDesktopInstance(currentDesktop); } /// <summary> /// Checks if a desktop is currently visible to the user. /// </summary> /// <param name="desktop">The guid of the desktop to check.</param> /// <returns><see langword="True"/> if the guid belongs to the currently visible desktop. <see langword="False"/> if not or if we don't know the visible desktop.</returns> public bool IsDesktopVisible(Guid desktop) { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return currentDesktop == desktop; } /// <summary> /// Returns the number (position) of a desktop. /// </summary> /// <param name="desktop">The guid of the desktop.</param> /// <returns>Number of the desktop, if found. Otherwise a value of zero.</returns> public int GetDesktopNumber(Guid desktop) { if (_desktopListAutoUpdate) { UpdateDesktopList(); } // Adding +1 because index starts with zero and humans start counting with one. return availableDesktops.IndexOf(desktop) + 1; } /// <summary> /// Returns the name of a desktop /// </summary> /// <param name="desktop">Guid of the desktop</param> /// <returns>Returns the name of the desktop or <see cref="string.Empty"/> on failure.</returns> public string GetDesktopName(Guid desktop) { if (desktop == Guid.Empty || !GetDesktopIdList().Contains(desktop)) { Log.Debug($"VirtualDesktopHelper.GetDesktopName() failed. Parameter contains an invalid desktop guid ({desktop}) that doesn't belongs to an available desktop. Maybe the guid belongs to the generic 'AllDesktops' view.", typeof(VirtualDesktopHelper)); return string.Empty; } // If the desktop name was not changed by the user, it isn't saved to the registry. Then we need the default name for the desktop. var defaultName = string.Format(System.Globalization.CultureInfo.InvariantCulture, Resources.VirtualDesktopHelper_Desktop, GetDesktopNumber(desktop)); string registryPath = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VirtualDesktops\\Desktops\\{" + desktop.ToString().ToUpper(System.Globalization.CultureInfo.InvariantCulture) + "}"; RegistryKey deskSubKey = Registry.CurrentUser.OpenSubKey(registryPath, false); var desktopName = deskSubKey?.GetValue("Name"); return (desktopName != null) ? (string)desktopName : defaultName; } /// <summary> /// Returns the position type for a desktop. /// </summary> /// <param name="desktop">Guid of the desktop.</param> /// <returns>Type of <see cref="VirtualDesktopPosition"/>. On failure we return <see cref="VirtualDesktopPosition.Unknown"/>.</returns> public VirtualDesktopPosition GetDesktopPositionType(Guid desktop) { int desktopNumber = GetDesktopNumber(desktop); int desktopCount = GetDesktopCount(); if (desktopCount == 0 || desktop == Guid.Empty) { // On failure or empty guid return VirtualDesktopPosition.NotApplicable; } else if (desktopNumber == 1) { return VirtualDesktopPosition.FirstDesktop; } else if (desktopNumber == desktopCount) { return VirtualDesktopPosition.LastDesktop; } else if (desktopNumber > 1 & desktopNumber < desktopCount) { return VirtualDesktopPosition.BetweenOtherDesktops; } else { // All desktops view or a guid that doesn't belong to an existing desktop return VirtualDesktopPosition.NotApplicable; } } /// <summary> /// Returns the desktop id for a window. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktopId">The guid of the desktop, where the window is shown.</param> /// <returns>HResult of the called method as integer.</returns> public int GetWindowDesktopId(IntPtr hWindow, out Guid desktopId) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktopId() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); desktopId = Guid.Empty; return unchecked((int)HRESULT.E_UNEXPECTED); } return _virtualDesktopManager.GetWindowDesktopId(hWindow, out desktopId); } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for the desktop where the window is assigned to. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <returns>An instance of <see cref="VDesktop"/> for the desktop where the window is assigned to, or an empty instance of <see cref="VDesktop"/> on failure.</returns> public VDesktop GetWindowDesktop(IntPtr hWindow) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktop() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return CreateVDesktopInstance(Guid.Empty); } int hr = _virtualDesktopManager.GetWindowDesktopId(hWindow, out Guid desktopId); return (hr != (int)HRESULT.S_OK || desktopId == Guid.Empty) ? VDesktop.Empty : CreateVDesktopInstance(desktopId, hWindow); } /// <summary> /// Returns the desktop assignment type for a window. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns>Type of <see cref="VirtualDesktopAssignmentType"/>.</returns> public VirtualDesktopAssignmentType GetWindowDesktopAssignmentType(IntPtr hWindow, Guid? desktop = null) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktopAssignmentType() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return VirtualDesktopAssignmentType.Unknown; } _ = _virtualDesktopManager.IsWindowOnCurrentVirtualDesktop(hWindow, out int isOnCurrentDesktop); Guid windowDesktopId = desktop ?? Guid.Empty; // Prepare variable in case we have no input parameter for desktop int hResult = desktop is null ? GetWindowDesktopId(hWindow, out windowDesktopId) : 0; if (hResult != (int)HRESULT.S_OK) { return VirtualDesktopAssignmentType.Unknown; } else if (windowDesktopId == Guid.Empty) { return VirtualDesktopAssignmentType.NotAssigned; } else if (isOnCurrentDesktop == 1 && !GetDesktopIdList().Contains(windowDesktopId)) { // These windows are marked as visible on the current desktop, but the desktop id doesn't belongs to an existing desktop. // In this case the desktop id belongs to the generic view 'AllDesktops'. return VirtualDesktopAssignmentType.AllDesktops; } else if (isOnCurrentDesktop == 1) { return VirtualDesktopAssignmentType.CurrentDesktop; } else { return VirtualDesktopAssignmentType.OtherDesktop; } } /// <summary> /// Returns a value indicating if the window is assigned to a currently visible desktop. /// </summary> /// <param name="hWindow">Handle to the top level window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns><see langword="True"/> if the desktop with the window is visible or if the window is assigned to all desktops. <see langword="False"/> if the desktop is not visible and on failure,</returns> public bool IsWindowOnVisibleDesktop(IntPtr hWindow, Guid? desktop = null) { return GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.CurrentDesktop || GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.AllDesktops; } /// <summary> /// Returns a value indicating if the window is cloaked by VirtualDesktopManager. /// (A cloaked window is not visible to the user. But the window is still composed by DWM.) /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns>A value indicating if the window is cloaked by Virtual Desktop Manager, because it is moved to another desktop.</returns> public bool IsWindowCloakedByVirtualDesktopManager(IntPtr hWindow, Guid? desktop = null) { // If a window is hidden because it is moved to another desktop, then DWM returns type "CloakedShell". If DWM returns another type the window is not cloaked by shell or VirtualDesktopManager. _ = NativeMethods.DwmGetWindowAttribute(hWindow, (int)DwmWindowAttributes.Cloaked, out int dwmCloakedState, sizeof(uint)); return GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.OtherDesktop && dwmCloakedState == (int)DwmWindowCloakStates.CloakedShell; } /// <summary> /// Moves the window to a specific desktop. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <param name="desktopId">Guid of the target desktop.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowToDesktop(IntPtr hWindow, in Guid desktopId) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.MoveWindowToDesktop() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return false; } int hr = _virtualDesktopManager.MoveWindowToDesktop(hWindow, desktopId); if (hr != (int)HRESULT.S_OK) { Log.Exception($"VirtualDesktopHelper.MoveWindowToDesktop() failed: An exception was thrown when moving the window ({hWindow}) to another desktop ({desktopId}).", Marshal.GetExceptionForHR(hr), typeof(VirtualDesktopHelper)); return false; } return true; } /// <summary> /// Move a window one desktop left. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowOneDesktopLeft(IntPtr hWindow) { int hr = GetWindowDesktopId(hWindow, out Guid windowDesktop); if (hr != (int)HRESULT.S_OK) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: Can't get current desktop of the window.", typeof(VirtualDesktopHelper)); return false; } if (GetDesktopIdList().Count == 0 || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.Unknown || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.NotAssigned) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: We can't find the target desktop. This can happen if the desktop list is empty or if the window isn't assigned to a specific desktop.", typeof(VirtualDesktopHelper)); return false; } int windowDesktopNumber = GetDesktopIdList().IndexOf(windowDesktop); if (windowDesktopNumber == 1) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: The window is on the first desktop.", typeof(VirtualDesktopHelper)); return false; } Guid newDesktop = availableDesktops[windowDesktopNumber - 1]; return MoveWindowToDesktop(hWindow, newDesktop); } /// <summary> /// Move a window one desktop right. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowOneDesktopRight(IntPtr hWindow) { int hr = GetWindowDesktopId(hWindow, out Guid windowDesktop); if (hr != (int)HRESULT.S_OK) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: Can't get current desktop of the window.", typeof(VirtualDesktopHelper)); return false; } if (GetDesktopIdList().Count == 0 || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.Unknown || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.NotAssigned) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: We can't find the target desktop. This can happen if the desktop list is empty or if the window isn't assigned to a specific desktop.", typeof(VirtualDesktopHelper)); return false; } int windowDesktopNumber = GetDesktopIdList().IndexOf(windowDesktop); if (windowDesktopNumber == GetDesktopCount()) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: The window is on the last desktop.", typeof(VirtualDesktopHelper)); return false; } Guid newDesktop = availableDesktops[windowDesktopNumber + 1]; return MoveWindowToDesktop(hWindow, newDesktop); } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for a Guid. /// </summary> /// <param name="desktop">Guid of the desktop.</param> /// <param name="hWindow">Handle of the window shown on the desktop. If this parameter is set we can detect if it is the AllDesktops view.</param> /// <returns>A <see cref="VDesktop"/> instance. If the parameter desktop is <see cref="Guid.Empty"/>, we return an empty <see cref="VDesktop"/> instance.</returns> private VDesktop CreateVDesktopInstance(Guid desktop, IntPtr hWindow = default) { if (desktop == Guid.Empty) { return VDesktop.Empty; } // Can be only detected if method is invoked with window handle parameter. VirtualDesktopAssignmentType desktopType = (hWindow != default) ? GetWindowDesktopAssignmentType(hWindow, desktop) : VirtualDesktopAssignmentType.Unknown; bool isAllDesktops = (hWindow != default) && desktopType == VirtualDesktopAssignmentType.AllDesktops; bool isDesktopVisible = (hWindow != default) ? (isAllDesktops || desktopType == VirtualDesktopAssignmentType.CurrentDesktop) : IsDesktopVisible(desktop); return new VDesktop() { Id = desktop, Name = isAllDesktops ? Resources.VirtualDesktopHelper_AllDesktops : GetDesktopName(desktop), Number = GetDesktopNumber(desktop), IsVisible = isDesktopVisible || isAllDesktops, IsAllDesktopsView = isAllDesktops, Position = GetDesktopPositionType(desktop), }; } /// <summary> /// Check if we running on Windows 11 or later. /// </summary> /// <returns><see langword="True"/> if yes and <see langword="false"/> if no.</returns> private static bool IsWindowsElevenOrLater() { var currentBuildString = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", false)?.GetValue("CurrentBuild", null) ?? uint.MinValue; uint currentBuild = uint.TryParse(currentBuildString as string, out var build) ? build : uint.MinValue; var currentBuildNumberString = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", false)?.GetValue("CurrentBuildNumber", null) ?? uint.MinValue; uint currentBuildNumber = uint.TryParse(currentBuildNumberString as string, out var buildNumber) ? buildNumber : uint.MinValue; uint currentWindowsBuild = currentBuild != uint.MinValue ? currentBuild : currentBuildNumber; return currentWindowsBuild >= 22000; } } /// <summary> /// Enum to show in which way a window is assigned to a desktop /// </summary> public enum VirtualDesktopAssignmentType { Unknown = -1, NotAssigned = 0, AllDesktops = 1, CurrentDesktop = 2, OtherDesktop = 3, } /// <summary> /// Enum to show the position of a desktop in the list of all desktops /// </summary> public enum VirtualDesktopPosition { FirstDesktop, BetweenOtherDesktops, LastDesktop, NotApplicable, // If not applicable or unknown } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Diagnostics; using System.Runtime.InteropServices; using Common.UI; using Microsoft.Win32; using Wox.Plugin.Common.VirtualDesktop.Interop; using Wox.Plugin.Common.Win32; using Wox.Plugin.Logger; using Wox.Plugin.Properties; namespace Wox.Plugin.Common.VirtualDesktop.Helper { /// <summary> /// Helper class to work with Virtual Desktops. /// This helper uses only public available and documented COM-Interfaces or information from registry. /// </summary> /// <remarks> /// To use this helper you have to create an instance of it and access the method via the helper instance. /// We are only allowed to use public documented com interfaces. /// </remarks> /// <SeeAlso href="https://learn.microsoft.com/windows/win32/api/shobjidl_core/nn-shobjidl_core-ivirtualdesktopmanager">Documentation of IVirtualDesktopManager interface</SeeAlso> /// <SeeAlso href="https://learn.microsoft.com/archive/blogs/winsdk/virtual-desktop-switching-in-windows-10">CSharp example code for IVirtualDesktopManager</SeeAlso> public class VirtualDesktopHelper { /// <summary> /// Are we running on Windows 11 /// </summary> private readonly bool _isWindowsEleven; /// <summary> /// Instance of "Virtual Desktop Manager" /// </summary> private readonly IVirtualDesktopManager _virtualDesktopManager; /// <summary> /// Internal settings to enable automatic update of desktop list. /// This will be off by default to avoid to many registry queries. /// </summary> private readonly bool _desktopListAutoUpdate; /// <summary> /// List of all available Virtual Desktop in their real order /// The order and list in the registry is always up to date /// </summary> private List<Guid> _availableDesktops = new List<Guid>(); /// <summary> /// Id of the current visible Desktop. /// </summary> private Guid _currentDesktop; /// <summary> /// Initializes a new instance of the <see cref="VirtualDesktopHelper"/> class. /// </summary> /// <param name="desktopListUpdate">Setting to configure if the list of available desktops should update automatically or only when calling <see cref="UpdateDesktopList"/>. Per default this is set to manual update (false) to have less registry queries.</param> public VirtualDesktopHelper(bool desktopListUpdate = false) { try { _virtualDesktopManager = (IVirtualDesktopManager)new CVirtualDesktopManager(); } catch (COMException ex) { Log.Exception("Initialization of <VirtualDesktopHelper> failed: An exception was thrown when creating the instance of COM interface <IVirtualDesktopManager>.", ex, typeof(VirtualDesktopHelper)); return; } _isWindowsEleven = OSVersionHelper.IsWindows11(); _desktopListAutoUpdate = desktopListUpdate; UpdateDesktopList(); } /// <summary> /// Gets a value indicating whether the Virtual Desktop Manager is initialized successfully /// </summary> public bool VirtualDesktopManagerInitialized { get { return _virtualDesktopManager != null; } } /// <summary> /// Method to update the list of Virtual Desktops from Registry /// The data in the registry are always up to date /// </summary> /// <remarks>If we can not read from registry, we set the list/guid to empty values.</remarks> public void UpdateDesktopList() { int userSessionId = Process.GetCurrentProcess().SessionId; string registrySessionVirtualDesktops = $"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\{userSessionId}\\VirtualDesktops"; // Windows 10 string registryExplorerVirtualDesktops = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VirtualDesktops"; // Windows 11 // List of all desktops using RegistryKey virtualDesktopKey = Registry.CurrentUser.OpenSubKey(registryExplorerVirtualDesktops, false); if (virtualDesktopKey != null) { byte[] allDeskValue = (byte[])virtualDesktopKey.GetValue("VirtualDesktopIDs", null); if (allDeskValue != null) { // We clear only, if we can read from registry. Otherwise we keep the existing values. _availableDesktops.Clear(); // Each guid has a length of 16 elements int numberOfDesktops = allDeskValue.Length / 16; for (int i = 0; i < numberOfDesktops; i++) { byte[] guidArray = new byte[16]; Array.ConstrainedCopy(allDeskValue, i * 16, guidArray, 0, 16); _availableDesktops.Add(new Guid(guidArray)); } } else { Log.Debug("VirtualDesktopHelper.UpdateDesktopList() failed to read the list of existing desktops form registry.", typeof(VirtualDesktopHelper)); } } // Guid for current desktop var virtualDesktopsKeyName = _isWindowsEleven ? registryExplorerVirtualDesktops : registrySessionVirtualDesktops; using RegistryKey virtualDesktopsKey = Registry.CurrentUser.OpenSubKey(virtualDesktopsKeyName, false); if (virtualDesktopsKey != null) { var currentVirtualDesktopValue = virtualDesktopsKey.GetValue("CurrentVirtualDesktop", null); if (currentVirtualDesktopValue != null) { _currentDesktop = new Guid((byte[])currentVirtualDesktopValue); } else { // The registry value is missing when the user hasn't switched the desktop at least one time before reading the registry. In this case we can set it to desktop one. // We can only set it to desktop one, if we have at least one desktop in the desktops list. Otherwise we keep the existing value. Log.Debug("VirtualDesktopHelper.UpdateDesktopList() failed to read the id for the current desktop form registry.", typeof(VirtualDesktopHelper)); _currentDesktop = _availableDesktops.Count >= 1 ? _availableDesktops[0] : _currentDesktop; } } } /// <summary> /// Returns an ordered list with the ids of all existing desktops. The list is ordered in the same way as the existing desktops. /// </summary> /// <returns>List of desktop ids or an empty list on failure.</returns> public List<Guid> GetDesktopIdList() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return _availableDesktops; } /// <summary> /// Returns an ordered list with of all existing desktops and their properties. The list is ordered in the same way as the existing desktops. /// </summary> /// <returns>List of desktops or an empty list on failure.</returns> public List<VDesktop> GetDesktopList() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } List<VDesktop> list = new List<VDesktop>(); foreach (Guid d in _availableDesktops) { list.Add(CreateVDesktopInstance(d)); } return list; } /// <summary> /// Returns the count of existing desktops /// </summary> /// <returns>Number of existing desktops or zero on failure.</returns> public int GetDesktopCount() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return _availableDesktops.Count; } /// <summary> /// Returns the id of the desktop that is currently visible to the user. /// </summary> /// <returns>The <see cref="Guid"/> of the current desktop. Or <see cref="Guid.Empty"/> on failure and if we don't know the current desktop.</returns> public Guid GetCurrentDesktopId() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return _currentDesktop; } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for the desktop that is currently visible to the user. /// </summary> /// <returns>An instance of <see cref="VDesktop"/> for the current desktop, or an empty instance of <see cref="VDesktop"/> on failure.</returns> public VDesktop GetCurrentDesktop() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return CreateVDesktopInstance(_currentDesktop); } /// <summary> /// Checks if a desktop is currently visible to the user. /// </summary> /// <param name="desktop">The guid of the desktop to check.</param> /// <returns><see langword="True"/> if the guid belongs to the currently visible desktop. <see langword="False"/> if not or if we don't know the visible desktop.</returns> public bool IsDesktopVisible(Guid desktop) { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return _currentDesktop == desktop; } /// <summary> /// Returns the number (position) of a desktop. /// </summary> /// <param name="desktop">The guid of the desktop.</param> /// <returns>Number of the desktop, if found. Otherwise a value of zero.</returns> public int GetDesktopNumber(Guid desktop) { if (_desktopListAutoUpdate) { UpdateDesktopList(); } // Adding +1 because index starts with zero and humans start counting with one. return _availableDesktops.IndexOf(desktop) + 1; } /// <summary> /// Returns the name of a desktop /// </summary> /// <param name="desktop">Guid of the desktop</param> /// <returns>Returns the name of the desktop or <see cref="string.Empty"/> on failure.</returns> public string GetDesktopName(Guid desktop) { if (desktop == Guid.Empty || !GetDesktopIdList().Contains(desktop)) { Log.Debug($"VirtualDesktopHelper.GetDesktopName() failed. Parameter contains an invalid desktop guid ({desktop}) that doesn't belongs to an available desktop. Maybe the guid belongs to the generic 'AllDesktops' view.", typeof(VirtualDesktopHelper)); return string.Empty; } // If the desktop name was not changed by the user, it isn't saved to the registry. Then we need the default name for the desktop. var defaultName = string.Format(System.Globalization.CultureInfo.InvariantCulture, Resources.VirtualDesktopHelper_Desktop, GetDesktopNumber(desktop)); string registryPath = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VirtualDesktops\\Desktops\\{" + desktop.ToString().ToUpper(System.Globalization.CultureInfo.InvariantCulture) + "}"; using RegistryKey deskSubKey = Registry.CurrentUser.OpenSubKey(registryPath, false); var desktopName = deskSubKey?.GetValue("Name"); return (desktopName != null) ? (string)desktopName : defaultName; } /// <summary> /// Returns the position type for a desktop. /// </summary> /// <param name="desktop">Guid of the desktop.</param> /// <returns>Type of <see cref="VirtualDesktopPosition"/>. On failure we return <see cref="VirtualDesktopPosition.Unknown"/>.</returns> public VirtualDesktopPosition GetDesktopPositionType(Guid desktop) { int desktopNumber = GetDesktopNumber(desktop); int desktopCount = GetDesktopCount(); if (desktopCount == 0 || desktop == Guid.Empty) { // On failure or empty guid return VirtualDesktopPosition.NotApplicable; } else if (desktopNumber == 1) { return VirtualDesktopPosition.FirstDesktop; } else if (desktopNumber == desktopCount) { return VirtualDesktopPosition.LastDesktop; } else if (desktopNumber > 1 & desktopNumber < desktopCount) { return VirtualDesktopPosition.BetweenOtherDesktops; } else { // All desktops view or a guid that doesn't belong to an existing desktop return VirtualDesktopPosition.NotApplicable; } } /// <summary> /// Returns the desktop id for a window. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktopId">The guid of the desktop, where the window is shown.</param> /// <returns>HResult of the called method as integer.</returns> public int GetWindowDesktopId(IntPtr hWindow, out Guid desktopId) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktopId() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); desktopId = Guid.Empty; return unchecked((int)HRESULT.E_UNEXPECTED); } return _virtualDesktopManager.GetWindowDesktopId(hWindow, out desktopId); } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for the desktop where the window is assigned to. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <returns>An instance of <see cref="VDesktop"/> for the desktop where the window is assigned to, or an empty instance of <see cref="VDesktop"/> on failure.</returns> public VDesktop GetWindowDesktop(IntPtr hWindow) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktop() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return CreateVDesktopInstance(Guid.Empty); } int hr = _virtualDesktopManager.GetWindowDesktopId(hWindow, out Guid desktopId); return (hr != (int)HRESULT.S_OK || desktopId == Guid.Empty) ? VDesktop.Empty : CreateVDesktopInstance(desktopId, hWindow); } /// <summary> /// Returns the desktop assignment type for a window. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns>Type of <see cref="VirtualDesktopAssignmentType"/>.</returns> public VirtualDesktopAssignmentType GetWindowDesktopAssignmentType(IntPtr hWindow, Guid? desktop = null) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktopAssignmentType() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return VirtualDesktopAssignmentType.Unknown; } _ = _virtualDesktopManager.IsWindowOnCurrentVirtualDesktop(hWindow, out int isOnCurrentDesktop); Guid windowDesktopId = desktop ?? Guid.Empty; // Prepare variable in case we have no input parameter for desktop int hResult = desktop is null ? GetWindowDesktopId(hWindow, out windowDesktopId) : 0; if (hResult != (int)HRESULT.S_OK) { return VirtualDesktopAssignmentType.Unknown; } else if (windowDesktopId == Guid.Empty) { return VirtualDesktopAssignmentType.NotAssigned; } else if (isOnCurrentDesktop == 1 && !GetDesktopIdList().Contains(windowDesktopId)) { // These windows are marked as visible on the current desktop, but the desktop id doesn't belongs to an existing desktop. // In this case the desktop id belongs to the generic view 'AllDesktops'. return VirtualDesktopAssignmentType.AllDesktops; } else if (isOnCurrentDesktop == 1) { return VirtualDesktopAssignmentType.CurrentDesktop; } else { return VirtualDesktopAssignmentType.OtherDesktop; } } /// <summary> /// Returns a value indicating if the window is assigned to a currently visible desktop. /// </summary> /// <param name="hWindow">Handle to the top level window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns><see langword="True"/> if the desktop with the window is visible or if the window is assigned to all desktops. <see langword="False"/> if the desktop is not visible and on failure,</returns> public bool IsWindowOnVisibleDesktop(IntPtr hWindow, Guid? desktop = null) { return GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.CurrentDesktop || GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.AllDesktops; } /// <summary> /// Returns a value indicating if the window is cloaked by VirtualDesktopManager. /// (A cloaked window is not visible to the user. But the window is still composed by DWM.) /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns>A value indicating if the window is cloaked by Virtual Desktop Manager, because it is moved to another desktop.</returns> public bool IsWindowCloakedByVirtualDesktopManager(IntPtr hWindow, Guid? desktop = null) { // If a window is hidden because it is moved to another desktop, then DWM returns type "CloakedShell". If DWM returns another type the window is not cloaked by shell or VirtualDesktopManager. _ = NativeMethods.DwmGetWindowAttribute(hWindow, (int)DwmWindowAttributes.Cloaked, out int dwmCloakedState, sizeof(uint)); return GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.OtherDesktop && dwmCloakedState == (int)DwmWindowCloakStates.CloakedShell; } /// <summary> /// Moves the window to a specific desktop. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <param name="desktopId">Guid of the target desktop.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowToDesktop(IntPtr hWindow, in Guid desktopId) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.MoveWindowToDesktop() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return false; } int hr = _virtualDesktopManager.MoveWindowToDesktop(hWindow, desktopId); if (hr != (int)HRESULT.S_OK) { Log.Exception($"VirtualDesktopHelper.MoveWindowToDesktop() failed: An exception was thrown when moving the window ({hWindow}) to another desktop ({desktopId}).", Marshal.GetExceptionForHR(hr), typeof(VirtualDesktopHelper)); return false; } return true; } /// <summary> /// Move a window one desktop left. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowOneDesktopLeft(IntPtr hWindow) { int hr = GetWindowDesktopId(hWindow, out Guid windowDesktop); if (hr != (int)HRESULT.S_OK) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: Can't get current desktop of the window.", typeof(VirtualDesktopHelper)); return false; } if (GetDesktopIdList().Count == 0 || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.Unknown || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.NotAssigned) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: We can't find the target desktop. This can happen if the desktop list is empty or if the window isn't assigned to a specific desktop.", typeof(VirtualDesktopHelper)); return false; } int windowDesktopNumber = GetDesktopIdList().IndexOf(windowDesktop); if (windowDesktopNumber == 1) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: The window is on the first desktop.", typeof(VirtualDesktopHelper)); return false; } Guid newDesktop = _availableDesktops[windowDesktopNumber - 1]; return MoveWindowToDesktop(hWindow, newDesktop); } /// <summary> /// Move a window one desktop right. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowOneDesktopRight(IntPtr hWindow) { int hr = GetWindowDesktopId(hWindow, out Guid windowDesktop); if (hr != (int)HRESULT.S_OK) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: Can't get current desktop of the window.", typeof(VirtualDesktopHelper)); return false; } if (GetDesktopIdList().Count == 0 || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.Unknown || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.NotAssigned) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: We can't find the target desktop. This can happen if the desktop list is empty or if the window isn't assigned to a specific desktop.", typeof(VirtualDesktopHelper)); return false; } int windowDesktopNumber = GetDesktopIdList().IndexOf(windowDesktop); if (windowDesktopNumber == GetDesktopCount()) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: The window is on the last desktop.", typeof(VirtualDesktopHelper)); return false; } Guid newDesktop = _availableDesktops[windowDesktopNumber + 1]; return MoveWindowToDesktop(hWindow, newDesktop); } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for a Guid. /// </summary> /// <param name="desktop">Guid of the desktop.</param> /// <param name="hWindow">Handle of the window shown on the desktop. If this parameter is set we can detect if it is the AllDesktops view.</param> /// <returns>A <see cref="VDesktop"/> instance. If the parameter desktop is <see cref="Guid.Empty"/>, we return an empty <see cref="VDesktop"/> instance.</returns> private VDesktop CreateVDesktopInstance(Guid desktop, IntPtr hWindow = default) { if (desktop == Guid.Empty) { return VDesktop.Empty; } // Can be only detected if method is invoked with window handle parameter. VirtualDesktopAssignmentType desktopType = (hWindow != default) ? GetWindowDesktopAssignmentType(hWindow, desktop) : VirtualDesktopAssignmentType.Unknown; bool isAllDesktops = (hWindow != default) && desktopType == VirtualDesktopAssignmentType.AllDesktops; bool isDesktopVisible = (hWindow != default) ? (isAllDesktops || desktopType == VirtualDesktopAssignmentType.CurrentDesktop) : IsDesktopVisible(desktop); return new VDesktop() { Id = desktop, Name = isAllDesktops ? Resources.VirtualDesktopHelper_AllDesktops : GetDesktopName(desktop), Number = GetDesktopNumber(desktop), IsVisible = isDesktopVisible || isAllDesktops, IsAllDesktopsView = isAllDesktops, Position = GetDesktopPositionType(desktop), }; } } /// <summary> /// Enum to show in which way a window is assigned to a desktop /// </summary> public enum VirtualDesktopAssignmentType { Unknown = -1, NotAssigned = 0, AllDesktops = 1, CurrentDesktop = 2, OtherDesktop = 3, } /// <summary> /// Enum to show the position of a desktop in the list of all desktops /// </summary> public enum VirtualDesktopPosition { FirstDesktop, BetweenOtherDesktops, LastDesktop, NotApplicable, // If not applicable or unknown } }
davidegiacometti
9c1fb53d2a77c8691ecf3a319ebdf72eeba8e4ff
df14a5dbb31f9b0989ef4e92e382023d5f0b3327
## Unrecognized Spelling [Destktop](#security-tab) is not a recognized word. \(unrecognized-spelling\) [Show more details](https://github.com/microsoft/PowerToys/security/code-scanning/71)
github-advanced-security[bot]
166
microsoft/PowerToys
29,890
[Run] Addressed some disposable + VirtualDesktopHelper cleanup
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request `VirtualDesktopHelper` class is heavy used by WindowWalker plugin at every query. I have noticed that some `RegistryKey` weren't properly disposed. I have also cached Terminal Session ID and Windows version since they stay the same during PT execution. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** https://github.com/microsoft/PowerToys/issues/29891 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested PT Run and verified that virtual desktop names are properly displayed on WindowWalker results.
null
2023-11-16 20:56:22+00:00
2023-11-23 16:16:12+00:00
src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VirtualDesktopHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Diagnostics; using System.Runtime.InteropServices; using Microsoft.Win32; using Wox.Plugin.Common.VirtualDesktop.Interop; using Wox.Plugin.Common.Win32; using Wox.Plugin.Logger; using Wox.Plugin.Properties; namespace Wox.Plugin.Common.VirtualDesktop.Helper { /// <summary> /// Helper class to work with Virtual Desktops. /// This helper uses only public available and documented COM-Interfaces or information from registry. /// </summary> /// <remarks> /// To use this helper you have to create an instance of it and access the method via the helper instance. /// We are only allowed to use public documented com interfaces. /// </remarks> /// <SeeAlso href="https://learn.microsoft.com/windows/win32/api/shobjidl_core/nn-shobjidl_core-ivirtualdesktopmanager">Documentation of IVirtualDesktopManager interface</SeeAlso> /// <SeeAlso href="https://learn.microsoft.com/archive/blogs/winsdk/virtual-desktop-switching-in-windows-10">CSharp example code for IVirtualDesktopManager</SeeAlso> public class VirtualDesktopHelper { /// <summary> /// Are we running on Windows 11 /// </summary> private static readonly bool _IsWindowsEleven = IsWindowsElevenOrLater(); /// <summary> /// Instance of "Virtual Desktop Manager" /// </summary> private readonly IVirtualDesktopManager _virtualDesktopManager; /// <summary> /// Internal settings to enable automatic update of desktop list. /// This will be off by default to avoid to many registry queries. /// </summary> private readonly bool _desktopListAutoUpdate; /// <summary> /// List of all available Virtual Desktop in their real order /// The order and list in the registry is always up to date /// </summary> private List<Guid> availableDesktops = new List<Guid>(); /// <summary> /// Id of the current visible Desktop. /// </summary> private Guid currentDesktop; /// <summary> /// Initializes a new instance of the <see cref="VirtualDesktopHelper"/> class. /// </summary> /// <param name="desktopListUpdate">Setting to configure if the list of available desktops should update automatically or only when calling <see cref="UpdateDesktopList"/>. Per default this is set to manual update (false) to have less registry queries.</param> public VirtualDesktopHelper(bool desktopListUpdate = false) { try { _virtualDesktopManager = (IVirtualDesktopManager)new CVirtualDesktopManager(); } catch (COMException ex) { Log.Exception("Initialization of <VirtualDesktopHelper> failed: An exception was thrown when creating the instance of COM interface <IVirtualDesktopManager>.", ex, typeof(VirtualDesktopHelper)); return; } _desktopListAutoUpdate = desktopListUpdate; UpdateDesktopList(); } /// <summary> /// Gets a value indicating whether the Virtual Desktop Manager is initialized successfully /// </summary> public bool VirtualDesktopManagerInitialized { get { return _virtualDesktopManager != null; } } /// <summary> /// Method to update the list of Virtual Desktops from Registry /// The data in the registry are always up to date /// </summary> /// <remarks>If we can not read from registry, we set the list/guid to empty values.</remarks> public void UpdateDesktopList() { // Registry paths int userSessionId = Process.GetCurrentProcess().SessionId; string registrySessionVirtualDesktops = $"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\{userSessionId}\\VirtualDesktops"; string registryExplorerVirtualDesktops = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VirtualDesktops"; // List of all desktops byte[] allDeskValue = (byte[])Registry.CurrentUser.OpenSubKey(registryExplorerVirtualDesktops, false)?.GetValue("VirtualDesktopIDs", null); if (allDeskValue != null) { // We clear only, if we can read from registry. Otherwise we keep the existing values. availableDesktops.Clear(); // Each guid has a length of 16 elements int numberOfDesktops = allDeskValue.Length / 16; for (int i = 0; i < numberOfDesktops; i++) { byte[] guidArray = new byte[16]; Array.ConstrainedCopy(allDeskValue, i * 16, guidArray, 0, 16); availableDesktops.Add(new Guid(guidArray)); } } else { Log.Debug("VirtualDesktopHelper.UpdateDesktopList() failed to read the list of existing desktops form registry.", typeof(VirtualDesktopHelper)); } // Guid for current desktop var currentDeskSessionValue = Registry.CurrentUser.OpenSubKey(registrySessionVirtualDesktops, false)?.GetValue("CurrentVirtualDesktop", null); // Windows 10 var currentDeskExplorerValue = Registry.CurrentUser.OpenSubKey(registryExplorerVirtualDesktops, false)?.GetValue("CurrentVirtualDesktop", null); // Windows 11 var currentDeskValue = _IsWindowsEleven ? currentDeskExplorerValue : currentDeskSessionValue; if (currentDeskValue != null) { currentDesktop = new Guid((byte[])currentDeskValue); } else { // The registry value is missing when the user hasn't switched the desktop at least one time before reading the registry. In this case we can set it to desktop one. // We can only set it to desktop one, if we have at least one desktop in the desktops list. Otherwise we keep the existing value. Log.Debug("VirtualDesktopHelper.UpdateDesktopList() failed to read the id for the current desktop form registry.", typeof(VirtualDesktopHelper)); currentDesktop = availableDesktops.Count >= 1 ? availableDesktops[0] : currentDesktop; } } /// <summary> /// Returns an ordered list with the ids of all existing desktops. The list is ordered in the same way as the existing desktops. /// </summary> /// <returns>List of desktop ids or an empty list on failure.</returns> public List<Guid> GetDesktopIdList() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return availableDesktops; } /// <summary> /// Returns an ordered list with of all existing desktops and their properties. The list is ordered in the same way as the existing desktops. /// </summary> /// <returns>List of desktops or an empty list on failure.</returns> public List<VDesktop> GetDesktopList() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } List<VDesktop> list = new List<VDesktop>(); foreach (Guid d in availableDesktops) { list.Add(CreateVDesktopInstance(d)); } return list; } /// <summary> /// Returns the count of existing desktops /// </summary> /// <returns>Number of existing desktops or zero on failure.</returns> public int GetDesktopCount() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return availableDesktops.Count; } /// <summary> /// Returns the id of the desktop that is currently visible to the user. /// </summary> /// <returns>The <see cref="Guid"/> of the current desktop. Or <see cref="Guid.Empty"/> on failure and if we don't know the current desktop.</returns> public Guid GetCurrentDesktopId() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return currentDesktop; } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for the desktop that is currently visible to the user. /// </summary> /// <returns>An instance of <see cref="VDesktop"/> for the current desktop, or an empty instance of <see cref="VDesktop"/> on failure.</returns> public VDesktop GetCurrentDesktop() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return CreateVDesktopInstance(currentDesktop); } /// <summary> /// Checks if a desktop is currently visible to the user. /// </summary> /// <param name="desktop">The guid of the desktop to check.</param> /// <returns><see langword="True"/> if the guid belongs to the currently visible desktop. <see langword="False"/> if not or if we don't know the visible desktop.</returns> public bool IsDesktopVisible(Guid desktop) { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return currentDesktop == desktop; } /// <summary> /// Returns the number (position) of a desktop. /// </summary> /// <param name="desktop">The guid of the desktop.</param> /// <returns>Number of the desktop, if found. Otherwise a value of zero.</returns> public int GetDesktopNumber(Guid desktop) { if (_desktopListAutoUpdate) { UpdateDesktopList(); } // Adding +1 because index starts with zero and humans start counting with one. return availableDesktops.IndexOf(desktop) + 1; } /// <summary> /// Returns the name of a desktop /// </summary> /// <param name="desktop">Guid of the desktop</param> /// <returns>Returns the name of the desktop or <see cref="string.Empty"/> on failure.</returns> public string GetDesktopName(Guid desktop) { if (desktop == Guid.Empty || !GetDesktopIdList().Contains(desktop)) { Log.Debug($"VirtualDesktopHelper.GetDesktopName() failed. Parameter contains an invalid desktop guid ({desktop}) that doesn't belongs to an available desktop. Maybe the guid belongs to the generic 'AllDesktops' view.", typeof(VirtualDesktopHelper)); return string.Empty; } // If the desktop name was not changed by the user, it isn't saved to the registry. Then we need the default name for the desktop. var defaultName = string.Format(System.Globalization.CultureInfo.InvariantCulture, Resources.VirtualDesktopHelper_Desktop, GetDesktopNumber(desktop)); string registryPath = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VirtualDesktops\\Desktops\\{" + desktop.ToString().ToUpper(System.Globalization.CultureInfo.InvariantCulture) + "}"; RegistryKey deskSubKey = Registry.CurrentUser.OpenSubKey(registryPath, false); var desktopName = deskSubKey?.GetValue("Name"); return (desktopName != null) ? (string)desktopName : defaultName; } /// <summary> /// Returns the position type for a desktop. /// </summary> /// <param name="desktop">Guid of the desktop.</param> /// <returns>Type of <see cref="VirtualDesktopPosition"/>. On failure we return <see cref="VirtualDesktopPosition.Unknown"/>.</returns> public VirtualDesktopPosition GetDesktopPositionType(Guid desktop) { int desktopNumber = GetDesktopNumber(desktop); int desktopCount = GetDesktopCount(); if (desktopCount == 0 || desktop == Guid.Empty) { // On failure or empty guid return VirtualDesktopPosition.NotApplicable; } else if (desktopNumber == 1) { return VirtualDesktopPosition.FirstDesktop; } else if (desktopNumber == desktopCount) { return VirtualDesktopPosition.LastDesktop; } else if (desktopNumber > 1 & desktopNumber < desktopCount) { return VirtualDesktopPosition.BetweenOtherDesktops; } else { // All desktops view or a guid that doesn't belong to an existing desktop return VirtualDesktopPosition.NotApplicable; } } /// <summary> /// Returns the desktop id for a window. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktopId">The guid of the desktop, where the window is shown.</param> /// <returns>HResult of the called method as integer.</returns> public int GetWindowDesktopId(IntPtr hWindow, out Guid desktopId) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktopId() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); desktopId = Guid.Empty; return unchecked((int)HRESULT.E_UNEXPECTED); } return _virtualDesktopManager.GetWindowDesktopId(hWindow, out desktopId); } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for the desktop where the window is assigned to. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <returns>An instance of <see cref="VDesktop"/> for the desktop where the window is assigned to, or an empty instance of <see cref="VDesktop"/> on failure.</returns> public VDesktop GetWindowDesktop(IntPtr hWindow) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktop() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return CreateVDesktopInstance(Guid.Empty); } int hr = _virtualDesktopManager.GetWindowDesktopId(hWindow, out Guid desktopId); return (hr != (int)HRESULT.S_OK || desktopId == Guid.Empty) ? VDesktop.Empty : CreateVDesktopInstance(desktopId, hWindow); } /// <summary> /// Returns the desktop assignment type for a window. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns>Type of <see cref="VirtualDesktopAssignmentType"/>.</returns> public VirtualDesktopAssignmentType GetWindowDesktopAssignmentType(IntPtr hWindow, Guid? desktop = null) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktopAssignmentType() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return VirtualDesktopAssignmentType.Unknown; } _ = _virtualDesktopManager.IsWindowOnCurrentVirtualDesktop(hWindow, out int isOnCurrentDesktop); Guid windowDesktopId = desktop ?? Guid.Empty; // Prepare variable in case we have no input parameter for desktop int hResult = desktop is null ? GetWindowDesktopId(hWindow, out windowDesktopId) : 0; if (hResult != (int)HRESULT.S_OK) { return VirtualDesktopAssignmentType.Unknown; } else if (windowDesktopId == Guid.Empty) { return VirtualDesktopAssignmentType.NotAssigned; } else if (isOnCurrentDesktop == 1 && !GetDesktopIdList().Contains(windowDesktopId)) { // These windows are marked as visible on the current desktop, but the desktop id doesn't belongs to an existing desktop. // In this case the desktop id belongs to the generic view 'AllDesktops'. return VirtualDesktopAssignmentType.AllDesktops; } else if (isOnCurrentDesktop == 1) { return VirtualDesktopAssignmentType.CurrentDesktop; } else { return VirtualDesktopAssignmentType.OtherDesktop; } } /// <summary> /// Returns a value indicating if the window is assigned to a currently visible desktop. /// </summary> /// <param name="hWindow">Handle to the top level window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns><see langword="True"/> if the desktop with the window is visible or if the window is assigned to all desktops. <see langword="False"/> if the desktop is not visible and on failure,</returns> public bool IsWindowOnVisibleDesktop(IntPtr hWindow, Guid? desktop = null) { return GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.CurrentDesktop || GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.AllDesktops; } /// <summary> /// Returns a value indicating if the window is cloaked by VirtualDesktopManager. /// (A cloaked window is not visible to the user. But the window is still composed by DWM.) /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns>A value indicating if the window is cloaked by Virtual Desktop Manager, because it is moved to another desktop.</returns> public bool IsWindowCloakedByVirtualDesktopManager(IntPtr hWindow, Guid? desktop = null) { // If a window is hidden because it is moved to another desktop, then DWM returns type "CloakedShell". If DWM returns another type the window is not cloaked by shell or VirtualDesktopManager. _ = NativeMethods.DwmGetWindowAttribute(hWindow, (int)DwmWindowAttributes.Cloaked, out int dwmCloakedState, sizeof(uint)); return GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.OtherDesktop && dwmCloakedState == (int)DwmWindowCloakStates.CloakedShell; } /// <summary> /// Moves the window to a specific desktop. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <param name="desktopId">Guid of the target desktop.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowToDesktop(IntPtr hWindow, in Guid desktopId) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.MoveWindowToDesktop() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return false; } int hr = _virtualDesktopManager.MoveWindowToDesktop(hWindow, desktopId); if (hr != (int)HRESULT.S_OK) { Log.Exception($"VirtualDesktopHelper.MoveWindowToDesktop() failed: An exception was thrown when moving the window ({hWindow}) to another desktop ({desktopId}).", Marshal.GetExceptionForHR(hr), typeof(VirtualDesktopHelper)); return false; } return true; } /// <summary> /// Move a window one desktop left. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowOneDesktopLeft(IntPtr hWindow) { int hr = GetWindowDesktopId(hWindow, out Guid windowDesktop); if (hr != (int)HRESULT.S_OK) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: Can't get current desktop of the window.", typeof(VirtualDesktopHelper)); return false; } if (GetDesktopIdList().Count == 0 || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.Unknown || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.NotAssigned) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: We can't find the target desktop. This can happen if the desktop list is empty or if the window isn't assigned to a specific desktop.", typeof(VirtualDesktopHelper)); return false; } int windowDesktopNumber = GetDesktopIdList().IndexOf(windowDesktop); if (windowDesktopNumber == 1) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: The window is on the first desktop.", typeof(VirtualDesktopHelper)); return false; } Guid newDesktop = availableDesktops[windowDesktopNumber - 1]; return MoveWindowToDesktop(hWindow, newDesktop); } /// <summary> /// Move a window one desktop right. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowOneDesktopRight(IntPtr hWindow) { int hr = GetWindowDesktopId(hWindow, out Guid windowDesktop); if (hr != (int)HRESULT.S_OK) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: Can't get current desktop of the window.", typeof(VirtualDesktopHelper)); return false; } if (GetDesktopIdList().Count == 0 || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.Unknown || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.NotAssigned) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: We can't find the target desktop. This can happen if the desktop list is empty or if the window isn't assigned to a specific desktop.", typeof(VirtualDesktopHelper)); return false; } int windowDesktopNumber = GetDesktopIdList().IndexOf(windowDesktop); if (windowDesktopNumber == GetDesktopCount()) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: The window is on the last desktop.", typeof(VirtualDesktopHelper)); return false; } Guid newDesktop = availableDesktops[windowDesktopNumber + 1]; return MoveWindowToDesktop(hWindow, newDesktop); } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for a Guid. /// </summary> /// <param name="desktop">Guid of the desktop.</param> /// <param name="hWindow">Handle of the window shown on the desktop. If this parameter is set we can detect if it is the AllDesktops view.</param> /// <returns>A <see cref="VDesktop"/> instance. If the parameter desktop is <see cref="Guid.Empty"/>, we return an empty <see cref="VDesktop"/> instance.</returns> private VDesktop CreateVDesktopInstance(Guid desktop, IntPtr hWindow = default) { if (desktop == Guid.Empty) { return VDesktop.Empty; } // Can be only detected if method is invoked with window handle parameter. VirtualDesktopAssignmentType desktopType = (hWindow != default) ? GetWindowDesktopAssignmentType(hWindow, desktop) : VirtualDesktopAssignmentType.Unknown; bool isAllDesktops = (hWindow != default) && desktopType == VirtualDesktopAssignmentType.AllDesktops; bool isDesktopVisible = (hWindow != default) ? (isAllDesktops || desktopType == VirtualDesktopAssignmentType.CurrentDesktop) : IsDesktopVisible(desktop); return new VDesktop() { Id = desktop, Name = isAllDesktops ? Resources.VirtualDesktopHelper_AllDesktops : GetDesktopName(desktop), Number = GetDesktopNumber(desktop), IsVisible = isDesktopVisible || isAllDesktops, IsAllDesktopsView = isAllDesktops, Position = GetDesktopPositionType(desktop), }; } /// <summary> /// Check if we running on Windows 11 or later. /// </summary> /// <returns><see langword="True"/> if yes and <see langword="false"/> if no.</returns> private static bool IsWindowsElevenOrLater() { var currentBuildString = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", false)?.GetValue("CurrentBuild", null) ?? uint.MinValue; uint currentBuild = uint.TryParse(currentBuildString as string, out var build) ? build : uint.MinValue; var currentBuildNumberString = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", false)?.GetValue("CurrentBuildNumber", null) ?? uint.MinValue; uint currentBuildNumber = uint.TryParse(currentBuildNumberString as string, out var buildNumber) ? buildNumber : uint.MinValue; uint currentWindowsBuild = currentBuild != uint.MinValue ? currentBuild : currentBuildNumber; return currentWindowsBuild >= 22000; } } /// <summary> /// Enum to show in which way a window is assigned to a desktop /// </summary> public enum VirtualDesktopAssignmentType { Unknown = -1, NotAssigned = 0, AllDesktops = 1, CurrentDesktop = 2, OtherDesktop = 3, } /// <summary> /// Enum to show the position of a desktop in the list of all desktops /// </summary> public enum VirtualDesktopPosition { FirstDesktop, BetweenOtherDesktops, LastDesktop, NotApplicable, // If not applicable or unknown } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Diagnostics; using System.Runtime.InteropServices; using Common.UI; using Microsoft.Win32; using Wox.Plugin.Common.VirtualDesktop.Interop; using Wox.Plugin.Common.Win32; using Wox.Plugin.Logger; using Wox.Plugin.Properties; namespace Wox.Plugin.Common.VirtualDesktop.Helper { /// <summary> /// Helper class to work with Virtual Desktops. /// This helper uses only public available and documented COM-Interfaces or information from registry. /// </summary> /// <remarks> /// To use this helper you have to create an instance of it and access the method via the helper instance. /// We are only allowed to use public documented com interfaces. /// </remarks> /// <SeeAlso href="https://learn.microsoft.com/windows/win32/api/shobjidl_core/nn-shobjidl_core-ivirtualdesktopmanager">Documentation of IVirtualDesktopManager interface</SeeAlso> /// <SeeAlso href="https://learn.microsoft.com/archive/blogs/winsdk/virtual-desktop-switching-in-windows-10">CSharp example code for IVirtualDesktopManager</SeeAlso> public class VirtualDesktopHelper { /// <summary> /// Are we running on Windows 11 /// </summary> private readonly bool _isWindowsEleven; /// <summary> /// Instance of "Virtual Desktop Manager" /// </summary> private readonly IVirtualDesktopManager _virtualDesktopManager; /// <summary> /// Internal settings to enable automatic update of desktop list. /// This will be off by default to avoid to many registry queries. /// </summary> private readonly bool _desktopListAutoUpdate; /// <summary> /// List of all available Virtual Desktop in their real order /// The order and list in the registry is always up to date /// </summary> private List<Guid> _availableDesktops = new List<Guid>(); /// <summary> /// Id of the current visible Desktop. /// </summary> private Guid _currentDesktop; /// <summary> /// Initializes a new instance of the <see cref="VirtualDesktopHelper"/> class. /// </summary> /// <param name="desktopListUpdate">Setting to configure if the list of available desktops should update automatically or only when calling <see cref="UpdateDesktopList"/>. Per default this is set to manual update (false) to have less registry queries.</param> public VirtualDesktopHelper(bool desktopListUpdate = false) { try { _virtualDesktopManager = (IVirtualDesktopManager)new CVirtualDesktopManager(); } catch (COMException ex) { Log.Exception("Initialization of <VirtualDesktopHelper> failed: An exception was thrown when creating the instance of COM interface <IVirtualDesktopManager>.", ex, typeof(VirtualDesktopHelper)); return; } _isWindowsEleven = OSVersionHelper.IsWindows11(); _desktopListAutoUpdate = desktopListUpdate; UpdateDesktopList(); } /// <summary> /// Gets a value indicating whether the Virtual Desktop Manager is initialized successfully /// </summary> public bool VirtualDesktopManagerInitialized { get { return _virtualDesktopManager != null; } } /// <summary> /// Method to update the list of Virtual Desktops from Registry /// The data in the registry are always up to date /// </summary> /// <remarks>If we can not read from registry, we set the list/guid to empty values.</remarks> public void UpdateDesktopList() { int userSessionId = Process.GetCurrentProcess().SessionId; string registrySessionVirtualDesktops = $"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\{userSessionId}\\VirtualDesktops"; // Windows 10 string registryExplorerVirtualDesktops = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VirtualDesktops"; // Windows 11 // List of all desktops using RegistryKey virtualDesktopKey = Registry.CurrentUser.OpenSubKey(registryExplorerVirtualDesktops, false); if (virtualDesktopKey != null) { byte[] allDeskValue = (byte[])virtualDesktopKey.GetValue("VirtualDesktopIDs", null); if (allDeskValue != null) { // We clear only, if we can read from registry. Otherwise we keep the existing values. _availableDesktops.Clear(); // Each guid has a length of 16 elements int numberOfDesktops = allDeskValue.Length / 16; for (int i = 0; i < numberOfDesktops; i++) { byte[] guidArray = new byte[16]; Array.ConstrainedCopy(allDeskValue, i * 16, guidArray, 0, 16); _availableDesktops.Add(new Guid(guidArray)); } } else { Log.Debug("VirtualDesktopHelper.UpdateDesktopList() failed to read the list of existing desktops form registry.", typeof(VirtualDesktopHelper)); } } // Guid for current desktop var virtualDesktopsKeyName = _isWindowsEleven ? registryExplorerVirtualDesktops : registrySessionVirtualDesktops; using RegistryKey virtualDesktopsKey = Registry.CurrentUser.OpenSubKey(virtualDesktopsKeyName, false); if (virtualDesktopsKey != null) { var currentVirtualDesktopValue = virtualDesktopsKey.GetValue("CurrentVirtualDesktop", null); if (currentVirtualDesktopValue != null) { _currentDesktop = new Guid((byte[])currentVirtualDesktopValue); } else { // The registry value is missing when the user hasn't switched the desktop at least one time before reading the registry. In this case we can set it to desktop one. // We can only set it to desktop one, if we have at least one desktop in the desktops list. Otherwise we keep the existing value. Log.Debug("VirtualDesktopHelper.UpdateDesktopList() failed to read the id for the current desktop form registry.", typeof(VirtualDesktopHelper)); _currentDesktop = _availableDesktops.Count >= 1 ? _availableDesktops[0] : _currentDesktop; } } } /// <summary> /// Returns an ordered list with the ids of all existing desktops. The list is ordered in the same way as the existing desktops. /// </summary> /// <returns>List of desktop ids or an empty list on failure.</returns> public List<Guid> GetDesktopIdList() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return _availableDesktops; } /// <summary> /// Returns an ordered list with of all existing desktops and their properties. The list is ordered in the same way as the existing desktops. /// </summary> /// <returns>List of desktops or an empty list on failure.</returns> public List<VDesktop> GetDesktopList() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } List<VDesktop> list = new List<VDesktop>(); foreach (Guid d in _availableDesktops) { list.Add(CreateVDesktopInstance(d)); } return list; } /// <summary> /// Returns the count of existing desktops /// </summary> /// <returns>Number of existing desktops or zero on failure.</returns> public int GetDesktopCount() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return _availableDesktops.Count; } /// <summary> /// Returns the id of the desktop that is currently visible to the user. /// </summary> /// <returns>The <see cref="Guid"/> of the current desktop. Or <see cref="Guid.Empty"/> on failure and if we don't know the current desktop.</returns> public Guid GetCurrentDesktopId() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return _currentDesktop; } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for the desktop that is currently visible to the user. /// </summary> /// <returns>An instance of <see cref="VDesktop"/> for the current desktop, or an empty instance of <see cref="VDesktop"/> on failure.</returns> public VDesktop GetCurrentDesktop() { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return CreateVDesktopInstance(_currentDesktop); } /// <summary> /// Checks if a desktop is currently visible to the user. /// </summary> /// <param name="desktop">The guid of the desktop to check.</param> /// <returns><see langword="True"/> if the guid belongs to the currently visible desktop. <see langword="False"/> if not or if we don't know the visible desktop.</returns> public bool IsDesktopVisible(Guid desktop) { if (_desktopListAutoUpdate) { UpdateDesktopList(); } return _currentDesktop == desktop; } /// <summary> /// Returns the number (position) of a desktop. /// </summary> /// <param name="desktop">The guid of the desktop.</param> /// <returns>Number of the desktop, if found. Otherwise a value of zero.</returns> public int GetDesktopNumber(Guid desktop) { if (_desktopListAutoUpdate) { UpdateDesktopList(); } // Adding +1 because index starts with zero and humans start counting with one. return _availableDesktops.IndexOf(desktop) + 1; } /// <summary> /// Returns the name of a desktop /// </summary> /// <param name="desktop">Guid of the desktop</param> /// <returns>Returns the name of the desktop or <see cref="string.Empty"/> on failure.</returns> public string GetDesktopName(Guid desktop) { if (desktop == Guid.Empty || !GetDesktopIdList().Contains(desktop)) { Log.Debug($"VirtualDesktopHelper.GetDesktopName() failed. Parameter contains an invalid desktop guid ({desktop}) that doesn't belongs to an available desktop. Maybe the guid belongs to the generic 'AllDesktops' view.", typeof(VirtualDesktopHelper)); return string.Empty; } // If the desktop name was not changed by the user, it isn't saved to the registry. Then we need the default name for the desktop. var defaultName = string.Format(System.Globalization.CultureInfo.InvariantCulture, Resources.VirtualDesktopHelper_Desktop, GetDesktopNumber(desktop)); string registryPath = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VirtualDesktops\\Desktops\\{" + desktop.ToString().ToUpper(System.Globalization.CultureInfo.InvariantCulture) + "}"; using RegistryKey deskSubKey = Registry.CurrentUser.OpenSubKey(registryPath, false); var desktopName = deskSubKey?.GetValue("Name"); return (desktopName != null) ? (string)desktopName : defaultName; } /// <summary> /// Returns the position type for a desktop. /// </summary> /// <param name="desktop">Guid of the desktop.</param> /// <returns>Type of <see cref="VirtualDesktopPosition"/>. On failure we return <see cref="VirtualDesktopPosition.Unknown"/>.</returns> public VirtualDesktopPosition GetDesktopPositionType(Guid desktop) { int desktopNumber = GetDesktopNumber(desktop); int desktopCount = GetDesktopCount(); if (desktopCount == 0 || desktop == Guid.Empty) { // On failure or empty guid return VirtualDesktopPosition.NotApplicable; } else if (desktopNumber == 1) { return VirtualDesktopPosition.FirstDesktop; } else if (desktopNumber == desktopCount) { return VirtualDesktopPosition.LastDesktop; } else if (desktopNumber > 1 & desktopNumber < desktopCount) { return VirtualDesktopPosition.BetweenOtherDesktops; } else { // All desktops view or a guid that doesn't belong to an existing desktop return VirtualDesktopPosition.NotApplicable; } } /// <summary> /// Returns the desktop id for a window. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktopId">The guid of the desktop, where the window is shown.</param> /// <returns>HResult of the called method as integer.</returns> public int GetWindowDesktopId(IntPtr hWindow, out Guid desktopId) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktopId() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); desktopId = Guid.Empty; return unchecked((int)HRESULT.E_UNEXPECTED); } return _virtualDesktopManager.GetWindowDesktopId(hWindow, out desktopId); } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for the desktop where the window is assigned to. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <returns>An instance of <see cref="VDesktop"/> for the desktop where the window is assigned to, or an empty instance of <see cref="VDesktop"/> on failure.</returns> public VDesktop GetWindowDesktop(IntPtr hWindow) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktop() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return CreateVDesktopInstance(Guid.Empty); } int hr = _virtualDesktopManager.GetWindowDesktopId(hWindow, out Guid desktopId); return (hr != (int)HRESULT.S_OK || desktopId == Guid.Empty) ? VDesktop.Empty : CreateVDesktopInstance(desktopId, hWindow); } /// <summary> /// Returns the desktop assignment type for a window. /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns>Type of <see cref="VirtualDesktopAssignmentType"/>.</returns> public VirtualDesktopAssignmentType GetWindowDesktopAssignmentType(IntPtr hWindow, Guid? desktop = null) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.GetWindowDesktopAssignmentType() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return VirtualDesktopAssignmentType.Unknown; } _ = _virtualDesktopManager.IsWindowOnCurrentVirtualDesktop(hWindow, out int isOnCurrentDesktop); Guid windowDesktopId = desktop ?? Guid.Empty; // Prepare variable in case we have no input parameter for desktop int hResult = desktop is null ? GetWindowDesktopId(hWindow, out windowDesktopId) : 0; if (hResult != (int)HRESULT.S_OK) { return VirtualDesktopAssignmentType.Unknown; } else if (windowDesktopId == Guid.Empty) { return VirtualDesktopAssignmentType.NotAssigned; } else if (isOnCurrentDesktop == 1 && !GetDesktopIdList().Contains(windowDesktopId)) { // These windows are marked as visible on the current desktop, but the desktop id doesn't belongs to an existing desktop. // In this case the desktop id belongs to the generic view 'AllDesktops'. return VirtualDesktopAssignmentType.AllDesktops; } else if (isOnCurrentDesktop == 1) { return VirtualDesktopAssignmentType.CurrentDesktop; } else { return VirtualDesktopAssignmentType.OtherDesktop; } } /// <summary> /// Returns a value indicating if the window is assigned to a currently visible desktop. /// </summary> /// <param name="hWindow">Handle to the top level window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns><see langword="True"/> if the desktop with the window is visible or if the window is assigned to all desktops. <see langword="False"/> if the desktop is not visible and on failure,</returns> public bool IsWindowOnVisibleDesktop(IntPtr hWindow, Guid? desktop = null) { return GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.CurrentDesktop || GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.AllDesktops; } /// <summary> /// Returns a value indicating if the window is cloaked by VirtualDesktopManager. /// (A cloaked window is not visible to the user. But the window is still composed by DWM.) /// </summary> /// <param name="hWindow">Handle of the window.</param> /// <param name="desktop">Optional the desktop id if known</param> /// <returns>A value indicating if the window is cloaked by Virtual Desktop Manager, because it is moved to another desktop.</returns> public bool IsWindowCloakedByVirtualDesktopManager(IntPtr hWindow, Guid? desktop = null) { // If a window is hidden because it is moved to another desktop, then DWM returns type "CloakedShell". If DWM returns another type the window is not cloaked by shell or VirtualDesktopManager. _ = NativeMethods.DwmGetWindowAttribute(hWindow, (int)DwmWindowAttributes.Cloaked, out int dwmCloakedState, sizeof(uint)); return GetWindowDesktopAssignmentType(hWindow, desktop) == VirtualDesktopAssignmentType.OtherDesktop && dwmCloakedState == (int)DwmWindowCloakStates.CloakedShell; } /// <summary> /// Moves the window to a specific desktop. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <param name="desktopId">Guid of the target desktop.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowToDesktop(IntPtr hWindow, in Guid desktopId) { if (_virtualDesktopManager == null) { Log.Error("VirtualDesktopHelper.MoveWindowToDesktop() failed: The instance of <IVirtualDesktopHelper> isn't available.", typeof(VirtualDesktopHelper)); return false; } int hr = _virtualDesktopManager.MoveWindowToDesktop(hWindow, desktopId); if (hr != (int)HRESULT.S_OK) { Log.Exception($"VirtualDesktopHelper.MoveWindowToDesktop() failed: An exception was thrown when moving the window ({hWindow}) to another desktop ({desktopId}).", Marshal.GetExceptionForHR(hr), typeof(VirtualDesktopHelper)); return false; } return true; } /// <summary> /// Move a window one desktop left. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowOneDesktopLeft(IntPtr hWindow) { int hr = GetWindowDesktopId(hWindow, out Guid windowDesktop); if (hr != (int)HRESULT.S_OK) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: Can't get current desktop of the window.", typeof(VirtualDesktopHelper)); return false; } if (GetDesktopIdList().Count == 0 || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.Unknown || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.NotAssigned) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: We can't find the target desktop. This can happen if the desktop list is empty or if the window isn't assigned to a specific desktop.", typeof(VirtualDesktopHelper)); return false; } int windowDesktopNumber = GetDesktopIdList().IndexOf(windowDesktop); if (windowDesktopNumber == 1) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopLeft() failed when moving the window ({hWindow}) one desktop left: The window is on the first desktop.", typeof(VirtualDesktopHelper)); return false; } Guid newDesktop = _availableDesktops[windowDesktopNumber - 1]; return MoveWindowToDesktop(hWindow, newDesktop); } /// <summary> /// Move a window one desktop right. /// </summary> /// <param name="hWindow">Handle of the top level window.</param> /// <returns><see langword="True"/> on success and <see langword="false"/> on failure.</returns> public bool MoveWindowOneDesktopRight(IntPtr hWindow) { int hr = GetWindowDesktopId(hWindow, out Guid windowDesktop); if (hr != (int)HRESULT.S_OK) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: Can't get current desktop of the window.", typeof(VirtualDesktopHelper)); return false; } if (GetDesktopIdList().Count == 0 || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.Unknown || GetWindowDesktopAssignmentType(hWindow, windowDesktop) == VirtualDesktopAssignmentType.NotAssigned) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: We can't find the target desktop. This can happen if the desktop list is empty or if the window isn't assigned to a specific desktop.", typeof(VirtualDesktopHelper)); return false; } int windowDesktopNumber = GetDesktopIdList().IndexOf(windowDesktop); if (windowDesktopNumber == GetDesktopCount()) { Log.Error($"VirtualDesktopHelper.MoveWindowOneDesktopRight() failed when moving the window ({hWindow}) one desktop right: The window is on the last desktop.", typeof(VirtualDesktopHelper)); return false; } Guid newDesktop = _availableDesktops[windowDesktopNumber + 1]; return MoveWindowToDesktop(hWindow, newDesktop); } /// <summary> /// Returns an instance of <see cref="VDesktop"/> for a Guid. /// </summary> /// <param name="desktop">Guid of the desktop.</param> /// <param name="hWindow">Handle of the window shown on the desktop. If this parameter is set we can detect if it is the AllDesktops view.</param> /// <returns>A <see cref="VDesktop"/> instance. If the parameter desktop is <see cref="Guid.Empty"/>, we return an empty <see cref="VDesktop"/> instance.</returns> private VDesktop CreateVDesktopInstance(Guid desktop, IntPtr hWindow = default) { if (desktop == Guid.Empty) { return VDesktop.Empty; } // Can be only detected if method is invoked with window handle parameter. VirtualDesktopAssignmentType desktopType = (hWindow != default) ? GetWindowDesktopAssignmentType(hWindow, desktop) : VirtualDesktopAssignmentType.Unknown; bool isAllDesktops = (hWindow != default) && desktopType == VirtualDesktopAssignmentType.AllDesktops; bool isDesktopVisible = (hWindow != default) ? (isAllDesktops || desktopType == VirtualDesktopAssignmentType.CurrentDesktop) : IsDesktopVisible(desktop); return new VDesktop() { Id = desktop, Name = isAllDesktops ? Resources.VirtualDesktopHelper_AllDesktops : GetDesktopName(desktop), Number = GetDesktopNumber(desktop), IsVisible = isDesktopVisible || isAllDesktops, IsAllDesktopsView = isAllDesktops, Position = GetDesktopPositionType(desktop), }; } } /// <summary> /// Enum to show in which way a window is assigned to a desktop /// </summary> public enum VirtualDesktopAssignmentType { Unknown = -1, NotAssigned = 0, AllDesktops = 1, CurrentDesktop = 2, OtherDesktop = 3, } /// <summary> /// Enum to show the position of a desktop in the list of all desktops /// </summary> public enum VirtualDesktopPosition { FirstDesktop, BetweenOtherDesktops, LastDesktop, NotApplicable, // If not applicable or unknown } }
davidegiacometti
9c1fb53d2a77c8691ecf3a319ebdf72eeba8e4ff
df14a5dbb31f9b0989ef4e92e382023d5f0b3327
## Unrecognized Spelling [Destktop](#security-tab) is not a recognized word. \(unrecognized-spelling\) [Show more details](https://github.com/microsoft/PowerToys/security/code-scanning/72)
github-advanced-security[bot]
167
microsoft/PowerToys
29,861
[Text Extractor] Localization and light theme support
## Summary of the Pull Request This PR introduces the following changes: - Updated `WpfUi` to `preview-9` - Added light theme support - Tweaked the UI so it's according to Fluent Design principles - Added localization for tooltips and context menu Before: ![image](https://github.com/microsoft/PowerToys/assets/9866362/f2276ad8-d3de-4aab-a6ed-b38bf1cf1b28) After (dark + light) ![image](https://github.com/microsoft/PowerToys/assets/9866362/ebd1d378-0ac2-4674-ac5b-a86b1c443d3e) ![image](https://github.com/microsoft/PowerToys/assets/9866362/87b92ba4-d995-4d5d-8b60-11666a583a1e) ## PR Checklist - [x] **Closes:** #29845, #29627, #29122 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-15 12:28:59+00:00
2023-11-16 17:06:22+00:00
src/modules/PowerOCR/PowerOCR/OCROverlay.xaml
<Window x:Class="PowerOCR.OCROverlay" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:PowerOCR" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" Title="TextExtractor" Width="200" Height="200" AllowsTransparency="True" Background="Transparent" Loaded="Window_Loaded" ResizeMode="NoResize" ShowActivated="False" ShowInTaskbar="False" Topmost="True" Unloaded="Window_Unloaded" WindowStartupLocation="Manual" WindowState="Normal" WindowStyle="None" mc:Ignorable="d"> <Window.Resources> <Style x:Key="SymbolTextStyle" TargetType="TextBlock"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="FontFamily" Value="Segoe MDL2 Assets" /> <Setter Property="FontSize" Value="16" /> <Setter Property="Margin" Value="4" /> </Style> <Style TargetType="ToggleButton"> <Setter Property="Margin" Value="2,0" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="Width" Value="30" /> <Setter Property="Height" Value="30" /> </Style> </Window.Resources> <Grid> <Viewbox> <Image x:Name="BackgroundImage" Stretch="UniformToFill" /> </Viewbox> <Canvas Name="RegionClickCanvas" Cursor="Cross" MouseDown="RegionClickCanvas_MouseDown" MouseMove="RegionClickCanvas_MouseMove" MouseUp="RegionClickCanvas_MouseUp"> <Canvas.Clip> <CombinedGeometry GeometryCombineMode="Exclude"> <CombinedGeometry.Geometry1> <RectangleGeometry x:Name="FullWindow" /> </CombinedGeometry.Geometry1> <CombinedGeometry.Geometry2> <RectangleGeometry x:Name="clippingGeometry" /> </CombinedGeometry.Geometry2> </CombinedGeometry> </Canvas.Clip> <Canvas.Background> <SolidColorBrush x:Name="BackgroundBrush" Opacity="0" Color="Black" /> </Canvas.Background> <Canvas.ContextMenu> <ContextMenu x:Name="CanvasContextMenu"> <MenuItem Name="SingleLineMenuItem" Click="SingleLineMenuItem_Click" Header="Make Result Text Single Line" IsCheckable="True" /> <MenuItem Name="TableMenuItem" Click="TableToggleButton_Click" Header="OCR text as a table" IsCheckable="True" /> <Separator /> <MenuItem Name="SettingsMenuItem" Click="SettingsMenuItem_Click" Header="Settings" /> <Separator /> <MenuItem Name="CancelMenuItem" Click="CancelMenuItem_Click" Header="Cancel" /> </ContextMenu> </Canvas.ContextMenu> </Canvas> <Border x:Name="TopButtonsStackPanel" Margin="12" Padding="4,8,12,8" HorizontalAlignment="Center" VerticalAlignment="Top" d:Background="White" d:Visibility="Visible" Background="{DynamicResource ApplicationBackgroundBrush}" CornerRadius="8" Visibility="Collapsed"> <Border.Effect> <DropShadowEffect BlurRadius="32" Direction="-90" Opacity="0.6" RenderingBias="Performance" /> </Border.Effect> <StackPanel Margin="2,0" HorizontalAlignment="Center" VerticalAlignment="Top" Orientation="Horizontal"> <ComboBox x:Name="LanguagesComboBox" Margin="2,0" Padding="4,2,0,2" Foreground="{DynamicResource TextFillColorPrimaryBrush}" SelectionChanged="LanguagesComboBox_SelectionChanged"> <ComboBox.ItemTemplate> <DataTemplate> <TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" FontFamily="Segoe UI" Style="{StaticResource SymbolTextStyle}" Text="{Binding NativeName}" /> </DataTemplate> </ComboBox.ItemTemplate> </ComboBox> <ToggleButton x:Name="SingleLineToggleButton" Width="34" Height="34" Margin="2,0" d:IsChecked="True" Click="SingleLineMenuItem_Click" IsChecked="{Binding IsChecked, ElementName=SingleLineMenuItem, Mode=TwoWay}" Style="{StaticResource ToggleSymbolButton}" ToolTip="(S) Make result a single line"> <TextBlock Style="{StaticResource SymbolTextStyle}" Text="" /> </ToggleButton> <ToggleButton x:Name="TableToggleButton" Width="34" Height="34" Margin="2,0" d:IsChecked="True" Click="TableToggleButton_Click" IsChecked="{Binding IsChecked, ElementName=TableMenuItem, Mode=TwoWay}" Style="{StaticResource ToggleSymbolButton}" ToolTip="(T) OCR text as a table"> <TextBlock FontFamily="Segoe MDL2 Assets" Text="" /> </ToggleButton> <Button x:Name="SettingsButton" Width="34" Height="34" Margin="2,0" Click="SettingsMenuItem_Click" Style="{StaticResource SymbolButton}" ToolTip="Settings"> <TextBlock Style="{StaticResource SymbolTextStyle}" Text="" /> </Button> <Button x:Name="CancelButton" Width="34" Height="34" Margin="2,0,0,0" Click="CancelMenuItem_Click" Style="{StaticResource SymbolButton}" ToolTip="(Esc) Cancel"> <TextBlock Style="{StaticResource SymbolTextStyle}" Text="" /> </Button> </StackPanel> </Border> </Grid> </Window>
<Window x:Class="PowerOCR.OCROverlay" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:p="clr-namespace:PowerOCR.Properties" xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" Title="TextExtractor" Width="200" Height="200" ui:Design.Background="Transparent" AllowsTransparency="True" Background="Transparent" Loaded="Window_Loaded" ResizeMode="NoResize" ShowActivated="False" ShowInTaskbar="False" Topmost="True" Unloaded="Window_Unloaded" WindowStartupLocation="Manual" WindowState="Normal" WindowStyle="None" mc:Ignorable="d"> <Window.Resources> <Style BasedOn="{StaticResource DefaultToggleButtonStyle}" TargetType="{x:Type ToggleButton}"> <Setter Property="Margin" Value="4,0" /> <Setter Property="Padding" Value="0" /> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="Width" Value="32" /> <Setter Property="Height" Value="32" /> <Setter Property="Background" Value="Transparent" /> </Style> <Style BasedOn="{StaticResource DefaultButtonStyle}" TargetType="{x:Type Button}"> <Setter Property="Margin" Value="4,0" /> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="Padding" Value="0" /> <Setter Property="Width" Value="32" /> <Setter Property="Height" Value="32" /> <Setter Property="Background" Value="Transparent" /> </Style> </Window.Resources> <Grid> <Viewbox> <Image x:Name="BackgroundImage" Stretch="UniformToFill" /> </Viewbox> <Canvas Name="RegionClickCanvas" Cursor="Cross" MouseDown="RegionClickCanvas_MouseDown" MouseMove="RegionClickCanvas_MouseMove" MouseUp="RegionClickCanvas_MouseUp"> <Canvas.Clip> <CombinedGeometry GeometryCombineMode="Exclude"> <CombinedGeometry.Geometry1> <RectangleGeometry x:Name="FullWindow" /> </CombinedGeometry.Geometry1> <CombinedGeometry.Geometry2> <RectangleGeometry x:Name="clippingGeometry" /> </CombinedGeometry.Geometry2> </CombinedGeometry> </Canvas.Clip> <Canvas.Background> <SolidColorBrush x:Name="BackgroundBrush" Opacity="0" Color="Black" /> </Canvas.Background> <Canvas.ContextMenu> <ContextMenu x:Name="CanvasContextMenu"> <MenuItem Name="SingleLineMenuItem" Click="SingleLineMenuItem_Click" Header="{x:Static p:Resources.ResultTextSingleLine}" IsCheckable="True" /> <MenuItem Name="TableMenuItem" Click="TableToggleButton_Click" Header="{x:Static p:Resources.ResultTextTable}" IsCheckable="True" /> <Separator /> <MenuItem Name="SettingsMenuItem" Click="SettingsMenuItem_Click" Header="{x:Static p:Resources.Settings}" /> <Separator /> <MenuItem Name="CancelMenuItem" Click="CancelMenuItem_Click" Header="{x:Static p:Resources.Cancel}" /> </ContextMenu> </Canvas.ContextMenu> </Canvas> <Border x:Name="TopButtonsStackPanel" Margin="12" Padding="4,8,12,8" HorizontalAlignment="Center" VerticalAlignment="Top" d:Visibility="Visible" Background="{DynamicResource ApplicationBackgroundBrush}" CornerRadius="8" Visibility="Collapsed"> <Border.Effect> <DropShadowEffect BlurRadius="32" Opacity="0.28" RenderingBias="Performance" ShadowDepth="1" /> </Border.Effect> <StackPanel HorizontalAlignment="Center" VerticalAlignment="Top" Orientation="Horizontal"> <ComboBox x:Name="LanguagesComboBox" Height="32" Margin="4,0" AutomationProperties.Name="{x:Static p:Resources.SelectedLang}" SelectionChanged="LanguagesComboBox_SelectionChanged"> <ComboBox.ItemTemplate> <DataTemplate> <TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" Text="{Binding NativeName}" /> </DataTemplate> </ComboBox.ItemTemplate> </ComboBox> <ToggleButton x:Name="SingleLineToggleButton" d:IsChecked="True" AutomationProperties.Name="{x:Static p:Resources.ResultTextSingleLine}" Click="SingleLineMenuItem_Click" IsChecked="{Binding IsChecked, ElementName=SingleLineMenuItem, Mode=TwoWay}" ToolTip="{x:Static p:Resources.ResultTextSingleLineShortcut}"> <ui:SymbolIcon FontSize="18" Symbol="SubtractSquare24" /> </ToggleButton> <ToggleButton x:Name="TableToggleButton" d:IsChecked="True" AutomationProperties.Name="{x:Static p:Resources.ResultTextTable}" Click="TableToggleButton_Click" IsChecked="{Binding IsChecked, ElementName=TableMenuItem, Mode=TwoWay}" ToolTip="{x:Static p:Resources.ResultTextTableShortcut}"> <ui:SymbolIcon FontSize="18" Symbol="Table24" /> </ToggleButton> <Button x:Name="SettingsButton" AutomationProperties.Name="{x:Static p:Resources.Settings}" Click="SettingsMenuItem_Click" ToolTip="{x:Static p:Resources.Settings}"> <ui:SymbolIcon FontSize="18" Symbol="Settings24" /> </Button> <Button x:Name="CancelButton" Click="CancelMenuItem_Click" ToolTip="{x:Static p:Resources.CancelShortcut}"> <ui:SymbolIcon FontSize="18" Symbol="Dismiss24" /> </Button> </StackPanel> </Border> </Grid> </Window>
niels9001
412550abcd2f42bf8682588d75b190eb5ba2cfc7
7e0f69f7d4f8a018b7fff0f0bd1babb063800b40
Were you able to test what these icons look like on Windows 10?
TheJoeFin
168
microsoft/PowerToys
29,861
[Text Extractor] Localization and light theme support
## Summary of the Pull Request This PR introduces the following changes: - Updated `WpfUi` to `preview-9` - Added light theme support - Tweaked the UI so it's according to Fluent Design principles - Added localization for tooltips and context menu Before: ![image](https://github.com/microsoft/PowerToys/assets/9866362/f2276ad8-d3de-4aab-a6ed-b38bf1cf1b28) After (dark + light) ![image](https://github.com/microsoft/PowerToys/assets/9866362/ebd1d378-0ac2-4674-ac5b-a86b1c443d3e) ![image](https://github.com/microsoft/PowerToys/assets/9866362/87b92ba4-d995-4d5d-8b60-11666a583a1e) ## PR Checklist - [x] **Closes:** #29845, #29627, #29122 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-15 12:28:59+00:00
2023-11-16 17:06:22+00:00
src/modules/PowerOCR/PowerOCR/OCROverlay.xaml
<Window x:Class="PowerOCR.OCROverlay" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:PowerOCR" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" Title="TextExtractor" Width="200" Height="200" AllowsTransparency="True" Background="Transparent" Loaded="Window_Loaded" ResizeMode="NoResize" ShowActivated="False" ShowInTaskbar="False" Topmost="True" Unloaded="Window_Unloaded" WindowStartupLocation="Manual" WindowState="Normal" WindowStyle="None" mc:Ignorable="d"> <Window.Resources> <Style x:Key="SymbolTextStyle" TargetType="TextBlock"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="FontFamily" Value="Segoe MDL2 Assets" /> <Setter Property="FontSize" Value="16" /> <Setter Property="Margin" Value="4" /> </Style> <Style TargetType="ToggleButton"> <Setter Property="Margin" Value="2,0" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="Width" Value="30" /> <Setter Property="Height" Value="30" /> </Style> </Window.Resources> <Grid> <Viewbox> <Image x:Name="BackgroundImage" Stretch="UniformToFill" /> </Viewbox> <Canvas Name="RegionClickCanvas" Cursor="Cross" MouseDown="RegionClickCanvas_MouseDown" MouseMove="RegionClickCanvas_MouseMove" MouseUp="RegionClickCanvas_MouseUp"> <Canvas.Clip> <CombinedGeometry GeometryCombineMode="Exclude"> <CombinedGeometry.Geometry1> <RectangleGeometry x:Name="FullWindow" /> </CombinedGeometry.Geometry1> <CombinedGeometry.Geometry2> <RectangleGeometry x:Name="clippingGeometry" /> </CombinedGeometry.Geometry2> </CombinedGeometry> </Canvas.Clip> <Canvas.Background> <SolidColorBrush x:Name="BackgroundBrush" Opacity="0" Color="Black" /> </Canvas.Background> <Canvas.ContextMenu> <ContextMenu x:Name="CanvasContextMenu"> <MenuItem Name="SingleLineMenuItem" Click="SingleLineMenuItem_Click" Header="Make Result Text Single Line" IsCheckable="True" /> <MenuItem Name="TableMenuItem" Click="TableToggleButton_Click" Header="OCR text as a table" IsCheckable="True" /> <Separator /> <MenuItem Name="SettingsMenuItem" Click="SettingsMenuItem_Click" Header="Settings" /> <Separator /> <MenuItem Name="CancelMenuItem" Click="CancelMenuItem_Click" Header="Cancel" /> </ContextMenu> </Canvas.ContextMenu> </Canvas> <Border x:Name="TopButtonsStackPanel" Margin="12" Padding="4,8,12,8" HorizontalAlignment="Center" VerticalAlignment="Top" d:Background="White" d:Visibility="Visible" Background="{DynamicResource ApplicationBackgroundBrush}" CornerRadius="8" Visibility="Collapsed"> <Border.Effect> <DropShadowEffect BlurRadius="32" Direction="-90" Opacity="0.6" RenderingBias="Performance" /> </Border.Effect> <StackPanel Margin="2,0" HorizontalAlignment="Center" VerticalAlignment="Top" Orientation="Horizontal"> <ComboBox x:Name="LanguagesComboBox" Margin="2,0" Padding="4,2,0,2" Foreground="{DynamicResource TextFillColorPrimaryBrush}" SelectionChanged="LanguagesComboBox_SelectionChanged"> <ComboBox.ItemTemplate> <DataTemplate> <TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" FontFamily="Segoe UI" Style="{StaticResource SymbolTextStyle}" Text="{Binding NativeName}" /> </DataTemplate> </ComboBox.ItemTemplate> </ComboBox> <ToggleButton x:Name="SingleLineToggleButton" Width="34" Height="34" Margin="2,0" d:IsChecked="True" Click="SingleLineMenuItem_Click" IsChecked="{Binding IsChecked, ElementName=SingleLineMenuItem, Mode=TwoWay}" Style="{StaticResource ToggleSymbolButton}" ToolTip="(S) Make result a single line"> <TextBlock Style="{StaticResource SymbolTextStyle}" Text="" /> </ToggleButton> <ToggleButton x:Name="TableToggleButton" Width="34" Height="34" Margin="2,0" d:IsChecked="True" Click="TableToggleButton_Click" IsChecked="{Binding IsChecked, ElementName=TableMenuItem, Mode=TwoWay}" Style="{StaticResource ToggleSymbolButton}" ToolTip="(T) OCR text as a table"> <TextBlock FontFamily="Segoe MDL2 Assets" Text="" /> </ToggleButton> <Button x:Name="SettingsButton" Width="34" Height="34" Margin="2,0" Click="SettingsMenuItem_Click" Style="{StaticResource SymbolButton}" ToolTip="Settings"> <TextBlock Style="{StaticResource SymbolTextStyle}" Text="" /> </Button> <Button x:Name="CancelButton" Width="34" Height="34" Margin="2,0,0,0" Click="CancelMenuItem_Click" Style="{StaticResource SymbolButton}" ToolTip="(Esc) Cancel"> <TextBlock Style="{StaticResource SymbolTextStyle}" Text="" /> </Button> </StackPanel> </Border> </Grid> </Window>
<Window x:Class="PowerOCR.OCROverlay" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:p="clr-namespace:PowerOCR.Properties" xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" Title="TextExtractor" Width="200" Height="200" ui:Design.Background="Transparent" AllowsTransparency="True" Background="Transparent" Loaded="Window_Loaded" ResizeMode="NoResize" ShowActivated="False" ShowInTaskbar="False" Topmost="True" Unloaded="Window_Unloaded" WindowStartupLocation="Manual" WindowState="Normal" WindowStyle="None" mc:Ignorable="d"> <Window.Resources> <Style BasedOn="{StaticResource DefaultToggleButtonStyle}" TargetType="{x:Type ToggleButton}"> <Setter Property="Margin" Value="4,0" /> <Setter Property="Padding" Value="0" /> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="Width" Value="32" /> <Setter Property="Height" Value="32" /> <Setter Property="Background" Value="Transparent" /> </Style> <Style BasedOn="{StaticResource DefaultButtonStyle}" TargetType="{x:Type Button}"> <Setter Property="Margin" Value="4,0" /> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="Padding" Value="0" /> <Setter Property="Width" Value="32" /> <Setter Property="Height" Value="32" /> <Setter Property="Background" Value="Transparent" /> </Style> </Window.Resources> <Grid> <Viewbox> <Image x:Name="BackgroundImage" Stretch="UniformToFill" /> </Viewbox> <Canvas Name="RegionClickCanvas" Cursor="Cross" MouseDown="RegionClickCanvas_MouseDown" MouseMove="RegionClickCanvas_MouseMove" MouseUp="RegionClickCanvas_MouseUp"> <Canvas.Clip> <CombinedGeometry GeometryCombineMode="Exclude"> <CombinedGeometry.Geometry1> <RectangleGeometry x:Name="FullWindow" /> </CombinedGeometry.Geometry1> <CombinedGeometry.Geometry2> <RectangleGeometry x:Name="clippingGeometry" /> </CombinedGeometry.Geometry2> </CombinedGeometry> </Canvas.Clip> <Canvas.Background> <SolidColorBrush x:Name="BackgroundBrush" Opacity="0" Color="Black" /> </Canvas.Background> <Canvas.ContextMenu> <ContextMenu x:Name="CanvasContextMenu"> <MenuItem Name="SingleLineMenuItem" Click="SingleLineMenuItem_Click" Header="{x:Static p:Resources.ResultTextSingleLine}" IsCheckable="True" /> <MenuItem Name="TableMenuItem" Click="TableToggleButton_Click" Header="{x:Static p:Resources.ResultTextTable}" IsCheckable="True" /> <Separator /> <MenuItem Name="SettingsMenuItem" Click="SettingsMenuItem_Click" Header="{x:Static p:Resources.Settings}" /> <Separator /> <MenuItem Name="CancelMenuItem" Click="CancelMenuItem_Click" Header="{x:Static p:Resources.Cancel}" /> </ContextMenu> </Canvas.ContextMenu> </Canvas> <Border x:Name="TopButtonsStackPanel" Margin="12" Padding="4,8,12,8" HorizontalAlignment="Center" VerticalAlignment="Top" d:Visibility="Visible" Background="{DynamicResource ApplicationBackgroundBrush}" CornerRadius="8" Visibility="Collapsed"> <Border.Effect> <DropShadowEffect BlurRadius="32" Opacity="0.28" RenderingBias="Performance" ShadowDepth="1" /> </Border.Effect> <StackPanel HorizontalAlignment="Center" VerticalAlignment="Top" Orientation="Horizontal"> <ComboBox x:Name="LanguagesComboBox" Height="32" Margin="4,0" AutomationProperties.Name="{x:Static p:Resources.SelectedLang}" SelectionChanged="LanguagesComboBox_SelectionChanged"> <ComboBox.ItemTemplate> <DataTemplate> <TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" Text="{Binding NativeName}" /> </DataTemplate> </ComboBox.ItemTemplate> </ComboBox> <ToggleButton x:Name="SingleLineToggleButton" d:IsChecked="True" AutomationProperties.Name="{x:Static p:Resources.ResultTextSingleLine}" Click="SingleLineMenuItem_Click" IsChecked="{Binding IsChecked, ElementName=SingleLineMenuItem, Mode=TwoWay}" ToolTip="{x:Static p:Resources.ResultTextSingleLineShortcut}"> <ui:SymbolIcon FontSize="18" Symbol="SubtractSquare24" /> </ToggleButton> <ToggleButton x:Name="TableToggleButton" d:IsChecked="True" AutomationProperties.Name="{x:Static p:Resources.ResultTextTable}" Click="TableToggleButton_Click" IsChecked="{Binding IsChecked, ElementName=TableMenuItem, Mode=TwoWay}" ToolTip="{x:Static p:Resources.ResultTextTableShortcut}"> <ui:SymbolIcon FontSize="18" Symbol="Table24" /> </ToggleButton> <Button x:Name="SettingsButton" AutomationProperties.Name="{x:Static p:Resources.Settings}" Click="SettingsMenuItem_Click" ToolTip="{x:Static p:Resources.Settings}"> <ui:SymbolIcon FontSize="18" Symbol="Settings24" /> </Button> <Button x:Name="CancelButton" Click="CancelMenuItem_Click" ToolTip="{x:Static p:Resources.CancelShortcut}"> <ui:SymbolIcon FontSize="18" Symbol="Dismiss24" /> </Button> </StackPanel> </Border> </Grid> </Window>
niels9001
412550abcd2f42bf8682588d75b190eb5ba2cfc7
7e0f69f7d4f8a018b7fff0f0bd1babb063800b40
I did not.. If I understood correctly, `SymbolIcon` uses the embedded font and should render as Segoe Fluent Icons on both W10 and W11. @jaimecbernardo you have a W10 box right? Would you mind trying this out?
niels9001
169
microsoft/PowerToys
29,861
[Text Extractor] Localization and light theme support
## Summary of the Pull Request This PR introduces the following changes: - Updated `WpfUi` to `preview-9` - Added light theme support - Tweaked the UI so it's according to Fluent Design principles - Added localization for tooltips and context menu Before: ![image](https://github.com/microsoft/PowerToys/assets/9866362/f2276ad8-d3de-4aab-a6ed-b38bf1cf1b28) After (dark + light) ![image](https://github.com/microsoft/PowerToys/assets/9866362/ebd1d378-0ac2-4674-ac5b-a86b1c443d3e) ![image](https://github.com/microsoft/PowerToys/assets/9866362/87b92ba4-d995-4d5d-8b60-11666a583a1e) ## PR Checklist - [x] **Closes:** #29845, #29627, #29122 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-15 12:28:59+00:00
2023-11-16 17:06:22+00:00
src/modules/PowerOCR/PowerOCR/OCROverlay.xaml
<Window x:Class="PowerOCR.OCROverlay" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:PowerOCR" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" Title="TextExtractor" Width="200" Height="200" AllowsTransparency="True" Background="Transparent" Loaded="Window_Loaded" ResizeMode="NoResize" ShowActivated="False" ShowInTaskbar="False" Topmost="True" Unloaded="Window_Unloaded" WindowStartupLocation="Manual" WindowState="Normal" WindowStyle="None" mc:Ignorable="d"> <Window.Resources> <Style x:Key="SymbolTextStyle" TargetType="TextBlock"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="FontFamily" Value="Segoe MDL2 Assets" /> <Setter Property="FontSize" Value="16" /> <Setter Property="Margin" Value="4" /> </Style> <Style TargetType="ToggleButton"> <Setter Property="Margin" Value="2,0" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="Width" Value="30" /> <Setter Property="Height" Value="30" /> </Style> </Window.Resources> <Grid> <Viewbox> <Image x:Name="BackgroundImage" Stretch="UniformToFill" /> </Viewbox> <Canvas Name="RegionClickCanvas" Cursor="Cross" MouseDown="RegionClickCanvas_MouseDown" MouseMove="RegionClickCanvas_MouseMove" MouseUp="RegionClickCanvas_MouseUp"> <Canvas.Clip> <CombinedGeometry GeometryCombineMode="Exclude"> <CombinedGeometry.Geometry1> <RectangleGeometry x:Name="FullWindow" /> </CombinedGeometry.Geometry1> <CombinedGeometry.Geometry2> <RectangleGeometry x:Name="clippingGeometry" /> </CombinedGeometry.Geometry2> </CombinedGeometry> </Canvas.Clip> <Canvas.Background> <SolidColorBrush x:Name="BackgroundBrush" Opacity="0" Color="Black" /> </Canvas.Background> <Canvas.ContextMenu> <ContextMenu x:Name="CanvasContextMenu"> <MenuItem Name="SingleLineMenuItem" Click="SingleLineMenuItem_Click" Header="Make Result Text Single Line" IsCheckable="True" /> <MenuItem Name="TableMenuItem" Click="TableToggleButton_Click" Header="OCR text as a table" IsCheckable="True" /> <Separator /> <MenuItem Name="SettingsMenuItem" Click="SettingsMenuItem_Click" Header="Settings" /> <Separator /> <MenuItem Name="CancelMenuItem" Click="CancelMenuItem_Click" Header="Cancel" /> </ContextMenu> </Canvas.ContextMenu> </Canvas> <Border x:Name="TopButtonsStackPanel" Margin="12" Padding="4,8,12,8" HorizontalAlignment="Center" VerticalAlignment="Top" d:Background="White" d:Visibility="Visible" Background="{DynamicResource ApplicationBackgroundBrush}" CornerRadius="8" Visibility="Collapsed"> <Border.Effect> <DropShadowEffect BlurRadius="32" Direction="-90" Opacity="0.6" RenderingBias="Performance" /> </Border.Effect> <StackPanel Margin="2,0" HorizontalAlignment="Center" VerticalAlignment="Top" Orientation="Horizontal"> <ComboBox x:Name="LanguagesComboBox" Margin="2,0" Padding="4,2,0,2" Foreground="{DynamicResource TextFillColorPrimaryBrush}" SelectionChanged="LanguagesComboBox_SelectionChanged"> <ComboBox.ItemTemplate> <DataTemplate> <TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" FontFamily="Segoe UI" Style="{StaticResource SymbolTextStyle}" Text="{Binding NativeName}" /> </DataTemplate> </ComboBox.ItemTemplate> </ComboBox> <ToggleButton x:Name="SingleLineToggleButton" Width="34" Height="34" Margin="2,0" d:IsChecked="True" Click="SingleLineMenuItem_Click" IsChecked="{Binding IsChecked, ElementName=SingleLineMenuItem, Mode=TwoWay}" Style="{StaticResource ToggleSymbolButton}" ToolTip="(S) Make result a single line"> <TextBlock Style="{StaticResource SymbolTextStyle}" Text="" /> </ToggleButton> <ToggleButton x:Name="TableToggleButton" Width="34" Height="34" Margin="2,0" d:IsChecked="True" Click="TableToggleButton_Click" IsChecked="{Binding IsChecked, ElementName=TableMenuItem, Mode=TwoWay}" Style="{StaticResource ToggleSymbolButton}" ToolTip="(T) OCR text as a table"> <TextBlock FontFamily="Segoe MDL2 Assets" Text="" /> </ToggleButton> <Button x:Name="SettingsButton" Width="34" Height="34" Margin="2,0" Click="SettingsMenuItem_Click" Style="{StaticResource SymbolButton}" ToolTip="Settings"> <TextBlock Style="{StaticResource SymbolTextStyle}" Text="" /> </Button> <Button x:Name="CancelButton" Width="34" Height="34" Margin="2,0,0,0" Click="CancelMenuItem_Click" Style="{StaticResource SymbolButton}" ToolTip="(Esc) Cancel"> <TextBlock Style="{StaticResource SymbolTextStyle}" Text="" /> </Button> </StackPanel> </Border> </Grid> </Window>
<Window x:Class="PowerOCR.OCROverlay" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:p="clr-namespace:PowerOCR.Properties" xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" Title="TextExtractor" Width="200" Height="200" ui:Design.Background="Transparent" AllowsTransparency="True" Background="Transparent" Loaded="Window_Loaded" ResizeMode="NoResize" ShowActivated="False" ShowInTaskbar="False" Topmost="True" Unloaded="Window_Unloaded" WindowStartupLocation="Manual" WindowState="Normal" WindowStyle="None" mc:Ignorable="d"> <Window.Resources> <Style BasedOn="{StaticResource DefaultToggleButtonStyle}" TargetType="{x:Type ToggleButton}"> <Setter Property="Margin" Value="4,0" /> <Setter Property="Padding" Value="0" /> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="Width" Value="32" /> <Setter Property="Height" Value="32" /> <Setter Property="Background" Value="Transparent" /> </Style> <Style BasedOn="{StaticResource DefaultButtonStyle}" TargetType="{x:Type Button}"> <Setter Property="Margin" Value="4,0" /> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="Padding" Value="0" /> <Setter Property="Width" Value="32" /> <Setter Property="Height" Value="32" /> <Setter Property="Background" Value="Transparent" /> </Style> </Window.Resources> <Grid> <Viewbox> <Image x:Name="BackgroundImage" Stretch="UniformToFill" /> </Viewbox> <Canvas Name="RegionClickCanvas" Cursor="Cross" MouseDown="RegionClickCanvas_MouseDown" MouseMove="RegionClickCanvas_MouseMove" MouseUp="RegionClickCanvas_MouseUp"> <Canvas.Clip> <CombinedGeometry GeometryCombineMode="Exclude"> <CombinedGeometry.Geometry1> <RectangleGeometry x:Name="FullWindow" /> </CombinedGeometry.Geometry1> <CombinedGeometry.Geometry2> <RectangleGeometry x:Name="clippingGeometry" /> </CombinedGeometry.Geometry2> </CombinedGeometry> </Canvas.Clip> <Canvas.Background> <SolidColorBrush x:Name="BackgroundBrush" Opacity="0" Color="Black" /> </Canvas.Background> <Canvas.ContextMenu> <ContextMenu x:Name="CanvasContextMenu"> <MenuItem Name="SingleLineMenuItem" Click="SingleLineMenuItem_Click" Header="{x:Static p:Resources.ResultTextSingleLine}" IsCheckable="True" /> <MenuItem Name="TableMenuItem" Click="TableToggleButton_Click" Header="{x:Static p:Resources.ResultTextTable}" IsCheckable="True" /> <Separator /> <MenuItem Name="SettingsMenuItem" Click="SettingsMenuItem_Click" Header="{x:Static p:Resources.Settings}" /> <Separator /> <MenuItem Name="CancelMenuItem" Click="CancelMenuItem_Click" Header="{x:Static p:Resources.Cancel}" /> </ContextMenu> </Canvas.ContextMenu> </Canvas> <Border x:Name="TopButtonsStackPanel" Margin="12" Padding="4,8,12,8" HorizontalAlignment="Center" VerticalAlignment="Top" d:Visibility="Visible" Background="{DynamicResource ApplicationBackgroundBrush}" CornerRadius="8" Visibility="Collapsed"> <Border.Effect> <DropShadowEffect BlurRadius="32" Opacity="0.28" RenderingBias="Performance" ShadowDepth="1" /> </Border.Effect> <StackPanel HorizontalAlignment="Center" VerticalAlignment="Top" Orientation="Horizontal"> <ComboBox x:Name="LanguagesComboBox" Height="32" Margin="4,0" AutomationProperties.Name="{x:Static p:Resources.SelectedLang}" SelectionChanged="LanguagesComboBox_SelectionChanged"> <ComboBox.ItemTemplate> <DataTemplate> <TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" Text="{Binding NativeName}" /> </DataTemplate> </ComboBox.ItemTemplate> </ComboBox> <ToggleButton x:Name="SingleLineToggleButton" d:IsChecked="True" AutomationProperties.Name="{x:Static p:Resources.ResultTextSingleLine}" Click="SingleLineMenuItem_Click" IsChecked="{Binding IsChecked, ElementName=SingleLineMenuItem, Mode=TwoWay}" ToolTip="{x:Static p:Resources.ResultTextSingleLineShortcut}"> <ui:SymbolIcon FontSize="18" Symbol="SubtractSquare24" /> </ToggleButton> <ToggleButton x:Name="TableToggleButton" d:IsChecked="True" AutomationProperties.Name="{x:Static p:Resources.ResultTextTable}" Click="TableToggleButton_Click" IsChecked="{Binding IsChecked, ElementName=TableMenuItem, Mode=TwoWay}" ToolTip="{x:Static p:Resources.ResultTextTableShortcut}"> <ui:SymbolIcon FontSize="18" Symbol="Table24" /> </ToggleButton> <Button x:Name="SettingsButton" AutomationProperties.Name="{x:Static p:Resources.Settings}" Click="SettingsMenuItem_Click" ToolTip="{x:Static p:Resources.Settings}"> <ui:SymbolIcon FontSize="18" Symbol="Settings24" /> </Button> <Button x:Name="CancelButton" Click="CancelMenuItem_Click" ToolTip="{x:Static p:Resources.CancelShortcut}"> <ui:SymbolIcon FontSize="18" Symbol="Dismiss24" /> </Button> </StackPanel> </Border> </Grid> </Window>
niels9001
412550abcd2f42bf8682588d75b190eb5ba2cfc7
7e0f69f7d4f8a018b7fff0f0bd1babb063800b40
Icons appear fine on Win 10. You meant these, right? ![image](https://github.com/microsoft/PowerToys/assets/26118718/7d6f45ff-95b5-4145-bed3-47db0cf4fc34)
jaimecbernardo
170
microsoft/PowerToys
29,861
[Text Extractor] Localization and light theme support
## Summary of the Pull Request This PR introduces the following changes: - Updated `WpfUi` to `preview-9` - Added light theme support - Tweaked the UI so it's according to Fluent Design principles - Added localization for tooltips and context menu Before: ![image](https://github.com/microsoft/PowerToys/assets/9866362/f2276ad8-d3de-4aab-a6ed-b38bf1cf1b28) After (dark + light) ![image](https://github.com/microsoft/PowerToys/assets/9866362/ebd1d378-0ac2-4674-ac5b-a86b1c443d3e) ![image](https://github.com/microsoft/PowerToys/assets/9866362/87b92ba4-d995-4d5d-8b60-11666a583a1e) ## PR Checklist - [x] **Closes:** #29845, #29627, #29122 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-15 12:28:59+00:00
2023-11-16 17:06:22+00:00
src/modules/PowerOCR/PowerOCR/OCROverlay.xaml
<Window x:Class="PowerOCR.OCROverlay" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:PowerOCR" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" Title="TextExtractor" Width="200" Height="200" AllowsTransparency="True" Background="Transparent" Loaded="Window_Loaded" ResizeMode="NoResize" ShowActivated="False" ShowInTaskbar="False" Topmost="True" Unloaded="Window_Unloaded" WindowStartupLocation="Manual" WindowState="Normal" WindowStyle="None" mc:Ignorable="d"> <Window.Resources> <Style x:Key="SymbolTextStyle" TargetType="TextBlock"> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="FontFamily" Value="Segoe MDL2 Assets" /> <Setter Property="FontSize" Value="16" /> <Setter Property="Margin" Value="4" /> </Style> <Style TargetType="ToggleButton"> <Setter Property="Margin" Value="2,0" /> <Setter Property="VerticalAlignment" Value="Center" /> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="Width" Value="30" /> <Setter Property="Height" Value="30" /> </Style> </Window.Resources> <Grid> <Viewbox> <Image x:Name="BackgroundImage" Stretch="UniformToFill" /> </Viewbox> <Canvas Name="RegionClickCanvas" Cursor="Cross" MouseDown="RegionClickCanvas_MouseDown" MouseMove="RegionClickCanvas_MouseMove" MouseUp="RegionClickCanvas_MouseUp"> <Canvas.Clip> <CombinedGeometry GeometryCombineMode="Exclude"> <CombinedGeometry.Geometry1> <RectangleGeometry x:Name="FullWindow" /> </CombinedGeometry.Geometry1> <CombinedGeometry.Geometry2> <RectangleGeometry x:Name="clippingGeometry" /> </CombinedGeometry.Geometry2> </CombinedGeometry> </Canvas.Clip> <Canvas.Background> <SolidColorBrush x:Name="BackgroundBrush" Opacity="0" Color="Black" /> </Canvas.Background> <Canvas.ContextMenu> <ContextMenu x:Name="CanvasContextMenu"> <MenuItem Name="SingleLineMenuItem" Click="SingleLineMenuItem_Click" Header="Make Result Text Single Line" IsCheckable="True" /> <MenuItem Name="TableMenuItem" Click="TableToggleButton_Click" Header="OCR text as a table" IsCheckable="True" /> <Separator /> <MenuItem Name="SettingsMenuItem" Click="SettingsMenuItem_Click" Header="Settings" /> <Separator /> <MenuItem Name="CancelMenuItem" Click="CancelMenuItem_Click" Header="Cancel" /> </ContextMenu> </Canvas.ContextMenu> </Canvas> <Border x:Name="TopButtonsStackPanel" Margin="12" Padding="4,8,12,8" HorizontalAlignment="Center" VerticalAlignment="Top" d:Background="White" d:Visibility="Visible" Background="{DynamicResource ApplicationBackgroundBrush}" CornerRadius="8" Visibility="Collapsed"> <Border.Effect> <DropShadowEffect BlurRadius="32" Direction="-90" Opacity="0.6" RenderingBias="Performance" /> </Border.Effect> <StackPanel Margin="2,0" HorizontalAlignment="Center" VerticalAlignment="Top" Orientation="Horizontal"> <ComboBox x:Name="LanguagesComboBox" Margin="2,0" Padding="4,2,0,2" Foreground="{DynamicResource TextFillColorPrimaryBrush}" SelectionChanged="LanguagesComboBox_SelectionChanged"> <ComboBox.ItemTemplate> <DataTemplate> <TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" FontFamily="Segoe UI" Style="{StaticResource SymbolTextStyle}" Text="{Binding NativeName}" /> </DataTemplate> </ComboBox.ItemTemplate> </ComboBox> <ToggleButton x:Name="SingleLineToggleButton" Width="34" Height="34" Margin="2,0" d:IsChecked="True" Click="SingleLineMenuItem_Click" IsChecked="{Binding IsChecked, ElementName=SingleLineMenuItem, Mode=TwoWay}" Style="{StaticResource ToggleSymbolButton}" ToolTip="(S) Make result a single line"> <TextBlock Style="{StaticResource SymbolTextStyle}" Text="" /> </ToggleButton> <ToggleButton x:Name="TableToggleButton" Width="34" Height="34" Margin="2,0" d:IsChecked="True" Click="TableToggleButton_Click" IsChecked="{Binding IsChecked, ElementName=TableMenuItem, Mode=TwoWay}" Style="{StaticResource ToggleSymbolButton}" ToolTip="(T) OCR text as a table"> <TextBlock FontFamily="Segoe MDL2 Assets" Text="" /> </ToggleButton> <Button x:Name="SettingsButton" Width="34" Height="34" Margin="2,0" Click="SettingsMenuItem_Click" Style="{StaticResource SymbolButton}" ToolTip="Settings"> <TextBlock Style="{StaticResource SymbolTextStyle}" Text="" /> </Button> <Button x:Name="CancelButton" Width="34" Height="34" Margin="2,0,0,0" Click="CancelMenuItem_Click" Style="{StaticResource SymbolButton}" ToolTip="(Esc) Cancel"> <TextBlock Style="{StaticResource SymbolTextStyle}" Text="" /> </Button> </StackPanel> </Border> </Grid> </Window>
<Window x:Class="PowerOCR.OCROverlay" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:p="clr-namespace:PowerOCR.Properties" xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml" Title="TextExtractor" Width="200" Height="200" ui:Design.Background="Transparent" AllowsTransparency="True" Background="Transparent" Loaded="Window_Loaded" ResizeMode="NoResize" ShowActivated="False" ShowInTaskbar="False" Topmost="True" Unloaded="Window_Unloaded" WindowStartupLocation="Manual" WindowState="Normal" WindowStyle="None" mc:Ignorable="d"> <Window.Resources> <Style BasedOn="{StaticResource DefaultToggleButtonStyle}" TargetType="{x:Type ToggleButton}"> <Setter Property="Margin" Value="4,0" /> <Setter Property="Padding" Value="0" /> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="Width" Value="32" /> <Setter Property="Height" Value="32" /> <Setter Property="Background" Value="Transparent" /> </Style> <Style BasedOn="{StaticResource DefaultButtonStyle}" TargetType="{x:Type Button}"> <Setter Property="Margin" Value="4,0" /> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="Padding" Value="0" /> <Setter Property="Width" Value="32" /> <Setter Property="Height" Value="32" /> <Setter Property="Background" Value="Transparent" /> </Style> </Window.Resources> <Grid> <Viewbox> <Image x:Name="BackgroundImage" Stretch="UniformToFill" /> </Viewbox> <Canvas Name="RegionClickCanvas" Cursor="Cross" MouseDown="RegionClickCanvas_MouseDown" MouseMove="RegionClickCanvas_MouseMove" MouseUp="RegionClickCanvas_MouseUp"> <Canvas.Clip> <CombinedGeometry GeometryCombineMode="Exclude"> <CombinedGeometry.Geometry1> <RectangleGeometry x:Name="FullWindow" /> </CombinedGeometry.Geometry1> <CombinedGeometry.Geometry2> <RectangleGeometry x:Name="clippingGeometry" /> </CombinedGeometry.Geometry2> </CombinedGeometry> </Canvas.Clip> <Canvas.Background> <SolidColorBrush x:Name="BackgroundBrush" Opacity="0" Color="Black" /> </Canvas.Background> <Canvas.ContextMenu> <ContextMenu x:Name="CanvasContextMenu"> <MenuItem Name="SingleLineMenuItem" Click="SingleLineMenuItem_Click" Header="{x:Static p:Resources.ResultTextSingleLine}" IsCheckable="True" /> <MenuItem Name="TableMenuItem" Click="TableToggleButton_Click" Header="{x:Static p:Resources.ResultTextTable}" IsCheckable="True" /> <Separator /> <MenuItem Name="SettingsMenuItem" Click="SettingsMenuItem_Click" Header="{x:Static p:Resources.Settings}" /> <Separator /> <MenuItem Name="CancelMenuItem" Click="CancelMenuItem_Click" Header="{x:Static p:Resources.Cancel}" /> </ContextMenu> </Canvas.ContextMenu> </Canvas> <Border x:Name="TopButtonsStackPanel" Margin="12" Padding="4,8,12,8" HorizontalAlignment="Center" VerticalAlignment="Top" d:Visibility="Visible" Background="{DynamicResource ApplicationBackgroundBrush}" CornerRadius="8" Visibility="Collapsed"> <Border.Effect> <DropShadowEffect BlurRadius="32" Opacity="0.28" RenderingBias="Performance" ShadowDepth="1" /> </Border.Effect> <StackPanel HorizontalAlignment="Center" VerticalAlignment="Top" Orientation="Horizontal"> <ComboBox x:Name="LanguagesComboBox" Height="32" Margin="4,0" AutomationProperties.Name="{x:Static p:Resources.SelectedLang}" SelectionChanged="LanguagesComboBox_SelectionChanged"> <ComboBox.ItemTemplate> <DataTemplate> <TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" Text="{Binding NativeName}" /> </DataTemplate> </ComboBox.ItemTemplate> </ComboBox> <ToggleButton x:Name="SingleLineToggleButton" d:IsChecked="True" AutomationProperties.Name="{x:Static p:Resources.ResultTextSingleLine}" Click="SingleLineMenuItem_Click" IsChecked="{Binding IsChecked, ElementName=SingleLineMenuItem, Mode=TwoWay}" ToolTip="{x:Static p:Resources.ResultTextSingleLineShortcut}"> <ui:SymbolIcon FontSize="18" Symbol="SubtractSquare24" /> </ToggleButton> <ToggleButton x:Name="TableToggleButton" d:IsChecked="True" AutomationProperties.Name="{x:Static p:Resources.ResultTextTable}" Click="TableToggleButton_Click" IsChecked="{Binding IsChecked, ElementName=TableMenuItem, Mode=TwoWay}" ToolTip="{x:Static p:Resources.ResultTextTableShortcut}"> <ui:SymbolIcon FontSize="18" Symbol="Table24" /> </ToggleButton> <Button x:Name="SettingsButton" AutomationProperties.Name="{x:Static p:Resources.Settings}" Click="SettingsMenuItem_Click" ToolTip="{x:Static p:Resources.Settings}"> <ui:SymbolIcon FontSize="18" Symbol="Settings24" /> </Button> <Button x:Name="CancelButton" Click="CancelMenuItem_Click" ToolTip="{x:Static p:Resources.CancelShortcut}"> <ui:SymbolIcon FontSize="18" Symbol="Dismiss24" /> </Button> </StackPanel> </Border> </Grid> </Window>
niels9001
412550abcd2f42bf8682588d75b190eb5ba2cfc7
7e0f69f7d4f8a018b7fff0f0bd1babb063800b40
Yep! Looks great!
TheJoeFin
171
microsoft/PowerToys
29,839
[TextExtractor] default enabled until Win10 + infobar in Settings page
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Making the TextExtractor module disabled by default for Win11 or greater and enabled until Win10. Adding an infobar to the settings page with recommendation to use the Snipping Tool instead (only visible for Win11 or greater) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #xxx - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed ![image](https://github.com/microsoft/PowerToys/assets/57342539/019fd026-67d3-4f2a-a1af-3c40e76de936)
null
2023-11-14 12:27:58+00:00
2023-11-20 15:49:24+00:00
src/settings-ui/Settings.UI/SettingsXAML/Views/PowerOcrPage.xaml
<Page x:Class="Microsoft.PowerToys.Settings.UI.Views.PowerOcrPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:controls="using:CommunityToolkit.WinUI.Controls" xmlns:custom="using:Microsoft.PowerToys.Settings.UI.Controls" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="using:CommunityToolkit.WinUI" AutomationProperties.LandmarkType="Main" mc:Ignorable="d"> <custom:SettingsPageControl x:Uid="TextExtractor" ModuleImageSource="ms-appx:///Assets/Settings/Modules/PowerOCR.png"> <custom:SettingsPageControl.ModuleContent> <StackPanel ChildrenTransitions="{StaticResource SettingsCardsAnimations}" Orientation="Vertical" Spacing="2"> <controls:SettingsCard x:Uid="TextExtractor_EnableToggleControl_HeaderText" HeaderIcon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerOcr.png}" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabledGpoConfigured, Converter={StaticResource BoolNegationConverter}}"> <ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.IsEnabled, Mode=TwoWay}" /> </controls:SettingsCard> <InfoBar x:Uid="GPO_IsSettingForced" IsClosable="False" IsOpen="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabledGpoConfigured}" IsTabStop="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabledGpoConfigured}" Severity="Informational" /> <InfoBar x:Uid="TextExtractor_SupportedLanguages" IsClosable="False" IsOpen="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}" IsTabStop="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}" Severity="Informational"> <InfoBar.ActionButton> <HyperlinkButton x:Uid="TextExtractor_SupportedLanguages_Link" NavigateUri="https://aka.ms/PowerToysOverview_TextExtractor#supported-languages" /> </InfoBar.ActionButton> </InfoBar> <custom:SettingsGroup x:Uid="Shortcut" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}"> <controls:SettingsCard x:Uid="Activation_Shortcut" HeaderIcon="{ui:FontIcon Glyph=&#xEDA7;}"> <custom:ShortcutControl MinWidth="{StaticResource SettingActionControlMinWidth}" HotkeySettings="{x:Bind Path=ViewModel.ActivationShortcut, Mode=TwoWay}" /> </controls:SettingsCard> <controls:SettingsCard x:Uid="TextExtractor_Languages"> <ComboBox x:Name="TextExtractor_ComboBox" MinWidth="{StaticResource SettingActionControlMinWidth}" DropDownOpened="TextExtractor_ComboBox_DropDownOpened" ItemsSource="{x:Bind Path=ViewModel.AvailableLanguages, Mode=OneWay}" Loaded="TextExtractor_ComboBox_Loaded" SelectedIndex="{x:Bind Path=ViewModel.LanguageIndex, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" SelectedValue="{Binding SelectedColorRepresentationValue, Mode=TwoWay}" /> </controls:SettingsCard> </custom:SettingsGroup> </StackPanel> </custom:SettingsPageControl.ModuleContent> <custom:SettingsPageControl.PrimaryLinks> <custom:PageLink x:Uid="LearnMore_TextExtractor" Link="https://aka.ms/PowerToysOverview_TextExtractor" /> </custom:SettingsPageControl.PrimaryLinks> <custom:SettingsPageControl.SecondaryLinks> <custom:PageLink Link="https://github.com/TheJoeFin/Text-Grab" Text="Based upon Joseph Finney's Text Grab" /> </custom:SettingsPageControl.SecondaryLinks> </custom:SettingsPageControl> </Page>
<Page x:Class="Microsoft.PowerToys.Settings.UI.Views.PowerOcrPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:controls="using:CommunityToolkit.WinUI.Controls" xmlns:custom="using:Microsoft.PowerToys.Settings.UI.Controls" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="using:CommunityToolkit.WinUI" AutomationProperties.LandmarkType="Main" mc:Ignorable="d"> <custom:SettingsPageControl x:Uid="TextExtractor" ModuleImageSource="ms-appx:///Assets/Settings/Modules/PowerOCR.png"> <custom:SettingsPageControl.ModuleContent> <StackPanel ChildrenTransitions="{StaticResource SettingsCardsAnimations}" Orientation="Vertical" Spacing="2"> <controls:SettingsCard x:Uid="TextExtractor_EnableToggleControl_HeaderText" HeaderIcon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerOcr.png}" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabledGpoConfigured, Converter={StaticResource BoolNegationConverter}}"> <ToggleSwitch x:Uid="ToggleSwitch" IsOn="{x:Bind ViewModel.IsEnabled, Mode=TwoWay}" /> </controls:SettingsCard> <InfoBar x:Uid="TextExtractor_UseSnippingToolWarning" IsClosable="False" IsOpen="{x:Bind Mode=OneWay, Path=ViewModel.IsWin11OrGreater}" IsTabStop="{x:Bind Mode=OneWay, Path=ViewModel.IsWin11OrGreater}" Severity="Informational" /> <InfoBar x:Uid="GPO_IsSettingForced" IsClosable="False" IsOpen="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabledGpoConfigured}" IsTabStop="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabledGpoConfigured}" Severity="Informational" /> <InfoBar x:Uid="TextExtractor_SupportedLanguages" IsClosable="False" IsOpen="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}" IsTabStop="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}" Severity="Informational"> <InfoBar.ActionButton> <HyperlinkButton x:Uid="TextExtractor_SupportedLanguages_Link" NavigateUri="https://aka.ms/PowerToysOverview_TextExtractor#supported-languages" /> </InfoBar.ActionButton> </InfoBar> <custom:SettingsGroup x:Uid="Shortcut" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}"> <controls:SettingsCard x:Uid="Activation_Shortcut" HeaderIcon="{ui:FontIcon Glyph=&#xEDA7;}"> <custom:ShortcutControl MinWidth="{StaticResource SettingActionControlMinWidth}" HotkeySettings="{x:Bind Path=ViewModel.ActivationShortcut, Mode=TwoWay}" /> </controls:SettingsCard> <controls:SettingsCard x:Uid="TextExtractor_Languages"> <ComboBox x:Name="TextExtractor_ComboBox" MinWidth="{StaticResource SettingActionControlMinWidth}" DropDownOpened="TextExtractor_ComboBox_DropDownOpened" ItemsSource="{x:Bind Path=ViewModel.AvailableLanguages, Mode=OneWay}" Loaded="TextExtractor_ComboBox_Loaded" SelectedIndex="{x:Bind Path=ViewModel.LanguageIndex, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" SelectedValue="{Binding SelectedColorRepresentationValue, Mode=TwoWay}" /> </controls:SettingsCard> </custom:SettingsGroup> </StackPanel> </custom:SettingsPageControl.ModuleContent> <custom:SettingsPageControl.PrimaryLinks> <custom:PageLink x:Uid="LearnMore_TextExtractor" Link="https://aka.ms/PowerToysOverview_TextExtractor" /> </custom:SettingsPageControl.PrimaryLinks> <custom:SettingsPageControl.SecondaryLinks> <custom:PageLink Link="https://github.com/TheJoeFin/Text-Grab" Text="Based upon Joseph Finney's Text Grab" /> </custom:SettingsPageControl.SecondaryLinks> </custom:SettingsPageControl> </Page>
donlaci
d7f0d0e5c14affd52038472f2cb4d9e20e10ad67
5e666556f4a21c05d676d8b57334f0e67fb5345b
Should use information.
htcfreek
172
microsoft/PowerToys
29,839
[TextExtractor] default enabled until Win10 + infobar in Settings page
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Making the TextExtractor module disabled by default for Win11 or greater and enabled until Win10. Adding an infobar to the settings page with recommendation to use the Snipping Tool instead (only visible for Win11 or greater) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #xxx - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed ![image](https://github.com/microsoft/PowerToys/assets/57342539/019fd026-67d3-4f2a-a1af-3c40e76de936)
null
2023-11-14 12:27:58+00:00
2023-11-20 15:49:24+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Header" xml:space="preserve"> <value>Quite Ok Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Description" xml:space="preserve"> <value>.qoi</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Header" xml:space="preserve"> <value>Quite OK Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Description" xml:space="preserve"> <value>.qoi</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Resize images from right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Rename files and folders from right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Danish.Content" xml:space="preserve"> <value>Danish</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Finnish.Content" xml:space="preserve"> <value>Finnish</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovak.Content" xml:space="preserve"> <value>Slovak</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="EnvironmentVariables.ModuleDescription" xml:space="preserve"> <value>A quick utility for managing environment variables.</value> </data> <data name="EnvironmentVariables.ModuleTitle" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="Shell_EnvironmentVariables.Content" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Environment Variables</value> </data> <data name="EnvironmentVariables_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your environment variables</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="EnvironmentVariables_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="Launch_EnvironmentVariables.Content" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="LearnMore_EnvironmentVariables.Text" xml:space="preserve"> <value>Learn more about Environment Variables</value> </data> <data name="Oobe_EnvironmentVariables.Description" xml:space="preserve"> <value>Environment Variables is a quick utility for managing environment variables.</value> </data> <data name="Oobe_EnvironmentVariables.Title" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the system environment variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> <data name="Peek_Preview_GroupSettings.Header" xml:space="preserve"> <value>Preview</value> </data> <data name="Peek_SourceCode_Header.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> </data> <data name="Peek_SourceCode_Header.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> </data> <data name="Peek_SourceCode_TryFormat.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="Peek_SourceCode_TryFormat.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Peek_SourceCode_WrapText.Content" xml:space="preserve"> <value>Wrap text</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Header" xml:space="preserve"> <value>Quite Ok Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Description" xml:space="preserve"> <value>.qoi</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Header" xml:space="preserve"> <value>Quite OK Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Description" xml:space="preserve"> <value>.qoi</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Resize images from right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Rename files and folders from right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_UseSnippingToolWarning.Title" xml:space="preserve"> <value>It is recommended to use the Snipping Tool instead of the TextExtractor module.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Danish.Content" xml:space="preserve"> <value>Danish</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Finnish.Content" xml:space="preserve"> <value>Finnish</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovak.Content" xml:space="preserve"> <value>Slovak</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="EnvironmentVariables.ModuleDescription" xml:space="preserve"> <value>A quick utility for managing environment variables.</value> </data> <data name="EnvironmentVariables.ModuleTitle" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="Shell_EnvironmentVariables.Content" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Environment Variables</value> </data> <data name="EnvironmentVariables_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your environment variables</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="EnvironmentVariables_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="Launch_EnvironmentVariables.Content" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="LearnMore_EnvironmentVariables.Text" xml:space="preserve"> <value>Learn more about Environment Variables</value> </data> <data name="Oobe_EnvironmentVariables.Description" xml:space="preserve"> <value>Environment Variables is a quick utility for managing environment variables.</value> </data> <data name="Oobe_EnvironmentVariables.Title" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the system environment variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> <data name="Peek_Preview_GroupSettings.Header" xml:space="preserve"> <value>Preview</value> </data> <data name="Peek_SourceCode_Header.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> </data> <data name="Peek_SourceCode_Header.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> </data> <data name="Peek_SourceCode_TryFormat.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="Peek_SourceCode_TryFormat.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Peek_SourceCode_WrapText.Content" xml:space="preserve"> <value>Wrap text</value> </data> </root>
donlaci
d7f0d0e5c14affd52038472f2cb4d9e20e10ad67
5e666556f4a21c05d676d8b57334f0e67fb5345b
```suggestion <value>It is recommended to use the Snipping Tool instead of the TextExtractor module.</value> ```
crutkas
173
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
not sure where it is thrown. But it has a typo: desktopshor**t**cutinstalled
htcfreek
174
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
I saw warnings in the last PRs that such entries can get simplyfied to only the singular version. Can you clean these cases up?
htcfreek
175
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
Shouldn't this and similar entries be in names.txt?
htcfreek
176
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
@jsoref Is ist "Singular=Plural" can be simplified or is it "Upper case=Lower case"?
htcfreek
177
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
That's exactly what I wanted to do 😉 I opened the pr to trigger new suggestions. Working on it. 🧰👨🏻‍🔧
Jay-o-Way
178
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
Yeah I saw a few other cases some time ago. I'll look over the entire list.
Jay-o-Way
179
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
I'd guess the first
Jay-o-Way
180
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
If a word is in the dictionary (whether base, extra, or via allow) then you don't get `s` stemming, it's only available if you're inventing a new word (i.e. adding it to `expect`). Including a word in lowercase in expect (because it's present in the repo) is enough to cover uppercase instances (and thus the uppercase flavor isn't needed in expect).
jsoref
181
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
What I meant is the following: ![image](https://github.com/microsoft/PowerToys/assets/61519853/e2ef8ca5-ad47-473c-bc7d-e93238de819e)
htcfreek
182
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
In this case, you can remove `flyouts` as it's covered by `flyout`. I'll have to see how hard it is to get that message to report the more general variant... (The code right now doesn't have that information readily available, but I should be able to do it...)
jsoref
183
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This `desktopshorcutinstalled` is the name of a registry value. I don't dare touch this. Pinging @jaimecbernardo or @stefansjfw ? https://github.com/microsoft/PowerToys/blob/9265136a64a727fefad2af5352755f6bfd50f445/installer/PowerToysSetup/Core.wxs#L69-L75
Jay-o-Way
184
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
in a diff PR, i removed the plural to be covered by flyout
crutkas
185
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
I'd suggest using `patterns.txt` for these -- you can use longer more precise patterns.
jsoref
186
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
I was thinking of simply renaming the file. Just wanna double-check the impact of that with people who know more about these files.
Jay-o-Way
187
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
The comment also applies to the `declatory` license item
jsoref
188
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
Source text needs to be updated. That'll resolve the issue.
Jay-o-Way
189
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
that's our key, I think. But at this point I guess I'd prefer not to touch it 🤷
jaimecbernardo
190
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is a name. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
191
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is a name. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
192
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is a username. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
193
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is a name. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
194
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is a name. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
195
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is a name. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
196
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is a name. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
197
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is a name. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
198
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is a name. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
199
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is a username. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
200
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is part of a username. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
201
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is a username. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
202
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is a name of a team, I think. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
203
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
This is the name of a team, I think. Why are we removing from names.txt and adding in expect.txt?
jaimecbernardo
204
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
I think these should be added alphabetically. They'll just be moved around when someone runs the script to automatically try to update the file.
jaimecbernardo
205
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
.github/actions/spell-check/expect.txt
aaaa abcdefghjkmnpqrstuvxyz abgr abi ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED accessibilityinsights Acl aclapi AClient AColumn acrt activatable ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adio adipiscing administra ADMINS adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger alekhyareddy aliquip ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE altdown alwaysontop amd AModifier AMPROPERTY AMPROPSETID ANDSCANS anges angularsen Animatable ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applets Applicationcan applicationframehost appmanifest APPNAME appref apps appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW arcosh ARemapped argb ari arik Arity arjunbalgovind ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arsinh artanh arw asdf asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS ative atl atlbase atlcom atleast atlfile atlstr ATRIOX Attribs aumid Aut Authenticode AUTHN AUTHZ AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE AYUV azman backtracer bak bbwe bck BESTEFFORT betadele betsegaw BGR bgra bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER bitmask BITSPIXEL bla BLACKONWHITE Blockquotes blogs Blt BLUEGRAY Bluetooth BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER Bopomofo bostrot BOTTOMALIGN BPBF bpmf bpp bricelam BRIGHTGREEN Browsable bsd bstr bthprops bti btn BTNFACE Bto buf bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BUTTONUP BVal BValue byapp BYPOSITION bytearray CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext cdecl CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor Changemove chdir CHILDACTIVATE CHILDWINDOW chrdavis Chrzan CHT cidl CIELAB CIEXYZ cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clayton clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS Cloneable closesocket clrcall Cls CLSCTX clsid Clusion cmder cmdline Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cmyk cne cnt coclass CODENAME codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY COLORONCOLOR colorpicker COLORREF comctl COMDAT comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl commodo compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT consectetur consequat Consolas constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT Controlz copiedcolorrepresentation cortana cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings CSIDL cso CSRW CStyle CSY CTest CTRLALTDEL Ctrls Ctx CUI cupidatat currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cvtsi cwd cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl damienleroy DARKPURPLE DARKTEAL DARKYELLOW datareader datatracker Datavalue dataversion DATAW davidegiacometti Dayof Dbg Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debian debugbreak DECLAR declatory declspec decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis Delimarsky DENORMAL Deondre depersist deprioritized deref deserunt DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllexport dllhost dllmain DNLEN dns DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dsc dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount ecyclebin EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile egistry egistrypreview eip ekus elease elemetry elit emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume endregion ENDSESSION enim ENTERSIZEMOVE ENU EOAC epicgames epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORLEVEL ERRORTITLE ESettings esize esource esrp estapp estart ests esult etl etstat ETW etwork EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN Exa exabyte examplehandler examplepowertoy EXAND Excepteur EXCLUDEFROMCAPTURE exdisp executionpolicy exename exif EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb EXSEL exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker fancymouse fancyzone FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR Farbraum FARPROC fdw feimage fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx Finalizers findfast firefox FIXEDFILEINFO flyout FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frankychen frm Froml FROMTOUCH FSCTL fsmgmt FTYPE Functiondiscoverykeys fwlink FZE gabime GAC gacutil Gaeilge Gaidhlig Galaxi GBarm Gbits Gbps GBs GCLP gcnew gcode gdi gdiplus GDISCALED GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETSTATE GETTEXT GETTEXTLENGTH GHND GMEM GNumber google gpedit gpo GPOCA gpp GPT gpu GSM gtm gui guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP HACCEL handlekeyboardhookevent hangeul hanselman Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset Hashtable hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND HBRUSH hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Heiko Helpline helptext HGFE hglobal hhk HHmmss HHOOK hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif highlighter HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKL HKLM HKPD HKU hlaueriksson HLOCAL HMD hmenu hmodule hmonitor HOLDENTER HOLDESC HOMEPATH homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Horvalds Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HPALETTE HRAWINPUT hread HREDRAW hres hresult hrgn HRSRC hsb HSCROLL hsi hsl hstring hsv htcfreek HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBase IBeam ICapture ICEBLUE IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR idx IDXGI IEnum ietf IExec IEXPLORE Iface IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics IGT iid Iindex IIO iiq IJson Ijwhost IKs ILogon IMAGEHLP imageresizer IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime imeutil inetcpl Infobar INFOEXAMPLE Infotip ingbuffer inheritdoc initguid Inkscape Inlines inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipc ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings isfinite IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject joefinapps jpe JPN jpnime Jsons jsonval junja jxr jyuwono KBDLLHOOKSTRUCT kbm kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanager keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydown keydropdowncontrol keyevent KEYEVENTF KEYIMAGE keynum keyremaps Keytool keyup KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd laboris laborum LAlt Lambson langword lastcodeanalysissucceeded Lastdevice Laute laviusmotileng LAYOUTRTL Lbl LBUTTON LBUTTONDBLCLK LBUTTONDOWN LBUTTONUP Lcid LCIDTo lcl Lclean LCONTROL LCtrl Ldone ldx LEFTDOWN LEFTSCROLLBAR LEFTUP lego len lepo LError Lessthan LEVELID LExit lhs lhwnd LIBID licate LIGHTORANGE LIGHTTURQUOISE lindex linkedin LINKOVERLAY linq LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnk LOADFROMFILE LOBYTE LOCALAPPDATA LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX LOn longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPBYTE LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR LPCWSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPPOINT LPQUERY lprc LPRECT LPSAFEARRAY LPSTR lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPVOID LPW lpwndpl LPWSTR LReader LRESULT lshift lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero lzw Mainwindow majortype MAJORVERSION makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK Markdig markdownpreviewhandler MARKDOWNPREVIEWHANDLERCPP Markovic martinchrzan martinmoene Maximizable MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested Mbits MBR MBs MBUTTON MBUTTONDBLCLK MBUTTONDOWN MBUTTONUP mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef Mega Melman MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic microsoft MIDDLEDOWN MIDDLEUP midl mii MIIM millis mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz MINORVERSION Miracast mjpg mkd mkdn mkv mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODECHANGE modernwpf MODESPRUNED mollit MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof Monthand Moq MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOUSELEAVE MOUSEMOVE MOUSEWHEEL MOVESIZEEND MOVESIZESTART mozilla MOZILLAPL MOZPL mpmc MRM MRT mru mrw msbuild msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL msix MSIXCA MSLLHOOKSTRUCT Mso msp mspaint msrc msstore mst msvc msvcp MTND Mul MULTIPLEUSE multizone muxc mvvm mwb MWBEx myfile MYICON NAMECHANGE nameof namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE NCol nconsectetur ncpa NCPAINT NCRBUTTONDBLCLK NCRBUTTONDOWN NCRBUTTONUP NCRENDERING ndp NEEDDISPATCH needinfo Nemeth NESW netcore netcoreapp netcpl netframework Netscape netsetup netsh Neue newcolor newdev newitem newpath newrow newsgroups Newtonsoft nielslaute NIF nint NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE NONAME nonclient NONCONVERT NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE nostrud notfound NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL notmatch Noto NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOUPDATE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nuint nullonfailure numberbox NUMLOCK numpad nupkg nwc Objbase OBJID objidl oblitum obmikh occaecat ocr Ocrsettings odbc odbccp Oem officehubintl officia ofs oid oldcolor olditem oldnewthing oldpath oldtheme oleaut OLECHAR OLEDB OLIVEGREEN onebranch onenote onstd oobe OOBEPT ools opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi otating otifications OUTOFCONTEXT OUTOFMEMORY outpin Outptr outputtype outro outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW Packagemanager PACL PAINTSTRUCT PALEBLUE palenshus PALETTEWINDOW paramref PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING PArgb parray PARTIALCONFIRMATIONDIALOGTITLE pasteplain PATCOPY pathcch PATHEXT Pathto PATINVERT PATPAINT PAUDIO pbc Pbgra PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdb pdbonly pdisp pdo pdto pdtobj pdw PDWORD pedrolamas pef PElems Pels PERCEIVEDFLAG perfmon pesi petabyte peteblois pevent PEXCEPTION pfn pfo pft pgp pguid PHANDLE phbm phbmp phwnd pici pid pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT pkey plib PLK ploc ploca plocm plugins pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW posix poweraccent powerlauncher POWEROCR powerpreview powerrename POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST powertoy POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc precomp Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previewpane previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata PROGRAMFILES proident projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptrun ptstr pui PULONG pwa pwcs pwsh PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps Quarternary QUERYENDSESSION QUERYOPEN QUEUESYNC Quickime QUNS qwertyuiopasdfghjklzxcvbnm qword qwrtyuiopsghjklzxvnm raf RAII RAlt randyrants Rasterize RAWINPUT RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid Rbp RBUTTON RBUTTONDBLCLK RBUTTONDOWN RBUTTONUP rclsid RCONTROL RCtrl READMODE READOBJECTS READWRITE recents RECTDESTINATION RECTL rectp rects RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID Refreshable REGCLS regedit regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath registrypreview REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr reinit REINSTALLMODE reloadable Remapper remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparent reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist resw resx retval rfc RGBQUAD rgbs rgelt rgf rgn rgs rhs ricardosantos RIDEV RIGHTDOWN RIGHTSCROLLBAR RIGHTUP riid ringbuffer RKey RLO RMENU RNumber roadmap robmensching Roboto rooler rop roslyn roundf ROUNDSMALL Rpc rpcrt RRF rrr RSAT rshift rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS Rutkas RValue rvm rwin rwl rwz ryanbodrug saahmedm sachaple sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED Santossio SAVEFAILED scancode scanled schedtasks SCID Scip scipbe Scode scoobe SCOPEID screenshot scrollviewer sddl SDKDDK sdns searchterm secpol Segoe Sekan SENDCHANGE sendinput sendvirtualinput Seraphima serverside SETCONTEXT setcursor setenv SETFOCUS SETFOREGROUND SETICON setlocal SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SFP SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo Shl shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol shortcutguide SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit should't showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT sid siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol singletones sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS skttl sku SLGP sln SMALLICON smartphone SMTO snd snwprintf softline somil Soref SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spam spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT sre SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow stackpanel standalone STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcall stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP stefan Stereolithography STGC STGM STGMEDIUM sticpl stl storelogo STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING stylecop Subdir subfolders subkey subkeys SUBLANG subquery subresource Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS systemroot SYSTEMTIME sysvol Tadele talynone tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetnametoken targetver taskbar taskkill tasklist taskschd TBM tchar Tcollab tcp tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon Templated templatenamespace terabyte testapp testcase testhost testprocess TEXCOORD textblock TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad Towindow tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed typedef TYPEKEY TYPEKEYBOARD TYPELIB TYPEMOUSE typeparam TYPESHORTCUT UAC UAL uap udit Udp uefi UHash UIA uid UIEx uipi UIs ULARGE ullamco ULONGLONG ums unapply unassign uncompilable Uncompress UNCPRIORITY UNDNAME UNICODETEXT Uninitialize uninstalling uninstantiated uniquifier Uniquifies unitconverter unittests Unk unknwn UNLEN Unmap unmute unner UNORM unregistering unremapped unsubscribe unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA USERDOMAIN Userenv userprofile USESHOWWINDOW USESTDHANDLES USRDLL Utc utf UType uuidof uwp uxtheme UYVY vabdq validmodulename valuegenerator Vanara variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq vec VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO Versioning VFT vget vgetq vid VIDCAP videoconference videoconferencevirtualdriver VIDEOINFOHEADER viewbox viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey VKTAB vmovl vorrq VOS vpaddlq Vpn vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere vtable Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv weakme webcam webpage websearch webserver website wekyb Wevtapi wgpocpl WHITEONBLACK whitespaces WIC wifi wikipedia wildcards winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx windowwalker winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook winkey WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver Winsock winspool winsta winternl WINTHRESHOLD winui winuiex WINVER winxamlmanager wistd withinrafael Withscript wix wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt WMKEYDOWN WMKEYUP wmp WMSYSKEYDOWN WMSYSKEYUP wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC wordpad workaround workflows workspaces wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize writefile WRITEOBJECTS Wrk wrl WSAEADDRINUSE WSAEADDRNOTAVAIL WSAECONNRESET wscui wsf wsh wsl wss wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwan Wwanpp xamlstyler Xavalon XAxis xbf Xbox XBUTTON XBUTTONDBLCLK XBUTTONDOWN XBUTTONUP XDocument XDOWN XElement xfd XFile XIncrement XLoc XNamespace XOffset XPels XPixel XResource xsi xstyler XStr XUP XVIRTUALSCREEN xxxxxx YAxis ycv Yeet YIncrement yinle yinwang yinyue YOffset Youdao YPels YResolution YStr YUY yuyoyuppe YUYV YVIRTUALSCREEN YVU YVYU ZEROINIT ZIndex zipfile zipfolder zonable zoneset Zoneszonabletester Zykova zzz
aaaa abcdefghjkmnpqrstuvxyz abgr ABlocked ABOUTBOX Abug accctrl Acceleratorkeys ACCEPTFILES ACCESSDENIED aclapi AClient AColumn acrt ACTIVATEAPP activationaction ADDUNDORECORD ADifferent adml admx advapi advfirewall AFeature AFFINETRANSFORM AFX AGGREGATABLE AHybrid ALarger ALLAPPS ALLINPUT ALLOWUNDO ALLVIEW ALPHATYPE AModifier AMPROPERTY AMPROPSETID ANDSCANS ansicolor ANull AOC aocfnapldcnfbofgmbbllojgocaelgdd APARTMENTTHREADED APeriod apidl APIENTRY APIIs Apm APPBARDATA appdata APPEXECLINK appium Applicationcan applicationframehost appmanifest APPNAME appref appsettings appwindow appwiz APSTUDIO AQS ARandom ARCHITEW ARemapped ari ARPINSTALLLOCATION ARPPRODUCTICON ARRAYSIZE arw asf AShortcut ASingle ASSOCCHANGED ASYNCWINDOWPLACEMENT ASYNCWINDOWPOS atl atlbase atlcom atleast atlfile atlstr ATRIOX aumid Authenticode AUTOHIDE AUTOMATIONPROPERTIES Autorun AUTOUPDATE AValid awakeness AWAYMODE azman backtracer bbwe bck BESTEFFORT bhid bigbar bigobj binlog BITMAPFILEHEADER bitmapimage BITMAPINFO BITMAPINFOHEADER BITSPIXEL bla Blockquotes blogs Blt BLURBEHIND BLURREGION bmi bms BNumber BOKMAL bootstrapper BOOTSTRAPPERINSTALLFOLDER bostrot BOTTOMALIGN BPBF bpmf bpp Browsable bsd bthprops bti BTNFACE bugreport BUILDARCH BUILDNUMBER buildtask buildtransitive BVal BValue byapp BYPOSITION CALG callbackptr calpwstr Cangjie CANRENAME CAPTUREBLT CAPTURECHANGED CAtl cch CCHDEVICENAME CCHFORMNAME CCom CContext CDeclaration CDEF cdpx CElems CENTERALIGN ceq certlm certmgr cguid CHANGECBCHAIN changecursor CHILDACTIVATE CHILDWINDOW CHT cidl cim CImage cla clangformat CLASSDC CLASSNOTAVAILABLE clickable clickonce CLIENTEDGE clientid clientside CLIPBOARDUPDATE CLIPCHILDREN CLIPSIBLINGS closesocket clrcall CLSCTX Clusion cmder Cmds CMIC CMINVOKECOMMANDINFO CMINVOKECOMMANDINFOEX CMock CMONITORS cmpgt cne coclass codeofconduct codereview Codespaces codicon COINIT colorconv colorformat colorhistory colorhistorylimit COLORKEY comctl comdef comdlg comexp cominterop commandline COMMANDTITLE commctrl compmgmt COMPOSITIONFULL comsupp comsuppw comsuppwd comutil CONFIGW CONFLICTINGMODIFIERKEY CONFLICTINGMODIFIERSHORTCUT CONOUT constexpr consts contentdialog contentfiles CONTEXTHELP CONTEXTMENUHANDLER CONTROLL CONTROLPARENT copiedcolorrepresentation cotaskmem COULDNOT countof CPower cppblog cppruntime cppstd cppwinrt CProj createdump CREATESCHEDULEDTASK CREATESTRUCT CREATEWINDOWFAILED CRECT critsec Crossdevice CRSEL crw CSearch CSettings cso CSRW CStyle CSY CTest currentculture CURRENTDIR CURSORINFO cursorpos customaction CUSTOMACTIONTEST CVal cvd CVirtual cvtepu cxfksword CXSCREEN CXSMICON CXVIRTUALSCREEN cyberrex CYSCREEN CYSMICON CYVIRTUALSCREEN cziplib Dac dacl datareader datatracker dataversion Dayof Dbghelp DBLCLKS DBLEPSILON DCapture DCBA DCOM dcommon dcomp DComposition dcr dcs ddd DDEIf DDevice ddf DDxgi Deact debugbreak decryptor Dedup DEFAULTBOOTSTRAPPERINSTALLFOLDER DEFAULTCOLOR DEFAULTFLAGS DEFAULTONLY DEFAULTTONEAREST DEFAULTTONULL DEFAULTTOPRIMARY DEFERERASE DEFPUSHBUTTON deinitialization DELA DELETEDKEYIMAGE DELETESCANS deletethis DENORMAL depersist deprioritized DESKTOPABSOLUTEEDITING DESKTOPABSOLUTEPARSING desktopshorcutinstalled desktopwindowxamlsource DEU devblogs devdocs devenum devmgmt DEVMODEW DEVMON devpkey DEVSOURCE DIIRFLAG dimm directshow DISABLEASACTIONKEY diskmgmt DISPLAYCHANGE DISPLAYCONFIG displayname divyan Dlg DLGFRAME DLGMODALFRAME dlib dllhost dllmain DNLEN DONOTROUND DONTVALIDATEPATH dotnet DPICHANGED DPIs DPolicy DPSAPI DQTAT DQTYPE DRAWCLIPBOARD DRAWFRAME drawingcolor dreamsofameaningfullife drf drivedetectionwarning dshow DSTINVERT DUMMYUNIONNAME dutil DVASPECT DVASPECTINFO DVH DVHD dvr DVSD DVSL DVTARGETDEVICE dwl dwm dwmapi DWMCOLORIZATIONCOLORCHANGED DWMCOMPOSITIONCHANGED DWMNCRENDERINGCHANGED Dwmp DWMSENDICONICLIVEPREVIEWBITMAP DWMSENDICONICTHUMBNAIL DWMWA DWMWCP DWMWINDOWATTRIBUTE DWMWINDOWMAXIMIZEDCHANGE DWORDLONG dworigin dwrite dxgi dxgidebug dxgiformat dxguid ecount EData Edid EDITKEYBOARD editkeyboardwindow EDITSHORTCUTS editshortcutswindow EFile eip ekus emmintrin Emoji ENABLEDELAYEDEXPANSION enabledisable ENABLEDPOPUP encodedlaunch encryptor endpointvolume ENDSESSION ENTERSIZEMOVE ENU EOAC epu ERASEBKGND EREOF EResize ERole ERRORIMAGE ERRORTITLE ESettings esize esrp etl ETW EUQ eurochange eventlog eventvwr everytime evt EWXFORCE EWXFORCEIFHUNG EWXLOGOFF EWXPOWEROFF EWXREBOOT EWXSHUTDOWN examplehandler examplepowertoy EXAND EXCLUDEFROMCAPTURE exdisp executionpolicy exename EXITSIZEMOVE exlist EXPCMDFLAGS EXPCMDSTATE explr exppowertoys exptas exsb exstyle EXTENDEDKEY EXTENDEDVERBS EXTRINSICPROPERTIES eyetracker FANCYZONESDRAWLAYOUTTEST FANCYZONESEDITOR FARPROC fdw fff FILEEXPLORER FILEFLAGS FILEFLAGSMASK FILELOCKSMITH FILELOCKSMITHEXT FILELOCKSMITHLIB FILELOCKSMITHLIBINTEROP FILEOP FILEOS FILESUBTYPE FILESYSPATH Filetime FILEVERSION Filtergraph Filterkeyboard Filterx findfast FIXEDFILEINFO flyouts FOF FOFX FOLDERID folderpath FORCEMINIMIZE formatetc FRAMECHANGED frm Froml FROMTOUCH fsmgmt Functiondiscoverykeys FZE gacutil Gaeilge Gaidhlig GBarm GCLP gdi gdiplus GDISCALED gdnbaselines GEmoji GETCLIENTAREAANIMATION GETDESKWALLPAPER GETDLGCODE GETDPISCALEDSIZE GETICON GETMINMAXINFO GETPROPERTYSTOREFLAGS GETSCREENSAVERRUNNING GETSECKEY GETTEXTLENGTH GHND GMEM GNumber gpedit gpo GPOCA gpp GPT gpu GSM gtm guiddata guiddef guidgenerator GUITHREADINFO GValue gwl GWLP handlekeyboardhookevent hangeul Hanzi Hardlines hardlinks HARDWAREINPUT hashcode Hashset hashtag HASHVAL hbitmap hbm hbmp hbr HBRBACKGROUND hcblack HCERTSTORE HCRYPTHASH HCRYPTPROV hcursor hcwhite hdc hdrop hdwwiz HEB Helpline helptext HGFE hglobal hhk hhx Hiber Hiberboot HIBYTE hicon HIDEWINDOW hif HIMAGELIST himl hinst hinstance HIWORD HKCC HKCR HKCU hkey HKLM HKPD HKU HMD hmenu hmodule hmonitor homljgmgpmcbpjbnjpfijnhipfkiclkd HOOKPROC Hostbackdropbrush hotkeycontrol hotkeys hotlight hotspot HPAINTBUFFER HRAWINPUT HREDRAW hres hresult hrgn hsb HSCROLL hsi hstring HTCLIENT hthumbnail HTOUCHINPUT HTTRANSPARENT HVal HValue Hvci hwb HWHEEL HWINEVENTHOOK hwnd HWNDFIRST HWNDLAST HWNDNEXT HWNDPREV hyjiacan IBeam ICapture IClass ICONERROR IData IDD IDesktop IDirect idl idlist IDOn IDR IDXGI IEnum ietf IExec IEXPLORE IFACEMETHOD IFACEMETHODIMP IFile IFilter IGraphics iid Iindex iiq IJson Ijwhost IKs ILogon IMAGEHLP IMAGERESIZERCONTEXTMENU IMAGERESIZEREXT imageresizerinput imageresizersettings imagingdevices ime inetcpl Infobar INFOEXAMPLE Infotip initguid inorder INPC inproc INPUTHARDWARE INPUTKEYBOARD INPUTLANGCHANGED INPUTMOUSE inputparser INPUTSINK INPUTTYPE INSTALLDESKTOPSHORTCUT INSTALLDIR INSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOPREVIOUSINSTALLFOLDER INSTALLLOCATION INSTALLMESSAGE INSTALLPROPERTY installscopeperuser INSTALLSTARTMENUSHORTCUT INSTALLSTATE Inste Intelli interactable Interlop INTRESOURCE INVALIDARG invalidoperatioexception ipcmanager IPlugin IPower IPREVIEW ipreviewhandlervisualssetfont IProperty IPublic irprops isbi ISearch ISettings IShell isocpp iss ITask ith ITHUMBNAIL IUI IUnknown IWbem IWeb IWIC iwr IYUV JArray jfi jfif jgeosdfsdsgmkedfgdfgdfgbkmhcgcflmi jif jjw jobject jpe JPN jpnime Jsons jsonval junja jxr kdc keybd KEYBDDATA KEYBDINPUT keyboardeventhandlers keyboardmanagercommon KEYBOARDMANAGEREDITOR keyboardmanagerstate keyboardmanagerui keydropdowncontrol KEYEVENTF KEYIMAGE keynum keyremaps KILLFOCUS killrunner Knownfolders KSPROPERTY Kybd lastcodeanalysissucceeded Lastdevice LAYOUTRTL LCIDTo lcl Lclean Ldone ldx LEFTSCROLLBAR lego LError LEVELID LExit lhwnd LIBID licate lindex LINKOVERLAY LINQTo listview lld LLKH llkhf lmcons LMEM LMENU lnks LOADFROMFILE LOBYTE LOCALDISPLAY LOCALPACKAGE localport LOCALSYSTEM LOCATIONCHANGE LOGFONT LOGFONTW logon LOGPIXELSX longdate LONGLONG lowlevel LOWORD lparam LPBITMAPINFOHEADER LPCITEMIDLIST LPCMINVOKECOMMANDINFO LPCREATESTRUCT LPCRECT LPCTSTR lpdw lpfn LPINPUT lpmi LPMINMAXINFO LPMONITORINFO LPOSVERSIONINFOEXW LPQUERY lprc LPSAFEARRAY lpsz lpt LPTHREAD LPTOP lptpm LPTR LPTSTR LPW lpwndpl LReader LRESULT lstrcmp lstrcmpi lstrlen LTRB LTRREADING luid LUMA lusrmgr LVal LWA lwin LZero majortype makecab MAKEINTRESOURCE MAKEINTRESOURCEA MAKEINTRESOURCEW makepri manifestdependency MAPPEDTOSAMEKEY MAPTOSAMESHORTCUT MAPVK MARKDOWNPREVIEWHANDLERCPP MAXIMIZEBOX MAXSHORTCUTSIZE maxversiontested MBR mdc MDICHILD MDL mdtext mdtxt mdwn MEDIASUBTYPE mediatype mef MENUBREAK MENUITEMINFO MENUITEMINFOW MERGECOPY MERGEPAINT Metadatas metafile mfapi mfc mfidl mfobjects mfplat Mfsensorgroup mftransform Mgmt mic midl mii MIIM mindaro Minimatch Minimizable MINIMIZEBOX MINIMIZEEND MINIMIZESTART miniz Miracast mjpg mkdn mlcfg mmc mmcexe MMdd mmdeviceapi mmi mmsys mmsystem mockapi MODESPRUNED MONITORENUMPROC MONITORINFO MONITORINFOEX MONITORINFOEXW monitorinfof MOUSEACTIVATE MOUSEDATA MOUSEEVENTF MOUSEHWHEEL MOUSEINPUT MOVESIZEEND MOVESIZESTART mpmc MRM MRT mru mrw msc msclr mscorlib msdata msedge MSGFLT MSIFASTINSTALL MSIHANDLE msiquery MSIRESTARTMANAGERCONTROL MSIXCA MSLLHOOKSTRUCT Mso msp msrc msstore mst msvcp MTND MULTIPLEUSE multizone muxc mvvm MWBEx MYICON NAMECHANGE namespaceanddescendants nao NCACTIVATE ncc NCCALCSIZE NCCREATE NCDESTROY NCHITTEST NCLBUTTONDBLCLK NCLBUTTONDOWN NCLBUTTONUP NCMBUTTONDBLCLK NCMBUTTONDOWN NCMBUTTONUP NCMOUSELEAVE NCMOUSEMOVE nconsectetur ncpa NCPAINT NCRENDERING ndp NEEDDISPATCH needinfo netcore netcoreapp netcpl netframework netsetup netsh newcolor newdev newitem newpath newrow NIF NLD NLog NLSTEXT NNN NOACTIVATE NOAGGREGATION NOASYNC NOCLOSEPROCESS NOCOALESCE NOCOPYBITS nodeca nodiscard nodoc NODRAWCAPTION NODRAWICON NOINHERITLAYOUT NOINTERFACE NOLINKINFO NOMINMAX NOMIRRORBITMAP NOMOVE nonclient NONELEVATED NONINFRINGEMENT nonstd NOOWNERZORDER NOPARENTNOTIFY NOREDIRECTIONBITMAP NOREDRAW NOREMOVE norename NOREPEAT NOREPOSITION norestart NORMALDISPLAY NORMALUSER NOSEARCH NOSENDCHANGING NOSIZE NOTIFICATIONSDLL NOTIFYICONDATAW NOTIMPL NOTOPMOST NOTRACK NOTSRCCOPY NOTSRCERASE NOZORDER NPH NResize nrw nsunt NTAPI ntdll ntfs NTSTATUS nugets nullonfailure numberbox nwc Objbase objidl ocr Ocrsettings odbccp officehubintl ofs oldcolor olditem oldpath oldtheme oleaut OLECHAR onebranch OOBEPT opencode opensource openxmlformats OPTIMIZEFORINVOKE ORAW ori ORPHANEDDIALOGTITLE ORSCANS oss ostr OSVERSIONINFOEX OSVERSIONINFOEXW osvi OUTOFCONTEXT outpin Outptr outputtype outsettings OVERLAPPEDWINDOW overlaywindow Oversampling OWNDC OWNERDRAW PACL PAINTSTRUCT PALETTEWINDOW PARENTNOTIFY PARENTRELATIVEEDITING PARENTRELATIVEFORADDRESSBAR PARENTRELATIVEPARSING parray PARTIALCONFIRMATIONDIALOGTITLE PATCOPY pathcch Pathto PATINVERT PATPAINT PAUDIO pbc PBlob pcb pcch pcelt pch PCIDLIST pcs PCWSTR pdisp pdo pdto pdtobj pdw pef PElems Pels PERCEIVEDFLAG perfmon pesi pevent PEXCEPTION pfn pfo pft pgp pguid phbm phbmp phwnd pici pidl PIDLIST PINDIR pinfo pinvoke pipename PKBDLLHOOKSTRUCT plib PLK ploc ploca plocm pluginsmodel PMSIHANDLE Pnp Popups POPUPWINDOW POWERRENAMECONTEXTMENU powerrenameinput POWERRENAMETEST POWERTOYNAME powertoyssetup powertoysusersetup Powrprof ppenum ppidl ppmt pprm pproc ppshv ppsi ppsid ppsrm ppsrree ppstm ppsz pptal ppv prc Prefixer Preinstalled prevhost previewer PREVIEWHANDLERFRAMEINFO previouscamera PREVIOUSINSTALLFOLDER PREVIOUSVERSIONSINSTALLED prevpane prgms pri PRINTCLIENT printmanagement prm proactively PROCESSKEY processthreadsapi PRODEXT PRODUCTVERSION Progman programdata projectname PROPBAG PROPERTYKEY propkey propvarutil prvpane psapi pscid PSECURITY psfgao psfi PSMODULEPATH Psr psrm psrree pstatstg pstm pstr pstream pstrm PSYSTEM psz ptb ptc ptd PTOKEN PToy ptstr pui pwa pwcs PWSTR pwsz pwtd QDC qianlifeng qit QITAB QITABENT qoi qps QUERYENDSESSION QUERYOPEN QUEUESYNC QUNS qwertyuiopasdfghjklzxcvbnm qwrtyuiopsghjklzxvnm raf RAII RAlt Rasterize RAWINPUTDEVICE RAWINPUTHEADER RAWPATH rbhid rclsid READMODE READOBJECTS recents RECTDESTINATION rectp RECTSOURCE recyclebin redirectedfrom Redist redistributable reencode reencoded REFCLSID REFGUID REFIID REGCLS regfile REGFILTER REGFILTERPINS REGISTERCLASSFAILED REGISTRYHEADER registrypath REGISTRYPREVIEWEXT registryroot regkey REGPINTYPES regroot regsvr REINSTALLMODE reloadable remappings REMAPSUCCESSFUL REMAPUNSUCCESSFUL Remotable remoteip Removelnk renamable RENAMEONCOLLISION Renamer reparented reparenting reparse reportbug requery requerying rescap resgen resheader resizers RESIZETOFIT resmimetype RESOURCEID RESTORETOMAXIMIZED restrictedcapabilities restrictederrorinfo resultlist RGBQUAD rgbs rgelt rgf rgn rgs RIDEV RIGHTSCROLLBAR riid ringbuffer RKey RNumber roadmap rop roundf ROUNDSMALL rpcrt RRF rrr rsop Rsp Rstrtmgr RTB RTLREADING ruleset runas rundll rungameid RUNLEVEL runsettings runtimeclass runtimeobject runtimepack runtimes RUS RValue rvm rwin rwl rwz sacl safeprojectname SAMEKEYPREVIOUSLYMAPPED SAMESHORTCUTPREVIOUSLYMAPPED SAVEFAILED scanled schedtasks SCID Scip scipbe Scode screenshots scrollviewer sddl SDKDDK sdns searchterm secpol SENDCHANGE sendinput sendvirtualinput serverside SETCONTEXT setcursor SETFOCUS SETFOREGROUND SETICON SETREDRAW SETTEXT SETTINGCHANGE SETTINGSCHANGED settingsheader settingshotkeycontrol setvariable SETWORKAREA setzero sfgao SFGAOF SHANDLE sharpkeys SHCNE SHCNF SHCONTF shcore shellapi SHELLDETAILS SHELLDLL shellex SHELLEXECUTEINFO SHELLEXECUTEINFOW shellscalingapi SHFILEINFO SHGDNF SHGFI shinfo shldisp shlobj shlwapi shmem shobjidl SHORTCUTATLEAST shortcutcontrol SHORTCUTMAXONEACTIONKEY SHORTCUTNOREPEATEDMODIFIER SHORTCUTONEACTIONKEY SHORTCUTSTARTWITHMODIFIER Shortcuttool shortdate SHORTPATH shortsplit showcolorname SHOWDEFAULT SHOWELEVATIONPROMPT SHOWMAXIMIZED SHOWMINIMIZED SHOWMINNOACTIVE SHOWNA SHOWNOACTIVATE SHOWNORMAL SHOWWINDOW shtypes sia SIATTRIBFLAGS SICHINT SIDs siex sigdn SIGNINGSCENARIO Signtool SINGLEKEY singlekeyremapcontrol sipolicy SIZEBOX Sizename SIZENESW SIZENS SIZENWSE sizeread SIZEWE SKIPOWNPROCESS sku SLGP sln SMALLICON smartphone SMTO snwprintf softline SOURCECLIENTAREAONLY SOURCEHEADER sourcesdirectory spdisp spdlog spdo spesi splitwstring spsi spsia spsrm spsv SRCAND SRCCOPY SRCERASE Srch SRCINVERT SRCPAINT SResize srf srme srre srw srwlock sse ssf STACKFRAME stackoverflow STARTF startupapps STARTUPINFO STARTUPINFOEX STARTUPINFOW startupscreen STATFLAG STATICEDGE STATSTG stdafx STDAPI stdcpp stdcpplatest STDMETHODCALLTYPE STDMETHODIMP STGC STGM STGMEDIUM sticpl stl storelogo streamjsonrpc STRINGIZE stringtable stringval Strm Strmiids Strret strsafe strutil sttngs Stubless STYLECHANGED STYLECHANGING subkeys SUBLANG subquery Superbar sut svchost SVE SVGIn SVGIO svgz SWC SWFO SWP SWRESTORE SYMED SYMOPT SYNCMFT SYNCPAINT SYSCHAR SYSCOLORCHANGE SYSCOMMAND SYSDEADCHAR sysdm SYSICONINDEX SYSKEY syskeydown SYSKEYUP SYSLIB SYSMENU SYSTEMAPPS SYSTEMTIME tapp TApplication TApplied targ TARGETAPPHEADER TARGETDIR targetentrypoint TARGETHEADER targetver taskkill taskschd tchar Tcollab tcs tcscpy TCustom tdbuild TDefault TDevice telem telephon templatenamespace testhost testprocess TEXCOORD TEXTEXTRACTOR TEXTINCLUDE tgz themeresources THH THICKFRAME THISCOMPONENT THotkey thumbcache TILEDWINDOW timedate timediff timeunion timeutil Titlecase TKey TLayout tlb tlbimp TMPVAR TNP toggleswitch tonos toolkitcontrols toolkitconverters Toolset toolwindow TOPDOWNDIB TOUCHEVENTF TOUCHINPUT touchpad tracelogging traies transicc TRAYMOUSEMESSAGE triaging TRK trl Tsd TServer TStr TValue tweakme TWF tymed TYPEKEYBOARD TYPEMOUSE TYPESHORTCUT UAC UAL uap udit uefi UHash UIA UIEx ULONGLONG ums uncompilable UNCPRIORITY UNDNAME UNICODETEXT uninstantiated uniquifier Uniquifies unitconverter unittests unknwn UNLEN UNORM unregistering unremapped unvirtualized unwide UOffset UOI Updatelayout UPGRADINGPRODUCTCODE Uptool Usb USEDEFAULT USEFILEATTRIBUTES USERDATA Userenv USESHOWWINDOW USESTDHANDLES USRDLL UType uwp uxtheme vabdq validmodulename valuegenerator variantassignment vcamp vcdl vcgtq VCINSTALLDIR vcm Vcpkg VCRT vcruntime vcvars VDesktop vdi vdupq VERBSONLY VERBW VERIFYCONTEXT verrsrc VERSIONINFO VFT vget vgetq vid VIDCAP videoconferencevirtualdriver VIDEOINFOHEADER viewmodel vih VIRTUALDESK visiblecolorformats Visibletrue VKey vmovl vorrq VOS vpaddlq vqsubq VREDRAW vreinterpretq VSC VSCBD vscdb vsconfig VSCROLL vsetq VSM vso vsonline vstemplate VSTHRD VSTT vswhere Vtbl WANTPALM wbem wbemuuid WBounds Wca wcautil WCE wcex WClass wcsnicmp WDA wdp wdupenv webcam webpage websites wekyb Wevtapi wgpocpl WIC wifi wil winapi winappdriver wincodec Wincodecsdk wincolor windef windir WINDOWCREATED WINDOWEDGE WINDOWNAME WINDOWPLACEMENT WINDOWPOSCHANGED WINDOWPOSCHANGING windowsapp WINDOWSBUILDNUMBER Windowscodecs windowssearch windowssettings WINDOWSTYLES WINDOWSTYLESICON windowsx winerror WINEVENT winevt winexe winforms winfx winget wingetcreate Winhook WINL winlogon winmd winmm winnt winres winrt winsdk winsdkver winspool winsta winternl WINTHRESHOLD WINVER winxamlmanager wistd withinrafael Withscript wixproj wixtoolset WIXUI WKSG Wlkr wmain Wman WMI WMICIM wmimgmt wmp wnd WNDCLASS WNDCLASSEX WNDCLASSEXW WNDCLASSW WNDPROC workarounds wox wparam wpf wpftmp wpfui wpr wprp wql wregex WReserved WResize WRITEOBJECTS Wrk wrl wscui wsf wsh wsl wstr wsz WTA WTNCA wtoi WTS wtsapi WTSAT Wubi WVC Wwanpp XAxis XDocument XElement xfd XFile XIncrement XLoc XNamespace XPels XPixel XResource xsi XStr xstyler XUP XVIRTUALSCREEN xxxxxx YAxis Yeet YIncrement yinle yinyue YPels YResolution YStr YVIRTUALSCREEN ZEROINIT zonable zoneset Zoneszonabletester zzz newsgroups MOZILLAPL MOZPL # FALSE POSITIVES ## NOTICE.MD > MOZILLA PUBLIC LICENSE v1.1 declatory ## "PackagemanagerWrapper.cs" should be "PackageManagerWrapper.cs" Packagemanager
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
No specific reason. Just wasn't recognized as a name yet.
Jay-o-Way
206
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
doc/devdocs/modules/launcher/plugins/windowwalker.md
# Window Walker plugin The window walker plugin matches the user entered query with the open windows on the system. The user can switch to the found windows, close them or kill their process. ![Image of Window Walker plugin](/doc/images/launcher/plugins/windowwalker.png) ## Remarks ### UWP Apps - The process of an UWP app can't be detected correctly for windows that are minimized while searching. At this time they are assigned to the generic process `ApplicationFrameHost.exe`. If the user searches for such an window while it is not minimized, then the process gets assigned correctly/updated. ### Killing processes - Killing the Explorer process is only allowed, if each folder window is running in its own process. (See section `File Explorer setting` below.) - You can only kill elevated processes, if you have admin permissions (UAC). - If you kill the process of an UWP app window, you kill all instances of the app. All windows are assigned to the same process. - Windows of UWP apps don't know their process, until they are searched in non-minimized state. ### File Explorer setting - To kill the Process of an Explorer window, each window has to run in a separate process. Otherwise the process is the same one as the shell process and killing the shell process will crash the shell (Windows ui). - To enable this behavior the setting `Launch folder windows in a separate process` under `Folder Options > View` has to be enabled. - From PowerToys Run you can open the `Folder options` dialog by clicking the information message in the search results. The information message is only shown when searching with action keyword for explorer windows and can be hidden in the plugin settings. - Note: The folder option/process is evaluated in real time. After changing the setting it is enough to search again for the windows. ![Folder options for Window Walker](/doc/images/launcher/plugins/windowwalker_folder_options.png) ## Optional plugin settings - The optional plugin settings are implemented via the [`ISettingProvider`](/src/modules/launcher/Wox.Plugin/ISettingProvider.cs) interface from `Wox.Plugin` project. - All available settings for the plugin are defined in the [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class of the plugin. The settings can be accessed everywhere in the plugin code via the static class instance `WindowWalkerSettings.Instance`. - We have the following settings that the user can configure to change the behavior of the plugin: | Key | Default value | Name/Description | |--------------|-----------|------------| | `ResultsFromVisibleDesktopOnly` | `false` | Show only results from visible desktop | | `SubtitleShowPid` | `false` | Show process id in subtitle | | `SubtitleShowDesktopName` | `true` | Show desktop name in subtitle (If two or more desktops exist) | | `ConfirmKillProcess` | `true` | Request confirmation when killing a process | | `KillProcessTree` | `false` | Kill process and it's child processes | | `OpenAfterKillAndClose` | `false` | Stay open after closing windows and killing processes (Not working with kill process confirmation) | | `HideKillProcessOnElevatedProcesses` | `false` | Hide "kill process" button if additional permissions required | | `HideExplorerSettingInfo` | `false` | Hide Explorer process information | ## Technical details ### [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) - The window walker plugin uses the `EnumWindows` function to enumerate all the open windows in the [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) class. ### [`SearchController.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) - The [`SearchController`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) encapsulates the functions needed to search and find matches. - It is responsible for updating the search text and performing a fuzzy search on all the open windows. ### [`Window.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) - The [`Window`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) class represents a specific window and has functions to get the name of the window, the state of the window (whether it is visible or not), the `SwitchTowindow` function which switches the desktop focus to the selected window and the `CloseThisWindow` function which closes the window. The `SwitchTowindow` action is performed when the user clicks on a window walker plugin result. - The `Window` class holds a static cache with the process information of all windows we know so far and each window instance has a property which holds its process information (name, file, ...). The process data in the cache and the window property are of the type `WindowProcess`. - To get the desktop information for a window, we use the common [`VirtualDesktopHelper`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VirtualDesktopHelper.cs) in `Wox.Plugin` project. The instance of `VirtualDesktopHelper` is cached in the [`Main`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Main.cs) class of the plugin at runtime. The desktop information is stored in a property of the type [`VDesktop`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VDesktop.cs). ### [`WindowProcess.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) - The [`WindowProcess`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) class represents a specific process for a window. - It contains static methods to query process information from the system and instance methods/properties to hold/retrieve the process information we want to know about a window's process. - Additionally, it contains the method `KillThisProcess` to kill the process. (If the user has not enough permissions to kill a process they are requested via UAC.) ### [`ResultHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) - The [`ResultHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) class contains the code to create the list with all results for PT Run based on the data returned from `SearchController` class. - There is a special result that is added if the folder windows doesn't run in separate processes and the user searches for Explorer windows using the action keyword. - This result informs the user that there is a setting that must be enabled to be able to kill Explorer processes. - The result can be disabled in plugin options. When it is clicked it opens the folder options. ### [`ContextMenuHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) - The [`ContextMenuHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) class provides the code for the context menu items. ### [`WindowWalkerSettings.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) - The [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class provides access to all optional plugin settings. - The class has a static property called `Instance` that holds an instance of the class itself. This allows us to access the settings from everywhere in the plugin code without having additional parameters in our methods. ### Score The window walker plugin uses [`FuzzyMatching`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/FuzzyMatching.cs) to get the matching indices and calculates the score by creating a 2 dimensional array of the window and the query text. ## [Unit Tests](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) We have a [Unit Test project](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) that executes various test to ensure that the plugin works as expected. ### [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) - The [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) class contains tests to validate that all settings exist and that they have the correct default values.
# Window Walker plugin The window walker plugin matches the user entered query with the open windows on the system. The user can switch to the found windows, close them or kill their process. ![Image of Window Walker plugin](/doc/images/launcher/plugins/windowwalker.png) ## Remarks ### UWP Apps - The process of an UWP app can't be detected correctly for windows that are minimized while searching. At this time they are assigned to the generic process `ApplicationFrameHost.exe`. If the user searches for such an window while it is not minimized, then the process gets assigned correctly/updated. ### Killing processes - Killing the Explorer process is only allowed, if each folder window is running in its own process. (See section `File Explorer setting` below.) - You can only kill elevated processes, if you have admin permissions (UAC). - If you kill the process of an UWP app window, you kill all instances of the app. All windows are assigned to the same process. - Windows of UWP apps don't know their process, until they are searched in non-minimized state. ### File Explorer setting - To kill the Process of an Explorer window, each window has to run in a separate process. Otherwise the process is the same one as the shell process and killing the shell process will crash the shell (Windows ui). - To enable this behavior the setting `Launch folder windows in a separate process` under `Folder Options > View` has to be enabled. - From PowerToys Run you can open the `Folder options` dialog by clicking the information message in the search results. The information message is only shown when searching with action keyword for explorer windows and can be hidden in the plugin settings. - Note: The folder option/process is evaluated in real time. After changing the setting it is enough to search again for the windows. ![Folder options for Window Walker](/doc/images/launcher/plugins/windowwalker_folder_options.png) ## Optional plugin settings - The optional plugin settings are implemented via the [`ISettingProvider`](/src/modules/launcher/Wox.Plugin/ISettingProvider.cs) interface from `Wox.Plugin` project. - All available settings for the plugin are defined in the [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class of the plugin. The settings can be accessed everywhere in the plugin code via the static class instance `WindowWalkerSettings.Instance`. - We have the following settings that the user can configure to change the behavior of the plugin: | Key | Default value | Name/Description | |--------------|-----------|------------| | `ResultsFromVisibleDesktopOnly` | `false` | Show only results from visible desktop | | `SubtitleShowPid` | `false` | Show process id in subtitle | | `SubtitleShowDesktopName` | `true` | Show desktop name in subtitle (If two or more desktops exist) | | `ConfirmKillProcess` | `true` | Request confirmation when killing a process | | `KillProcessTree` | `false` | Kill process and it's child processes | | `OpenAfterKillAndClose` | `false` | Stay open after closing windows and killing processes (Not working with kill process confirmation) | | `HideKillProcessOnElevatedProcesses` | `false` | Hide "kill process" button if additional permissions required | | `HideExplorerSettingInfo` | `false` | Hide Explorer process information | ## Technical details ### [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) - The window walker plugin uses the `EnumWindows` function to enumerate all the open windows in the [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) class. ### [`SearchController.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) - The [`SearchController`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) encapsulates the functions needed to search and find matches. - It is responsible for updating the search text and performing a fuzzy search on all the open windows. ### [`Window.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) - The [`Window`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) class represents a specific window and has functions to get the name of the window, the state of the window (whether it is visible or not), the `SwitchToWindow` function which switches the desktop focus to the selected window and the `CloseThisWindow` function which closes the window. The `switchToWindow` action is performed when the user clicks on a window walker plugin result. - The `Window` class holds a static cache with the process information of all windows we know so far and each window instance has a property which holds its process information (name, file, ...). The process data in the cache and the window property are of the type `WindowProcess`. - To get the desktop information for a window, we use the common [`VirtualDesktopHelper`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VirtualDesktopHelper.cs) in `Wox.Plugin` project. The instance of `VirtualDesktopHelper` is cached in the [`Main`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Main.cs) class of the plugin at runtime. The desktop information is stored in a property of the type [`VDesktop`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VDesktop.cs). ### [`WindowProcess.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) - The [`WindowProcess`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) class represents a specific process for a window. - It contains static methods to query process information from the system and instance methods/properties to hold/retrieve the process information we want to know about a window's process. - Additionally, it contains the method `KillThisProcess` to kill the process. (If the user has not enough permissions to kill a process they are requested via UAC.) ### [`ResultHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) - The [`ResultHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) class contains the code to create the list with all results for PT Run based on the data returned from `SearchController` class. - There is a special result that is added if the folder windows doesn't run in separate processes and the user searches for Explorer windows using the action keyword. - This result informs the user that there is a setting that must be enabled to be able to kill Explorer processes. - The result can be disabled in plugin options. When it is clicked it opens the folder options. ### [`ContextMenuHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) - The [`ContextMenuHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) class provides the code for the context menu items. ### [`WindowWalkerSettings.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) - The [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class provides access to all optional plugin settings. - The class has a static property called `Instance` that holds an instance of the class itself. This allows us to access the settings from everywhere in the plugin code without having additional parameters in our methods. ### Score The window walker plugin uses [`FuzzyMatching`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/FuzzyMatching.cs) to get the matching indices and calculates the score by creating a 2 dimensional array of the window and the query text. ## [Unit Tests](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) We have a [Unit Test project](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) that executes various test to ensure that the plugin works as expected. ### [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) - The [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) class contains tests to validate that all settings exist and that they have the correct default values.
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
```suggestion - The [`Window`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) class represents a specific window and has functions to get the name of the window, the state of the window (whether it is visible or not), the `SwitchToWindow` function which switches the desktop focus to the selected window and the `CloseThisWindow` function which closes the window. The `SwitchToWindow` action is performed when the user clicks on a window walker plugin result. ```
htcfreek
207
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
doc/devdocs/modules/launcher/plugins/windowwalker.md
# Window Walker plugin The window walker plugin matches the user entered query with the open windows on the system. The user can switch to the found windows, close them or kill their process. ![Image of Window Walker plugin](/doc/images/launcher/plugins/windowwalker.png) ## Remarks ### UWP Apps - The process of an UWP app can't be detected correctly for windows that are minimized while searching. At this time they are assigned to the generic process `ApplicationFrameHost.exe`. If the user searches for such an window while it is not minimized, then the process gets assigned correctly/updated. ### Killing processes - Killing the Explorer process is only allowed, if each folder window is running in its own process. (See section `File Explorer setting` below.) - You can only kill elevated processes, if you have admin permissions (UAC). - If you kill the process of an UWP app window, you kill all instances of the app. All windows are assigned to the same process. - Windows of UWP apps don't know their process, until they are searched in non-minimized state. ### File Explorer setting - To kill the Process of an Explorer window, each window has to run in a separate process. Otherwise the process is the same one as the shell process and killing the shell process will crash the shell (Windows ui). - To enable this behavior the setting `Launch folder windows in a separate process` under `Folder Options > View` has to be enabled. - From PowerToys Run you can open the `Folder options` dialog by clicking the information message in the search results. The information message is only shown when searching with action keyword for explorer windows and can be hidden in the plugin settings. - Note: The folder option/process is evaluated in real time. After changing the setting it is enough to search again for the windows. ![Folder options for Window Walker](/doc/images/launcher/plugins/windowwalker_folder_options.png) ## Optional plugin settings - The optional plugin settings are implemented via the [`ISettingProvider`](/src/modules/launcher/Wox.Plugin/ISettingProvider.cs) interface from `Wox.Plugin` project. - All available settings for the plugin are defined in the [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class of the plugin. The settings can be accessed everywhere in the plugin code via the static class instance `WindowWalkerSettings.Instance`. - We have the following settings that the user can configure to change the behavior of the plugin: | Key | Default value | Name/Description | |--------------|-----------|------------| | `ResultsFromVisibleDesktopOnly` | `false` | Show only results from visible desktop | | `SubtitleShowPid` | `false` | Show process id in subtitle | | `SubtitleShowDesktopName` | `true` | Show desktop name in subtitle (If two or more desktops exist) | | `ConfirmKillProcess` | `true` | Request confirmation when killing a process | | `KillProcessTree` | `false` | Kill process and it's child processes | | `OpenAfterKillAndClose` | `false` | Stay open after closing windows and killing processes (Not working with kill process confirmation) | | `HideKillProcessOnElevatedProcesses` | `false` | Hide "kill process" button if additional permissions required | | `HideExplorerSettingInfo` | `false` | Hide Explorer process information | ## Technical details ### [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) - The window walker plugin uses the `EnumWindows` function to enumerate all the open windows in the [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) class. ### [`SearchController.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) - The [`SearchController`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) encapsulates the functions needed to search and find matches. - It is responsible for updating the search text and performing a fuzzy search on all the open windows. ### [`Window.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) - The [`Window`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) class represents a specific window and has functions to get the name of the window, the state of the window (whether it is visible or not), the `SwitchTowindow` function which switches the desktop focus to the selected window and the `CloseThisWindow` function which closes the window. The `SwitchTowindow` action is performed when the user clicks on a window walker plugin result. - The `Window` class holds a static cache with the process information of all windows we know so far and each window instance has a property which holds its process information (name, file, ...). The process data in the cache and the window property are of the type `WindowProcess`. - To get the desktop information for a window, we use the common [`VirtualDesktopHelper`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VirtualDesktopHelper.cs) in `Wox.Plugin` project. The instance of `VirtualDesktopHelper` is cached in the [`Main`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Main.cs) class of the plugin at runtime. The desktop information is stored in a property of the type [`VDesktop`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VDesktop.cs). ### [`WindowProcess.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) - The [`WindowProcess`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) class represents a specific process for a window. - It contains static methods to query process information from the system and instance methods/properties to hold/retrieve the process information we want to know about a window's process. - Additionally, it contains the method `KillThisProcess` to kill the process. (If the user has not enough permissions to kill a process they are requested via UAC.) ### [`ResultHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) - The [`ResultHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) class contains the code to create the list with all results for PT Run based on the data returned from `SearchController` class. - There is a special result that is added if the folder windows doesn't run in separate processes and the user searches for Explorer windows using the action keyword. - This result informs the user that there is a setting that must be enabled to be able to kill Explorer processes. - The result can be disabled in plugin options. When it is clicked it opens the folder options. ### [`ContextMenuHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) - The [`ContextMenuHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) class provides the code for the context menu items. ### [`WindowWalkerSettings.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) - The [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class provides access to all optional plugin settings. - The class has a static property called `Instance` that holds an instance of the class itself. This allows us to access the settings from everywhere in the plugin code without having additional parameters in our methods. ### Score The window walker plugin uses [`FuzzyMatching`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/FuzzyMatching.cs) to get the matching indices and calculates the score by creating a 2 dimensional array of the window and the query text. ## [Unit Tests](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) We have a [Unit Test project](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) that executes various test to ensure that the plugin works as expected. ### [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) - The [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) class contains tests to validate that all settings exist and that they have the correct default values.
# Window Walker plugin The window walker plugin matches the user entered query with the open windows on the system. The user can switch to the found windows, close them or kill their process. ![Image of Window Walker plugin](/doc/images/launcher/plugins/windowwalker.png) ## Remarks ### UWP Apps - The process of an UWP app can't be detected correctly for windows that are minimized while searching. At this time they are assigned to the generic process `ApplicationFrameHost.exe`. If the user searches for such an window while it is not minimized, then the process gets assigned correctly/updated. ### Killing processes - Killing the Explorer process is only allowed, if each folder window is running in its own process. (See section `File Explorer setting` below.) - You can only kill elevated processes, if you have admin permissions (UAC). - If you kill the process of an UWP app window, you kill all instances of the app. All windows are assigned to the same process. - Windows of UWP apps don't know their process, until they are searched in non-minimized state. ### File Explorer setting - To kill the Process of an Explorer window, each window has to run in a separate process. Otherwise the process is the same one as the shell process and killing the shell process will crash the shell (Windows ui). - To enable this behavior the setting `Launch folder windows in a separate process` under `Folder Options > View` has to be enabled. - From PowerToys Run you can open the `Folder options` dialog by clicking the information message in the search results. The information message is only shown when searching with action keyword for explorer windows and can be hidden in the plugin settings. - Note: The folder option/process is evaluated in real time. After changing the setting it is enough to search again for the windows. ![Folder options for Window Walker](/doc/images/launcher/plugins/windowwalker_folder_options.png) ## Optional plugin settings - The optional plugin settings are implemented via the [`ISettingProvider`](/src/modules/launcher/Wox.Plugin/ISettingProvider.cs) interface from `Wox.Plugin` project. - All available settings for the plugin are defined in the [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class of the plugin. The settings can be accessed everywhere in the plugin code via the static class instance `WindowWalkerSettings.Instance`. - We have the following settings that the user can configure to change the behavior of the plugin: | Key | Default value | Name/Description | |--------------|-----------|------------| | `ResultsFromVisibleDesktopOnly` | `false` | Show only results from visible desktop | | `SubtitleShowPid` | `false` | Show process id in subtitle | | `SubtitleShowDesktopName` | `true` | Show desktop name in subtitle (If two or more desktops exist) | | `ConfirmKillProcess` | `true` | Request confirmation when killing a process | | `KillProcessTree` | `false` | Kill process and it's child processes | | `OpenAfterKillAndClose` | `false` | Stay open after closing windows and killing processes (Not working with kill process confirmation) | | `HideKillProcessOnElevatedProcesses` | `false` | Hide "kill process" button if additional permissions required | | `HideExplorerSettingInfo` | `false` | Hide Explorer process information | ## Technical details ### [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) - The window walker plugin uses the `EnumWindows` function to enumerate all the open windows in the [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) class. ### [`SearchController.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) - The [`SearchController`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) encapsulates the functions needed to search and find matches. - It is responsible for updating the search text and performing a fuzzy search on all the open windows. ### [`Window.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) - The [`Window`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) class represents a specific window and has functions to get the name of the window, the state of the window (whether it is visible or not), the `SwitchToWindow` function which switches the desktop focus to the selected window and the `CloseThisWindow` function which closes the window. The `switchToWindow` action is performed when the user clicks on a window walker plugin result. - The `Window` class holds a static cache with the process information of all windows we know so far and each window instance has a property which holds its process information (name, file, ...). The process data in the cache and the window property are of the type `WindowProcess`. - To get the desktop information for a window, we use the common [`VirtualDesktopHelper`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VirtualDesktopHelper.cs) in `Wox.Plugin` project. The instance of `VirtualDesktopHelper` is cached in the [`Main`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Main.cs) class of the plugin at runtime. The desktop information is stored in a property of the type [`VDesktop`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VDesktop.cs). ### [`WindowProcess.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) - The [`WindowProcess`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) class represents a specific process for a window. - It contains static methods to query process information from the system and instance methods/properties to hold/retrieve the process information we want to know about a window's process. - Additionally, it contains the method `KillThisProcess` to kill the process. (If the user has not enough permissions to kill a process they are requested via UAC.) ### [`ResultHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) - The [`ResultHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) class contains the code to create the list with all results for PT Run based on the data returned from `SearchController` class. - There is a special result that is added if the folder windows doesn't run in separate processes and the user searches for Explorer windows using the action keyword. - This result informs the user that there is a setting that must be enabled to be able to kill Explorer processes. - The result can be disabled in plugin options. When it is clicked it opens the folder options. ### [`ContextMenuHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) - The [`ContextMenuHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) class provides the code for the context menu items. ### [`WindowWalkerSettings.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) - The [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class provides access to all optional plugin settings. - The class has a static property called `Instance` that holds an instance of the class itself. This allows us to access the settings from everywhere in the plugin code without having additional parameters in our methods. ### Score The window walker plugin uses [`FuzzyMatching`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/FuzzyMatching.cs) to get the matching indices and calculates the score by creating a 2 dimensional array of the window and the query text. ## [Unit Tests](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) We have a [Unit Test project](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) that executes various test to ensure that the plugin works as expected. ### [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) - The [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) class contains tests to validate that all settings exist and that they have the correct default values.
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
found it too
Jay-o-Way
208
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
doc/devdocs/modules/launcher/plugins/windowwalker.md
# Window Walker plugin The window walker plugin matches the user entered query with the open windows on the system. The user can switch to the found windows, close them or kill their process. ![Image of Window Walker plugin](/doc/images/launcher/plugins/windowwalker.png) ## Remarks ### UWP Apps - The process of an UWP app can't be detected correctly for windows that are minimized while searching. At this time they are assigned to the generic process `ApplicationFrameHost.exe`. If the user searches for such an window while it is not minimized, then the process gets assigned correctly/updated. ### Killing processes - Killing the Explorer process is only allowed, if each folder window is running in its own process. (See section `File Explorer setting` below.) - You can only kill elevated processes, if you have admin permissions (UAC). - If you kill the process of an UWP app window, you kill all instances of the app. All windows are assigned to the same process. - Windows of UWP apps don't know their process, until they are searched in non-minimized state. ### File Explorer setting - To kill the Process of an Explorer window, each window has to run in a separate process. Otherwise the process is the same one as the shell process and killing the shell process will crash the shell (Windows ui). - To enable this behavior the setting `Launch folder windows in a separate process` under `Folder Options > View` has to be enabled. - From PowerToys Run you can open the `Folder options` dialog by clicking the information message in the search results. The information message is only shown when searching with action keyword for explorer windows and can be hidden in the plugin settings. - Note: The folder option/process is evaluated in real time. After changing the setting it is enough to search again for the windows. ![Folder options for Window Walker](/doc/images/launcher/plugins/windowwalker_folder_options.png) ## Optional plugin settings - The optional plugin settings are implemented via the [`ISettingProvider`](/src/modules/launcher/Wox.Plugin/ISettingProvider.cs) interface from `Wox.Plugin` project. - All available settings for the plugin are defined in the [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class of the plugin. The settings can be accessed everywhere in the plugin code via the static class instance `WindowWalkerSettings.Instance`. - We have the following settings that the user can configure to change the behavior of the plugin: | Key | Default value | Name/Description | |--------------|-----------|------------| | `ResultsFromVisibleDesktopOnly` | `false` | Show only results from visible desktop | | `SubtitleShowPid` | `false` | Show process id in subtitle | | `SubtitleShowDesktopName` | `true` | Show desktop name in subtitle (If two or more desktops exist) | | `ConfirmKillProcess` | `true` | Request confirmation when killing a process | | `KillProcessTree` | `false` | Kill process and it's child processes | | `OpenAfterKillAndClose` | `false` | Stay open after closing windows and killing processes (Not working with kill process confirmation) | | `HideKillProcessOnElevatedProcesses` | `false` | Hide "kill process" button if additional permissions required | | `HideExplorerSettingInfo` | `false` | Hide Explorer process information | ## Technical details ### [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) - The window walker plugin uses the `EnumWindows` function to enumerate all the open windows in the [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) class. ### [`SearchController.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) - The [`SearchController`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) encapsulates the functions needed to search and find matches. - It is responsible for updating the search text and performing a fuzzy search on all the open windows. ### [`Window.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) - The [`Window`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) class represents a specific window and has functions to get the name of the window, the state of the window (whether it is visible or not), the `SwitchTowindow` function which switches the desktop focus to the selected window and the `CloseThisWindow` function which closes the window. The `SwitchTowindow` action is performed when the user clicks on a window walker plugin result. - The `Window` class holds a static cache with the process information of all windows we know so far and each window instance has a property which holds its process information (name, file, ...). The process data in the cache and the window property are of the type `WindowProcess`. - To get the desktop information for a window, we use the common [`VirtualDesktopHelper`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VirtualDesktopHelper.cs) in `Wox.Plugin` project. The instance of `VirtualDesktopHelper` is cached in the [`Main`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Main.cs) class of the plugin at runtime. The desktop information is stored in a property of the type [`VDesktop`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VDesktop.cs). ### [`WindowProcess.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) - The [`WindowProcess`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) class represents a specific process for a window. - It contains static methods to query process information from the system and instance methods/properties to hold/retrieve the process information we want to know about a window's process. - Additionally, it contains the method `KillThisProcess` to kill the process. (If the user has not enough permissions to kill a process they are requested via UAC.) ### [`ResultHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) - The [`ResultHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) class contains the code to create the list with all results for PT Run based on the data returned from `SearchController` class. - There is a special result that is added if the folder windows doesn't run in separate processes and the user searches for Explorer windows using the action keyword. - This result informs the user that there is a setting that must be enabled to be able to kill Explorer processes. - The result can be disabled in plugin options. When it is clicked it opens the folder options. ### [`ContextMenuHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) - The [`ContextMenuHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) class provides the code for the context menu items. ### [`WindowWalkerSettings.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) - The [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class provides access to all optional plugin settings. - The class has a static property called `Instance` that holds an instance of the class itself. This allows us to access the settings from everywhere in the plugin code without having additional parameters in our methods. ### Score The window walker plugin uses [`FuzzyMatching`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/FuzzyMatching.cs) to get the matching indices and calculates the score by creating a 2 dimensional array of the window and the query text. ## [Unit Tests](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) We have a [Unit Test project](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) that executes various test to ensure that the plugin works as expected. ### [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) - The [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) class contains tests to validate that all settings exist and that they have the correct default values.
# Window Walker plugin The window walker plugin matches the user entered query with the open windows on the system. The user can switch to the found windows, close them or kill their process. ![Image of Window Walker plugin](/doc/images/launcher/plugins/windowwalker.png) ## Remarks ### UWP Apps - The process of an UWP app can't be detected correctly for windows that are minimized while searching. At this time they are assigned to the generic process `ApplicationFrameHost.exe`. If the user searches for such an window while it is not minimized, then the process gets assigned correctly/updated. ### Killing processes - Killing the Explorer process is only allowed, if each folder window is running in its own process. (See section `File Explorer setting` below.) - You can only kill elevated processes, if you have admin permissions (UAC). - If you kill the process of an UWP app window, you kill all instances of the app. All windows are assigned to the same process. - Windows of UWP apps don't know their process, until they are searched in non-minimized state. ### File Explorer setting - To kill the Process of an Explorer window, each window has to run in a separate process. Otherwise the process is the same one as the shell process and killing the shell process will crash the shell (Windows ui). - To enable this behavior the setting `Launch folder windows in a separate process` under `Folder Options > View` has to be enabled. - From PowerToys Run you can open the `Folder options` dialog by clicking the information message in the search results. The information message is only shown when searching with action keyword for explorer windows and can be hidden in the plugin settings. - Note: The folder option/process is evaluated in real time. After changing the setting it is enough to search again for the windows. ![Folder options for Window Walker](/doc/images/launcher/plugins/windowwalker_folder_options.png) ## Optional plugin settings - The optional plugin settings are implemented via the [`ISettingProvider`](/src/modules/launcher/Wox.Plugin/ISettingProvider.cs) interface from `Wox.Plugin` project. - All available settings for the plugin are defined in the [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class of the plugin. The settings can be accessed everywhere in the plugin code via the static class instance `WindowWalkerSettings.Instance`. - We have the following settings that the user can configure to change the behavior of the plugin: | Key | Default value | Name/Description | |--------------|-----------|------------| | `ResultsFromVisibleDesktopOnly` | `false` | Show only results from visible desktop | | `SubtitleShowPid` | `false` | Show process id in subtitle | | `SubtitleShowDesktopName` | `true` | Show desktop name in subtitle (If two or more desktops exist) | | `ConfirmKillProcess` | `true` | Request confirmation when killing a process | | `KillProcessTree` | `false` | Kill process and it's child processes | | `OpenAfterKillAndClose` | `false` | Stay open after closing windows and killing processes (Not working with kill process confirmation) | | `HideKillProcessOnElevatedProcesses` | `false` | Hide "kill process" button if additional permissions required | | `HideExplorerSettingInfo` | `false` | Hide Explorer process information | ## Technical details ### [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) - The window walker plugin uses the `EnumWindows` function to enumerate all the open windows in the [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) class. ### [`SearchController.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) - The [`SearchController`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) encapsulates the functions needed to search and find matches. - It is responsible for updating the search text and performing a fuzzy search on all the open windows. ### [`Window.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) - The [`Window`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) class represents a specific window and has functions to get the name of the window, the state of the window (whether it is visible or not), the `SwitchToWindow` function which switches the desktop focus to the selected window and the `CloseThisWindow` function which closes the window. The `switchToWindow` action is performed when the user clicks on a window walker plugin result. - The `Window` class holds a static cache with the process information of all windows we know so far and each window instance has a property which holds its process information (name, file, ...). The process data in the cache and the window property are of the type `WindowProcess`. - To get the desktop information for a window, we use the common [`VirtualDesktopHelper`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VirtualDesktopHelper.cs) in `Wox.Plugin` project. The instance of `VirtualDesktopHelper` is cached in the [`Main`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Main.cs) class of the plugin at runtime. The desktop information is stored in a property of the type [`VDesktop`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VDesktop.cs). ### [`WindowProcess.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) - The [`WindowProcess`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) class represents a specific process for a window. - It contains static methods to query process information from the system and instance methods/properties to hold/retrieve the process information we want to know about a window's process. - Additionally, it contains the method `KillThisProcess` to kill the process. (If the user has not enough permissions to kill a process they are requested via UAC.) ### [`ResultHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) - The [`ResultHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) class contains the code to create the list with all results for PT Run based on the data returned from `SearchController` class. - There is a special result that is added if the folder windows doesn't run in separate processes and the user searches for Explorer windows using the action keyword. - This result informs the user that there is a setting that must be enabled to be able to kill Explorer processes. - The result can be disabled in plugin options. When it is clicked it opens the folder options. ### [`ContextMenuHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) - The [`ContextMenuHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) class provides the code for the context menu items. ### [`WindowWalkerSettings.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) - The [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class provides access to all optional plugin settings. - The class has a static property called `Instance` that holds an instance of the class itself. This allows us to access the settings from everywhere in the plugin code without having additional parameters in our methods. ### Score The window walker plugin uses [`FuzzyMatching`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/FuzzyMatching.cs) to get the matching indices and calculates the score by creating a 2 dimensional array of the window and the query text. ## [Unit Tests](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) We have a [Unit Test project](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) that executes various test to ensure that the plugin works as expected. ### [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) - The [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) class contains tests to validate that all settings exist and that they have the correct default values.
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
But I am sure the first word has to start with a big `S` .
htcfreek
209
microsoft/PowerToys
29,832
re-do spell-check entries (expect and allow)
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Reset spell-check files and try to use more of `allow`. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29391 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments 1. Delete existing files (to flush obsolete entries) 2. See what spell checker throws 3. Put suggestions in `expect` or `allow` (folder/files) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-13 22:56:38+00:00
2023-11-21 15:06:02+00:00
doc/devdocs/modules/launcher/plugins/windowwalker.md
# Window Walker plugin The window walker plugin matches the user entered query with the open windows on the system. The user can switch to the found windows, close them or kill their process. ![Image of Window Walker plugin](/doc/images/launcher/plugins/windowwalker.png) ## Remarks ### UWP Apps - The process of an UWP app can't be detected correctly for windows that are minimized while searching. At this time they are assigned to the generic process `ApplicationFrameHost.exe`. If the user searches for such an window while it is not minimized, then the process gets assigned correctly/updated. ### Killing processes - Killing the Explorer process is only allowed, if each folder window is running in its own process. (See section `File Explorer setting` below.) - You can only kill elevated processes, if you have admin permissions (UAC). - If you kill the process of an UWP app window, you kill all instances of the app. All windows are assigned to the same process. - Windows of UWP apps don't know their process, until they are searched in non-minimized state. ### File Explorer setting - To kill the Process of an Explorer window, each window has to run in a separate process. Otherwise the process is the same one as the shell process and killing the shell process will crash the shell (Windows ui). - To enable this behavior the setting `Launch folder windows in a separate process` under `Folder Options > View` has to be enabled. - From PowerToys Run you can open the `Folder options` dialog by clicking the information message in the search results. The information message is only shown when searching with action keyword for explorer windows and can be hidden in the plugin settings. - Note: The folder option/process is evaluated in real time. After changing the setting it is enough to search again for the windows. ![Folder options for Window Walker](/doc/images/launcher/plugins/windowwalker_folder_options.png) ## Optional plugin settings - The optional plugin settings are implemented via the [`ISettingProvider`](/src/modules/launcher/Wox.Plugin/ISettingProvider.cs) interface from `Wox.Plugin` project. - All available settings for the plugin are defined in the [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class of the plugin. The settings can be accessed everywhere in the plugin code via the static class instance `WindowWalkerSettings.Instance`. - We have the following settings that the user can configure to change the behavior of the plugin: | Key | Default value | Name/Description | |--------------|-----------|------------| | `ResultsFromVisibleDesktopOnly` | `false` | Show only results from visible desktop | | `SubtitleShowPid` | `false` | Show process id in subtitle | | `SubtitleShowDesktopName` | `true` | Show desktop name in subtitle (If two or more desktops exist) | | `ConfirmKillProcess` | `true` | Request confirmation when killing a process | | `KillProcessTree` | `false` | Kill process and it's child processes | | `OpenAfterKillAndClose` | `false` | Stay open after closing windows and killing processes (Not working with kill process confirmation) | | `HideKillProcessOnElevatedProcesses` | `false` | Hide "kill process" button if additional permissions required | | `HideExplorerSettingInfo` | `false` | Hide Explorer process information | ## Technical details ### [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) - The window walker plugin uses the `EnumWindows` function to enumerate all the open windows in the [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) class. ### [`SearchController.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) - The [`SearchController`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) encapsulates the functions needed to search and find matches. - It is responsible for updating the search text and performing a fuzzy search on all the open windows. ### [`Window.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) - The [`Window`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) class represents a specific window and has functions to get the name of the window, the state of the window (whether it is visible or not), the `SwitchTowindow` function which switches the desktop focus to the selected window and the `CloseThisWindow` function which closes the window. The `SwitchTowindow` action is performed when the user clicks on a window walker plugin result. - The `Window` class holds a static cache with the process information of all windows we know so far and each window instance has a property which holds its process information (name, file, ...). The process data in the cache and the window property are of the type `WindowProcess`. - To get the desktop information for a window, we use the common [`VirtualDesktopHelper`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VirtualDesktopHelper.cs) in `Wox.Plugin` project. The instance of `VirtualDesktopHelper` is cached in the [`Main`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Main.cs) class of the plugin at runtime. The desktop information is stored in a property of the type [`VDesktop`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VDesktop.cs). ### [`WindowProcess.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) - The [`WindowProcess`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) class represents a specific process for a window. - It contains static methods to query process information from the system and instance methods/properties to hold/retrieve the process information we want to know about a window's process. - Additionally, it contains the method `KillThisProcess` to kill the process. (If the user has not enough permissions to kill a process they are requested via UAC.) ### [`ResultHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) - The [`ResultHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) class contains the code to create the list with all results for PT Run based on the data returned from `SearchController` class. - There is a special result that is added if the folder windows doesn't run in separate processes and the user searches for Explorer windows using the action keyword. - This result informs the user that there is a setting that must be enabled to be able to kill Explorer processes. - The result can be disabled in plugin options. When it is clicked it opens the folder options. ### [`ContextMenuHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) - The [`ContextMenuHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) class provides the code for the context menu items. ### [`WindowWalkerSettings.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) - The [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class provides access to all optional plugin settings. - The class has a static property called `Instance` that holds an instance of the class itself. This allows us to access the settings from everywhere in the plugin code without having additional parameters in our methods. ### Score The window walker plugin uses [`FuzzyMatching`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/FuzzyMatching.cs) to get the matching indices and calculates the score by creating a 2 dimensional array of the window and the query text. ## [Unit Tests](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) We have a [Unit Test project](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) that executes various test to ensure that the plugin works as expected. ### [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) - The [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) class contains tests to validate that all settings exist and that they have the correct default values.
# Window Walker plugin The window walker plugin matches the user entered query with the open windows on the system. The user can switch to the found windows, close them or kill their process. ![Image of Window Walker plugin](/doc/images/launcher/plugins/windowwalker.png) ## Remarks ### UWP Apps - The process of an UWP app can't be detected correctly for windows that are minimized while searching. At this time they are assigned to the generic process `ApplicationFrameHost.exe`. If the user searches for such an window while it is not minimized, then the process gets assigned correctly/updated. ### Killing processes - Killing the Explorer process is only allowed, if each folder window is running in its own process. (See section `File Explorer setting` below.) - You can only kill elevated processes, if you have admin permissions (UAC). - If you kill the process of an UWP app window, you kill all instances of the app. All windows are assigned to the same process. - Windows of UWP apps don't know their process, until they are searched in non-minimized state. ### File Explorer setting - To kill the Process of an Explorer window, each window has to run in a separate process. Otherwise the process is the same one as the shell process and killing the shell process will crash the shell (Windows ui). - To enable this behavior the setting `Launch folder windows in a separate process` under `Folder Options > View` has to be enabled. - From PowerToys Run you can open the `Folder options` dialog by clicking the information message in the search results. The information message is only shown when searching with action keyword for explorer windows and can be hidden in the plugin settings. - Note: The folder option/process is evaluated in real time. After changing the setting it is enough to search again for the windows. ![Folder options for Window Walker](/doc/images/launcher/plugins/windowwalker_folder_options.png) ## Optional plugin settings - The optional plugin settings are implemented via the [`ISettingProvider`](/src/modules/launcher/Wox.Plugin/ISettingProvider.cs) interface from `Wox.Plugin` project. - All available settings for the plugin are defined in the [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class of the plugin. The settings can be accessed everywhere in the plugin code via the static class instance `WindowWalkerSettings.Instance`. - We have the following settings that the user can configure to change the behavior of the plugin: | Key | Default value | Name/Description | |--------------|-----------|------------| | `ResultsFromVisibleDesktopOnly` | `false` | Show only results from visible desktop | | `SubtitleShowPid` | `false` | Show process id in subtitle | | `SubtitleShowDesktopName` | `true` | Show desktop name in subtitle (If two or more desktops exist) | | `ConfirmKillProcess` | `true` | Request confirmation when killing a process | | `KillProcessTree` | `false` | Kill process and it's child processes | | `OpenAfterKillAndClose` | `false` | Stay open after closing windows and killing processes (Not working with kill process confirmation) | | `HideKillProcessOnElevatedProcesses` | `false` | Hide "kill process" button if additional permissions required | | `HideExplorerSettingInfo` | `false` | Hide Explorer process information | ## Technical details ### [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) - The window walker plugin uses the `EnumWindows` function to enumerate all the open windows in the [`OpenWindows.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs) class. ### [`SearchController.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) - The [`SearchController`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/SearchController.cs) encapsulates the functions needed to search and find matches. - It is responsible for updating the search text and performing a fuzzy search on all the open windows. ### [`Window.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) - The [`Window`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/Window.cs) class represents a specific window and has functions to get the name of the window, the state of the window (whether it is visible or not), the `SwitchToWindow` function which switches the desktop focus to the selected window and the `CloseThisWindow` function which closes the window. The `switchToWindow` action is performed when the user clicks on a window walker plugin result. - The `Window` class holds a static cache with the process information of all windows we know so far and each window instance has a property which holds its process information (name, file, ...). The process data in the cache and the window property are of the type `WindowProcess`. - To get the desktop information for a window, we use the common [`VirtualDesktopHelper`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VirtualDesktopHelper.cs) in `Wox.Plugin` project. The instance of `VirtualDesktopHelper` is cached in the [`Main`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Main.cs) class of the plugin at runtime. The desktop information is stored in a property of the type [`VDesktop`](/src/modules/launcher/Wox.Plugin/Common/VirtualDesktop/VDesktop.cs). ### [`WindowProcess.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) - The [`WindowProcess`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowProcess.cs) class represents a specific process for a window. - It contains static methods to query process information from the system and instance methods/properties to hold/retrieve the process information we want to know about a window's process. - Additionally, it contains the method `KillThisProcess` to kill the process. (If the user has not enough permissions to kill a process they are requested via UAC.) ### [`ResultHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) - The [`ResultHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ResultHelper.cs) class contains the code to create the list with all results for PT Run based on the data returned from `SearchController` class. - There is a special result that is added if the folder windows doesn't run in separate processes and the user searches for Explorer windows using the action keyword. - This result informs the user that there is a setting that must be enabled to be able to kill Explorer processes. - The result can be disabled in plugin options. When it is clicked it opens the folder options. ### [`ContextMenuHelper.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) - The [`ContextMenuHelper`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/ContextMenuHelper.cs) class provides the code for the context menu items. ### [`WindowWalkerSettings.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) - The [`WindowWalkerSettings`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/WindowWalkerSettings.cs) class provides access to all optional plugin settings. - The class has a static property called `Instance` that holds an instance of the class itself. This allows us to access the settings from everywhere in the plugin code without having additional parameters in our methods. ### Score The window walker plugin uses [`FuzzyMatching`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/FuzzyMatching.cs) to get the matching indices and calculates the score by creating a 2 dimensional array of the window and the query text. ## [Unit Tests](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) We have a [Unit Test project](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests) that executes various test to ensure that the plugin works as expected. ### [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) - The [`PluginSettingsTests.cs`](/src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker.UnitTests/PluginSettingsTests.cs) class contains tests to validate that all settings exist and that they have the correct default values.
Jay-o-Way
06806ae2833e47b7f6a3d5011add633adebf8831
949b9a61856e340a4367be54dc405b4d3574f280
Yes you're right
Jay-o-Way
210
microsoft/PowerToys
29,765
Address C# static analyzer suggestions
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request 1. Moved the null check before using the parameter. 2. Removed the null check. `Result` is initialized in the constructor, not a method parameter. 3. Load the settings and instantiate a new instance only if the loaded settings are `null` (default up to date). Same logic is used in settings general page. 4. Pass `-1` as `defaultValue` to `FirstOrDefault()`. 5. Use unsigned 64 bit `ulong` instead of unsigned 32 bit `uint` in order to allow a correct 48 bit shifting. 6. Removed the null check. `view` it's the main window passed as command parameter. The null check was introduced as a code fix for FxCop, maybe a false positive one. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29722 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested flyout window showing update available - Tested Launcher - Test Image Resizer
null
2023-11-09 14:39:05+00:00
2023-11-13 16:06:00+00:00
src/modules/launcher/PowerLauncher/Plugin/PluginManager.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO.Abstractions; using System.Linq; using System.Reflection; using System.Threading.Tasks; using System.Windows; using global::PowerToys.GPOWrapper; using ManagedCommon; using PowerLauncher.Properties; using Wox.Infrastructure.Storage; using Wox.Plugin; using Wox.Plugin.Logger; namespace PowerLauncher.Plugin { /// <summary> /// The entry for managing Wox plugins /// </summary> public static class PluginManager { private static readonly IFileSystem FileSystem = new FileSystem(); private static readonly IDirectory Directory = FileSystem.Directory; private static readonly object AllPluginsLock = new object(); private static IEnumerable<PluginPair> _contextMenuPlugins = new List<PluginPair>(); private static List<PluginPair> _allPlugins; // should be only used in tests public static void SetAllPlugins(List<PluginPair> plugins) { _allPlugins = plugins; } /// <summary> /// Gets directories that will hold Wox plugin directory /// </summary> public static List<PluginPair> AllPlugins { get { if (_allPlugins == null) { lock (AllPluginsLock) { if (_allPlugins == null) { _allPlugins = PluginConfig.Parse(Directories) .Where(x => x.Language.ToUpperInvariant() == AllowedLanguage.CSharp) .GroupBy(x => x.ID) // Deduplicates plugins by ID, choosing for each ID the highest DLL product version. This fixes issues such as https://github.com/microsoft/PowerToys/issues/14701 .Select(g => g.OrderByDescending(x => // , where an upgrade didn't remove older versions of the plugins. { try { // Return a comparable produce version. var fileVersion = FileVersionInfo.GetVersionInfo(x.ExecuteFilePath); return ((uint)fileVersion.ProductMajorPart << 48) | ((uint)fileVersion.ProductMinorPart << 32) | ((uint)fileVersion.ProductBuildPart << 16) | ((uint)fileVersion.ProductPrivatePart); } catch (System.IO.FileNotFoundException) { // We'll get an error when loading the DLL later on if there's not a decent version of this plugin. return 0U; } }).First()) .Select(x => new PluginPair(x)) .ToList(); } } } return _allPlugins; } } public static IPublicAPI API { get; private set; } public static List<PluginPair> GlobalPlugins { get { return AllPlugins.Where(x => x.Metadata.IsGlobal).ToList(); } } public static IEnumerable<PluginPair> NonGlobalPlugins { get { return AllPlugins.Where(x => !string.IsNullOrWhiteSpace(x.Metadata.ActionKeyword)); } } private static readonly string[] Directories = { Constant.PreinstalledDirectory, Constant.PluginsDirectory }; private static void ValidateUserDirectory() { if (!Directory.Exists(Constant.PluginsDirectory)) { Directory.CreateDirectory(Constant.PluginsDirectory); } } public static void Save() { foreach (var plugin in AllPlugins) { var savable = plugin.Plugin as ISavable; savable?.Save(); } } public static void ReloadData() { foreach (var plugin in AllPlugins) { var reloadablePlugin = plugin.Plugin as IReloadable; reloadablePlugin?.ReloadData(); } } static PluginManager() { ValidateUserDirectory(); } /// <summary> /// Call initialize for all plugins /// </summary> public static void InitializePlugins(IPublicAPI api) { API = api ?? throw new ArgumentNullException(nameof(api)); var failedPlugins = new ConcurrentQueue<PluginPair>(); Parallel.ForEach(AllPlugins, pair => { // Check policy state for the plugin and update metadata var enabledPolicyState = GPOWrapper.GetRunPluginEnabledValue(pair.Metadata.ID); if (enabledPolicyState == GpoRuleConfigured.Enabled) { pair.Metadata.Disabled = false; pair.Metadata.IsEnabledPolicyConfigured = true; Log.Info($"The plugin <{pair.Metadata.Name}> is enabled by policy.", typeof(PluginManager)); } else if (enabledPolicyState == GpoRuleConfigured.Disabled) { pair.Metadata.Disabled = true; pair.Metadata.IsEnabledPolicyConfigured = true; Log.Info($"The plugin <{pair.Metadata.Name}> is disabled by policy.", typeof(PluginManager)); } else if (enabledPolicyState == GpoRuleConfigured.WrongValue) { Log.Warn($"Wrong policy value for enabled policy for plugin <{pair.Metadata.Name}>.", typeof(PluginManager)); } if (pair.Metadata.Disabled) { return; } pair.InitializePlugin(API); if (!pair.IsPluginInitialized) { failedPlugins.Enqueue(pair); } }); _contextMenuPlugins = GetPluginsForInterface<IContextMenu>(); if (failedPlugins.Any()) { var failed = string.Join(",", failedPlugins.Select(x => x.Metadata.Name)); var description = string.Format(CultureInfo.CurrentCulture, Resources.FailedToInitializePluginsDescription, failed); Application.Current.Dispatcher.InvokeAsync(() => API.ShowMsg(Resources.FailedToInitializePluginsTitle, description, string.Empty, false)); } } public static List<Result> QueryForPlugin(PluginPair pair, Query query, bool delayedExecution = false) { if (pair == null) { throw new ArgumentNullException(nameof(pair)); } if (!pair.IsPluginInitialized) { return new List<Result>(); } if (string.IsNullOrEmpty(query.ActionKeyword) && string.IsNullOrWhiteSpace(query.Search)) { return new List<Result>(); } try { List<Result> results = null; var metadata = pair.Metadata; var milliseconds = Wox.Infrastructure.Stopwatch.Debug($"PluginManager.QueryForPlugin - Cost for {metadata.Name}", () => { if (delayedExecution && (pair.Plugin is IDelayedExecutionPlugin)) { results = ((IDelayedExecutionPlugin)pair.Plugin).Query(query, delayedExecution) ?? new List<Result>(); } else if (!delayedExecution) { results = pair.Plugin.Query(query) ?? new List<Result>(); } if (results != null) { UpdatePluginMetadata(results, metadata, query); UpdateResultWithActionKeyword(results, query); } }); if (milliseconds > 50) { Log.Warn($"PluginManager.QueryForPlugin {metadata.Name}. Query cost - {milliseconds} milliseconds", typeof(PluginManager)); } metadata.QueryCount += 1; metadata.AvgQueryTime = metadata.QueryCount == 1 ? milliseconds : (metadata.AvgQueryTime + milliseconds) / 2; if (results != null) { foreach (var result in results) { result.Metadata = pair.Metadata; } } return results; } catch (Exception e) { Log.Exception($"Exception for plugin <{pair.Metadata.Name}> when query <{query}>", e, MethodBase.GetCurrentMethod().DeclaringType); return new List<Result>(); } } private static List<Result> UpdateResultWithActionKeyword(List<Result> results, Query query) { foreach (Result result in results) { if (string.IsNullOrEmpty(result.QueryTextDisplay)) { result.QueryTextDisplay = result.Title; } if (!string.IsNullOrEmpty(query.ActionKeyword)) { // Using CurrentCulture since this is user facing result.QueryTextDisplay = string.Format(CultureInfo.CurrentCulture, "{0} {1}", query.ActionKeyword, result.QueryTextDisplay); } } return results; } public static void UpdatePluginMetadata(List<Result> results, PluginMetadata metadata, Query query) { if (results == null) { throw new ArgumentNullException(nameof(results)); } if (metadata == null) { throw new ArgumentNullException(nameof(metadata)); } foreach (var r in results) { r.PluginDirectory = metadata.PluginDirectory; r.PluginID = metadata.ID; r.OriginQuery = query; } } /// <summary> /// get specified plugin, return null if not found /// </summary> /// <param name="id">id of plugin</param> /// <returns>plugin</returns> public static PluginPair GetPluginForId(string id) { return AllPlugins.FirstOrDefault(o => o.Metadata.ID == id); } public static IEnumerable<PluginPair> GetPluginsForInterface<T>() { return AllPlugins.Where(p => p.Plugin is T); } public static List<ContextMenuResult> GetContextMenusForPlugin(Result result) { var pluginPair = _contextMenuPlugins.FirstOrDefault(o => o.Metadata.ID == result.PluginID); if (pluginPair != null) { var metadata = pluginPair.Metadata; var plugin = (IContextMenu)pluginPair.Plugin; try { var results = plugin.LoadContextMenus(result); return results; } catch (Exception e) { Log.Exception($"Can't load context menus for plugin <{metadata.Name}>", e, MethodBase.GetCurrentMethod().DeclaringType); return new List<ContextMenuResult>(); } } else { return new List<ContextMenuResult>(); } } public static void Dispose() { foreach (var plugin in AllPlugins) { var disposablePlugin = plugin.Plugin as IDisposable; disposablePlugin?.Dispose(); } } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO.Abstractions; using System.Linq; using System.Reflection; using System.Threading.Tasks; using System.Windows; using global::PowerToys.GPOWrapper; using PowerLauncher.Properties; using Wox.Infrastructure.Storage; using Wox.Plugin; using Wox.Plugin.Logger; namespace PowerLauncher.Plugin { /// <summary> /// The entry for managing Wox plugins /// </summary> public static class PluginManager { private static readonly IFileSystem FileSystem = new FileSystem(); private static readonly IDirectory Directory = FileSystem.Directory; private static readonly object AllPluginsLock = new object(); private static IEnumerable<PluginPair> _contextMenuPlugins = new List<PluginPair>(); private static List<PluginPair> _allPlugins; // should be only used in tests public static void SetAllPlugins(List<PluginPair> plugins) { _allPlugins = plugins; } /// <summary> /// Gets directories that will hold Wox plugin directory /// </summary> public static List<PluginPair> AllPlugins { get { if (_allPlugins == null) { lock (AllPluginsLock) { if (_allPlugins == null) { _allPlugins = PluginConfig.Parse(Directories) .Where(x => x.Language.ToUpperInvariant() == AllowedLanguage.CSharp) .GroupBy(x => x.ID) // Deduplicates plugins by ID, choosing for each ID the highest DLL product version. This fixes issues such as https://github.com/microsoft/PowerToys/issues/14701 .Select(g => g.OrderByDescending(x => // , where an upgrade didn't remove older versions of the plugins. { try { // Return a comparable product version. var fileVersion = FileVersionInfo.GetVersionInfo(x.ExecuteFilePath); // Convert each part to an unsigned 32 bit integer, then extend to 64 bit. return ((ulong)(uint)fileVersion.ProductMajorPart << 48) | ((ulong)(uint)fileVersion.ProductMinorPart << 32) | ((ulong)(uint)fileVersion.ProductBuildPart << 16) | (ulong)(uint)fileVersion.ProductPrivatePart; } catch (System.IO.FileNotFoundException) { // We'll get an error when loading the DLL later on if there's not a decent version of this plugin. return 0U; } }).First()) .Select(x => new PluginPair(x)) .ToList(); } } } return _allPlugins; } } public static IPublicAPI API { get; private set; } public static List<PluginPair> GlobalPlugins { get { return AllPlugins.Where(x => x.Metadata.IsGlobal).ToList(); } } public static IEnumerable<PluginPair> NonGlobalPlugins { get { return AllPlugins.Where(x => !string.IsNullOrWhiteSpace(x.Metadata.ActionKeyword)); } } private static readonly string[] Directories = { Constant.PreinstalledDirectory, Constant.PluginsDirectory }; private static void ValidateUserDirectory() { if (!Directory.Exists(Constant.PluginsDirectory)) { Directory.CreateDirectory(Constant.PluginsDirectory); } } public static void Save() { foreach (var plugin in AllPlugins) { var savable = plugin.Plugin as ISavable; savable?.Save(); } } public static void ReloadData() { foreach (var plugin in AllPlugins) { var reloadablePlugin = plugin.Plugin as IReloadable; reloadablePlugin?.ReloadData(); } } static PluginManager() { ValidateUserDirectory(); } /// <summary> /// Call initialize for all plugins /// </summary> public static void InitializePlugins(IPublicAPI api) { API = api ?? throw new ArgumentNullException(nameof(api)); var failedPlugins = new ConcurrentQueue<PluginPair>(); Parallel.ForEach(AllPlugins, pair => { // Check policy state for the plugin and update metadata var enabledPolicyState = GPOWrapper.GetRunPluginEnabledValue(pair.Metadata.ID); if (enabledPolicyState == GpoRuleConfigured.Enabled) { pair.Metadata.Disabled = false; pair.Metadata.IsEnabledPolicyConfigured = true; Log.Info($"The plugin <{pair.Metadata.Name}> is enabled by policy.", typeof(PluginManager)); } else if (enabledPolicyState == GpoRuleConfigured.Disabled) { pair.Metadata.Disabled = true; pair.Metadata.IsEnabledPolicyConfigured = true; Log.Info($"The plugin <{pair.Metadata.Name}> is disabled by policy.", typeof(PluginManager)); } else if (enabledPolicyState == GpoRuleConfigured.WrongValue) { Log.Warn($"Wrong policy value for enabled policy for plugin <{pair.Metadata.Name}>.", typeof(PluginManager)); } if (pair.Metadata.Disabled) { return; } pair.InitializePlugin(API); if (!pair.IsPluginInitialized) { failedPlugins.Enqueue(pair); } }); _contextMenuPlugins = GetPluginsForInterface<IContextMenu>(); if (failedPlugins.Any()) { var failed = string.Join(",", failedPlugins.Select(x => x.Metadata.Name)); var description = string.Format(CultureInfo.CurrentCulture, Resources.FailedToInitializePluginsDescription, failed); Application.Current.Dispatcher.InvokeAsync(() => API.ShowMsg(Resources.FailedToInitializePluginsTitle, description, string.Empty, false)); } } public static List<Result> QueryForPlugin(PluginPair pair, Query query, bool delayedExecution = false) { if (pair == null) { throw new ArgumentNullException(nameof(pair)); } if (!pair.IsPluginInitialized) { return new List<Result>(); } if (string.IsNullOrEmpty(query.ActionKeyword) && string.IsNullOrWhiteSpace(query.Search)) { return new List<Result>(); } try { List<Result> results = null; var metadata = pair.Metadata; var milliseconds = Wox.Infrastructure.Stopwatch.Debug($"PluginManager.QueryForPlugin - Cost for {metadata.Name}", () => { if (delayedExecution && (pair.Plugin is IDelayedExecutionPlugin)) { results = ((IDelayedExecutionPlugin)pair.Plugin).Query(query, delayedExecution) ?? new List<Result>(); } else if (!delayedExecution) { results = pair.Plugin.Query(query) ?? new List<Result>(); } if (results != null) { UpdatePluginMetadata(results, metadata, query); UpdateResultWithActionKeyword(results, query); } }); if (milliseconds > 50) { Log.Warn($"PluginManager.QueryForPlugin {metadata.Name}. Query cost - {milliseconds} milliseconds", typeof(PluginManager)); } metadata.QueryCount += 1; metadata.AvgQueryTime = metadata.QueryCount == 1 ? milliseconds : (metadata.AvgQueryTime + milliseconds) / 2; if (results != null) { foreach (var result in results) { result.Metadata = pair.Metadata; } } return results; } catch (Exception e) { Log.Exception($"Exception for plugin <{pair.Metadata.Name}> when query <{query}>", e, MethodBase.GetCurrentMethod().DeclaringType); return new List<Result>(); } } private static List<Result> UpdateResultWithActionKeyword(List<Result> results, Query query) { foreach (Result result in results) { if (string.IsNullOrEmpty(result.QueryTextDisplay)) { result.QueryTextDisplay = result.Title; } if (!string.IsNullOrEmpty(query.ActionKeyword)) { // Using CurrentCulture since this is user facing result.QueryTextDisplay = string.Format(CultureInfo.CurrentCulture, "{0} {1}", query.ActionKeyword, result.QueryTextDisplay); } } return results; } public static void UpdatePluginMetadata(List<Result> results, PluginMetadata metadata, Query query) { if (results == null) { throw new ArgumentNullException(nameof(results)); } if (metadata == null) { throw new ArgumentNullException(nameof(metadata)); } foreach (var r in results) { r.PluginDirectory = metadata.PluginDirectory; r.PluginID = metadata.ID; r.OriginQuery = query; } } /// <summary> /// get specified plugin, return null if not found /// </summary> /// <param name="id">id of plugin</param> /// <returns>plugin</returns> public static PluginPair GetPluginForId(string id) { return AllPlugins.FirstOrDefault(o => o.Metadata.ID == id); } public static IEnumerable<PluginPair> GetPluginsForInterface<T>() { return AllPlugins.Where(p => p.Plugin is T); } public static List<ContextMenuResult> GetContextMenusForPlugin(Result result) { var pluginPair = _contextMenuPlugins.FirstOrDefault(o => o.Metadata.ID == result.PluginID); if (pluginPair != null) { var metadata = pluginPair.Metadata; var plugin = (IContextMenu)pluginPair.Plugin; try { var results = plugin.LoadContextMenus(result); return results; } catch (Exception e) { Log.Exception($"Can't load context menus for plugin <{metadata.Name}>", e, MethodBase.GetCurrentMethod().DeclaringType); return new List<ContextMenuResult>(); } } else { return new List<ContextMenuResult>(); } } public static void Dispose() { foreach (var plugin in AllPlugins) { var disposablePlugin = plugin.Plugin as IDisposable; disposablePlugin?.Dispose(); } } } }
davidegiacometti
22000228e29137b378c9068acea1edc13947781c
5e7d5d1f7fa8a8b1963746a57442f2a400dafce1
I think the idea here was to have it be long, most likely. How about doing the cast to `uint` first and then `ulong`? ``` return ((ulong)(uint)fileVersion.ProductMajorPart << 48) | ((ulong)(uint)fileVersion.ProductMinorPart << 32) | ((ulong)(uint)fileVersion.ProductBuildPart << 16) | (ulong)(uint)fileVersion.ProductPrivatePart; ``` perhaps with a comment that we're making it unsigned first and then extending to 64 bits.
jaimecbernardo
211
microsoft/PowerToys
29,765
Address C# static analyzer suggestions
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request 1. Moved the null check before using the parameter. 2. Removed the null check. `Result` is initialized in the constructor, not a method parameter. 3. Load the settings and instantiate a new instance only if the loaded settings are `null` (default up to date). Same logic is used in settings general page. 4. Pass `-1` as `defaultValue` to `FirstOrDefault()`. 5. Use unsigned 64 bit `ulong` instead of unsigned 32 bit `uint` in order to allow a correct 48 bit shifting. 6. Removed the null check. `view` it's the main window passed as command parameter. The null check was introduced as a code fix for FxCop, maybe a false positive one. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29722 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested flyout window showing update available - Tested Launcher - Test Image Resizer
null
2023-11-09 14:39:05+00:00
2023-11-13 16:06:00+00:00
src/modules/launcher/PowerLauncher/Plugin/PluginManager.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO.Abstractions; using System.Linq; using System.Reflection; using System.Threading.Tasks; using System.Windows; using global::PowerToys.GPOWrapper; using ManagedCommon; using PowerLauncher.Properties; using Wox.Infrastructure.Storage; using Wox.Plugin; using Wox.Plugin.Logger; namespace PowerLauncher.Plugin { /// <summary> /// The entry for managing Wox plugins /// </summary> public static class PluginManager { private static readonly IFileSystem FileSystem = new FileSystem(); private static readonly IDirectory Directory = FileSystem.Directory; private static readonly object AllPluginsLock = new object(); private static IEnumerable<PluginPair> _contextMenuPlugins = new List<PluginPair>(); private static List<PluginPair> _allPlugins; // should be only used in tests public static void SetAllPlugins(List<PluginPair> plugins) { _allPlugins = plugins; } /// <summary> /// Gets directories that will hold Wox plugin directory /// </summary> public static List<PluginPair> AllPlugins { get { if (_allPlugins == null) { lock (AllPluginsLock) { if (_allPlugins == null) { _allPlugins = PluginConfig.Parse(Directories) .Where(x => x.Language.ToUpperInvariant() == AllowedLanguage.CSharp) .GroupBy(x => x.ID) // Deduplicates plugins by ID, choosing for each ID the highest DLL product version. This fixes issues such as https://github.com/microsoft/PowerToys/issues/14701 .Select(g => g.OrderByDescending(x => // , where an upgrade didn't remove older versions of the plugins. { try { // Return a comparable produce version. var fileVersion = FileVersionInfo.GetVersionInfo(x.ExecuteFilePath); return ((uint)fileVersion.ProductMajorPart << 48) | ((uint)fileVersion.ProductMinorPart << 32) | ((uint)fileVersion.ProductBuildPart << 16) | ((uint)fileVersion.ProductPrivatePart); } catch (System.IO.FileNotFoundException) { // We'll get an error when loading the DLL later on if there's not a decent version of this plugin. return 0U; } }).First()) .Select(x => new PluginPair(x)) .ToList(); } } } return _allPlugins; } } public static IPublicAPI API { get; private set; } public static List<PluginPair> GlobalPlugins { get { return AllPlugins.Where(x => x.Metadata.IsGlobal).ToList(); } } public static IEnumerable<PluginPair> NonGlobalPlugins { get { return AllPlugins.Where(x => !string.IsNullOrWhiteSpace(x.Metadata.ActionKeyword)); } } private static readonly string[] Directories = { Constant.PreinstalledDirectory, Constant.PluginsDirectory }; private static void ValidateUserDirectory() { if (!Directory.Exists(Constant.PluginsDirectory)) { Directory.CreateDirectory(Constant.PluginsDirectory); } } public static void Save() { foreach (var plugin in AllPlugins) { var savable = plugin.Plugin as ISavable; savable?.Save(); } } public static void ReloadData() { foreach (var plugin in AllPlugins) { var reloadablePlugin = plugin.Plugin as IReloadable; reloadablePlugin?.ReloadData(); } } static PluginManager() { ValidateUserDirectory(); } /// <summary> /// Call initialize for all plugins /// </summary> public static void InitializePlugins(IPublicAPI api) { API = api ?? throw new ArgumentNullException(nameof(api)); var failedPlugins = new ConcurrentQueue<PluginPair>(); Parallel.ForEach(AllPlugins, pair => { // Check policy state for the plugin and update metadata var enabledPolicyState = GPOWrapper.GetRunPluginEnabledValue(pair.Metadata.ID); if (enabledPolicyState == GpoRuleConfigured.Enabled) { pair.Metadata.Disabled = false; pair.Metadata.IsEnabledPolicyConfigured = true; Log.Info($"The plugin <{pair.Metadata.Name}> is enabled by policy.", typeof(PluginManager)); } else if (enabledPolicyState == GpoRuleConfigured.Disabled) { pair.Metadata.Disabled = true; pair.Metadata.IsEnabledPolicyConfigured = true; Log.Info($"The plugin <{pair.Metadata.Name}> is disabled by policy.", typeof(PluginManager)); } else if (enabledPolicyState == GpoRuleConfigured.WrongValue) { Log.Warn($"Wrong policy value for enabled policy for plugin <{pair.Metadata.Name}>.", typeof(PluginManager)); } if (pair.Metadata.Disabled) { return; } pair.InitializePlugin(API); if (!pair.IsPluginInitialized) { failedPlugins.Enqueue(pair); } }); _contextMenuPlugins = GetPluginsForInterface<IContextMenu>(); if (failedPlugins.Any()) { var failed = string.Join(",", failedPlugins.Select(x => x.Metadata.Name)); var description = string.Format(CultureInfo.CurrentCulture, Resources.FailedToInitializePluginsDescription, failed); Application.Current.Dispatcher.InvokeAsync(() => API.ShowMsg(Resources.FailedToInitializePluginsTitle, description, string.Empty, false)); } } public static List<Result> QueryForPlugin(PluginPair pair, Query query, bool delayedExecution = false) { if (pair == null) { throw new ArgumentNullException(nameof(pair)); } if (!pair.IsPluginInitialized) { return new List<Result>(); } if (string.IsNullOrEmpty(query.ActionKeyword) && string.IsNullOrWhiteSpace(query.Search)) { return new List<Result>(); } try { List<Result> results = null; var metadata = pair.Metadata; var milliseconds = Wox.Infrastructure.Stopwatch.Debug($"PluginManager.QueryForPlugin - Cost for {metadata.Name}", () => { if (delayedExecution && (pair.Plugin is IDelayedExecutionPlugin)) { results = ((IDelayedExecutionPlugin)pair.Plugin).Query(query, delayedExecution) ?? new List<Result>(); } else if (!delayedExecution) { results = pair.Plugin.Query(query) ?? new List<Result>(); } if (results != null) { UpdatePluginMetadata(results, metadata, query); UpdateResultWithActionKeyword(results, query); } }); if (milliseconds > 50) { Log.Warn($"PluginManager.QueryForPlugin {metadata.Name}. Query cost - {milliseconds} milliseconds", typeof(PluginManager)); } metadata.QueryCount += 1; metadata.AvgQueryTime = metadata.QueryCount == 1 ? milliseconds : (metadata.AvgQueryTime + milliseconds) / 2; if (results != null) { foreach (var result in results) { result.Metadata = pair.Metadata; } } return results; } catch (Exception e) { Log.Exception($"Exception for plugin <{pair.Metadata.Name}> when query <{query}>", e, MethodBase.GetCurrentMethod().DeclaringType); return new List<Result>(); } } private static List<Result> UpdateResultWithActionKeyword(List<Result> results, Query query) { foreach (Result result in results) { if (string.IsNullOrEmpty(result.QueryTextDisplay)) { result.QueryTextDisplay = result.Title; } if (!string.IsNullOrEmpty(query.ActionKeyword)) { // Using CurrentCulture since this is user facing result.QueryTextDisplay = string.Format(CultureInfo.CurrentCulture, "{0} {1}", query.ActionKeyword, result.QueryTextDisplay); } } return results; } public static void UpdatePluginMetadata(List<Result> results, PluginMetadata metadata, Query query) { if (results == null) { throw new ArgumentNullException(nameof(results)); } if (metadata == null) { throw new ArgumentNullException(nameof(metadata)); } foreach (var r in results) { r.PluginDirectory = metadata.PluginDirectory; r.PluginID = metadata.ID; r.OriginQuery = query; } } /// <summary> /// get specified plugin, return null if not found /// </summary> /// <param name="id">id of plugin</param> /// <returns>plugin</returns> public static PluginPair GetPluginForId(string id) { return AllPlugins.FirstOrDefault(o => o.Metadata.ID == id); } public static IEnumerable<PluginPair> GetPluginsForInterface<T>() { return AllPlugins.Where(p => p.Plugin is T); } public static List<ContextMenuResult> GetContextMenusForPlugin(Result result) { var pluginPair = _contextMenuPlugins.FirstOrDefault(o => o.Metadata.ID == result.PluginID); if (pluginPair != null) { var metadata = pluginPair.Metadata; var plugin = (IContextMenu)pluginPair.Plugin; try { var results = plugin.LoadContextMenus(result); return results; } catch (Exception e) { Log.Exception($"Can't load context menus for plugin <{metadata.Name}>", e, MethodBase.GetCurrentMethod().DeclaringType); return new List<ContextMenuResult>(); } } else { return new List<ContextMenuResult>(); } } public static void Dispose() { foreach (var plugin in AllPlugins) { var disposablePlugin = plugin.Plugin as IDisposable; disposablePlugin?.Dispose(); } } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO.Abstractions; using System.Linq; using System.Reflection; using System.Threading.Tasks; using System.Windows; using global::PowerToys.GPOWrapper; using PowerLauncher.Properties; using Wox.Infrastructure.Storage; using Wox.Plugin; using Wox.Plugin.Logger; namespace PowerLauncher.Plugin { /// <summary> /// The entry for managing Wox plugins /// </summary> public static class PluginManager { private static readonly IFileSystem FileSystem = new FileSystem(); private static readonly IDirectory Directory = FileSystem.Directory; private static readonly object AllPluginsLock = new object(); private static IEnumerable<PluginPair> _contextMenuPlugins = new List<PluginPair>(); private static List<PluginPair> _allPlugins; // should be only used in tests public static void SetAllPlugins(List<PluginPair> plugins) { _allPlugins = plugins; } /// <summary> /// Gets directories that will hold Wox plugin directory /// </summary> public static List<PluginPair> AllPlugins { get { if (_allPlugins == null) { lock (AllPluginsLock) { if (_allPlugins == null) { _allPlugins = PluginConfig.Parse(Directories) .Where(x => x.Language.ToUpperInvariant() == AllowedLanguage.CSharp) .GroupBy(x => x.ID) // Deduplicates plugins by ID, choosing for each ID the highest DLL product version. This fixes issues such as https://github.com/microsoft/PowerToys/issues/14701 .Select(g => g.OrderByDescending(x => // , where an upgrade didn't remove older versions of the plugins. { try { // Return a comparable product version. var fileVersion = FileVersionInfo.GetVersionInfo(x.ExecuteFilePath); // Convert each part to an unsigned 32 bit integer, then extend to 64 bit. return ((ulong)(uint)fileVersion.ProductMajorPart << 48) | ((ulong)(uint)fileVersion.ProductMinorPart << 32) | ((ulong)(uint)fileVersion.ProductBuildPart << 16) | (ulong)(uint)fileVersion.ProductPrivatePart; } catch (System.IO.FileNotFoundException) { // We'll get an error when loading the DLL later on if there's not a decent version of this plugin. return 0U; } }).First()) .Select(x => new PluginPair(x)) .ToList(); } } } return _allPlugins; } } public static IPublicAPI API { get; private set; } public static List<PluginPair> GlobalPlugins { get { return AllPlugins.Where(x => x.Metadata.IsGlobal).ToList(); } } public static IEnumerable<PluginPair> NonGlobalPlugins { get { return AllPlugins.Where(x => !string.IsNullOrWhiteSpace(x.Metadata.ActionKeyword)); } } private static readonly string[] Directories = { Constant.PreinstalledDirectory, Constant.PluginsDirectory }; private static void ValidateUserDirectory() { if (!Directory.Exists(Constant.PluginsDirectory)) { Directory.CreateDirectory(Constant.PluginsDirectory); } } public static void Save() { foreach (var plugin in AllPlugins) { var savable = plugin.Plugin as ISavable; savable?.Save(); } } public static void ReloadData() { foreach (var plugin in AllPlugins) { var reloadablePlugin = plugin.Plugin as IReloadable; reloadablePlugin?.ReloadData(); } } static PluginManager() { ValidateUserDirectory(); } /// <summary> /// Call initialize for all plugins /// </summary> public static void InitializePlugins(IPublicAPI api) { API = api ?? throw new ArgumentNullException(nameof(api)); var failedPlugins = new ConcurrentQueue<PluginPair>(); Parallel.ForEach(AllPlugins, pair => { // Check policy state for the plugin and update metadata var enabledPolicyState = GPOWrapper.GetRunPluginEnabledValue(pair.Metadata.ID); if (enabledPolicyState == GpoRuleConfigured.Enabled) { pair.Metadata.Disabled = false; pair.Metadata.IsEnabledPolicyConfigured = true; Log.Info($"The plugin <{pair.Metadata.Name}> is enabled by policy.", typeof(PluginManager)); } else if (enabledPolicyState == GpoRuleConfigured.Disabled) { pair.Metadata.Disabled = true; pair.Metadata.IsEnabledPolicyConfigured = true; Log.Info($"The plugin <{pair.Metadata.Name}> is disabled by policy.", typeof(PluginManager)); } else if (enabledPolicyState == GpoRuleConfigured.WrongValue) { Log.Warn($"Wrong policy value for enabled policy for plugin <{pair.Metadata.Name}>.", typeof(PluginManager)); } if (pair.Metadata.Disabled) { return; } pair.InitializePlugin(API); if (!pair.IsPluginInitialized) { failedPlugins.Enqueue(pair); } }); _contextMenuPlugins = GetPluginsForInterface<IContextMenu>(); if (failedPlugins.Any()) { var failed = string.Join(",", failedPlugins.Select(x => x.Metadata.Name)); var description = string.Format(CultureInfo.CurrentCulture, Resources.FailedToInitializePluginsDescription, failed); Application.Current.Dispatcher.InvokeAsync(() => API.ShowMsg(Resources.FailedToInitializePluginsTitle, description, string.Empty, false)); } } public static List<Result> QueryForPlugin(PluginPair pair, Query query, bool delayedExecution = false) { if (pair == null) { throw new ArgumentNullException(nameof(pair)); } if (!pair.IsPluginInitialized) { return new List<Result>(); } if (string.IsNullOrEmpty(query.ActionKeyword) && string.IsNullOrWhiteSpace(query.Search)) { return new List<Result>(); } try { List<Result> results = null; var metadata = pair.Metadata; var milliseconds = Wox.Infrastructure.Stopwatch.Debug($"PluginManager.QueryForPlugin - Cost for {metadata.Name}", () => { if (delayedExecution && (pair.Plugin is IDelayedExecutionPlugin)) { results = ((IDelayedExecutionPlugin)pair.Plugin).Query(query, delayedExecution) ?? new List<Result>(); } else if (!delayedExecution) { results = pair.Plugin.Query(query) ?? new List<Result>(); } if (results != null) { UpdatePluginMetadata(results, metadata, query); UpdateResultWithActionKeyword(results, query); } }); if (milliseconds > 50) { Log.Warn($"PluginManager.QueryForPlugin {metadata.Name}. Query cost - {milliseconds} milliseconds", typeof(PluginManager)); } metadata.QueryCount += 1; metadata.AvgQueryTime = metadata.QueryCount == 1 ? milliseconds : (metadata.AvgQueryTime + milliseconds) / 2; if (results != null) { foreach (var result in results) { result.Metadata = pair.Metadata; } } return results; } catch (Exception e) { Log.Exception($"Exception for plugin <{pair.Metadata.Name}> when query <{query}>", e, MethodBase.GetCurrentMethod().DeclaringType); return new List<Result>(); } } private static List<Result> UpdateResultWithActionKeyword(List<Result> results, Query query) { foreach (Result result in results) { if (string.IsNullOrEmpty(result.QueryTextDisplay)) { result.QueryTextDisplay = result.Title; } if (!string.IsNullOrEmpty(query.ActionKeyword)) { // Using CurrentCulture since this is user facing result.QueryTextDisplay = string.Format(CultureInfo.CurrentCulture, "{0} {1}", query.ActionKeyword, result.QueryTextDisplay); } } return results; } public static void UpdatePluginMetadata(List<Result> results, PluginMetadata metadata, Query query) { if (results == null) { throw new ArgumentNullException(nameof(results)); } if (metadata == null) { throw new ArgumentNullException(nameof(metadata)); } foreach (var r in results) { r.PluginDirectory = metadata.PluginDirectory; r.PluginID = metadata.ID; r.OriginQuery = query; } } /// <summary> /// get specified plugin, return null if not found /// </summary> /// <param name="id">id of plugin</param> /// <returns>plugin</returns> public static PluginPair GetPluginForId(string id) { return AllPlugins.FirstOrDefault(o => o.Metadata.ID == id); } public static IEnumerable<PluginPair> GetPluginsForInterface<T>() { return AllPlugins.Where(p => p.Plugin is T); } public static List<ContextMenuResult> GetContextMenusForPlugin(Result result) { var pluginPair = _contextMenuPlugins.FirstOrDefault(o => o.Metadata.ID == result.PluginID); if (pluginPair != null) { var metadata = pluginPair.Metadata; var plugin = (IContextMenu)pluginPair.Plugin; try { var results = plugin.LoadContextMenus(result); return results; } catch (Exception e) { Log.Exception($"Can't load context menus for plugin <{metadata.Name}>", e, MethodBase.GetCurrentMethod().DeclaringType); return new List<ContextMenuResult>(); } } else { return new List<ContextMenuResult>(); } } public static void Dispose() { foreach (var plugin in AllPlugins) { var disposablePlugin = plugin.Plugin as IDisposable; disposablePlugin?.Dispose(); } } } }
davidegiacometti
22000228e29137b378c9068acea1edc13947781c
5e7d5d1f7fa8a8b1963746a57442f2a400dafce1
Looks even better and make sense to keep the same logic. Updated code and PR description.
davidegiacometti
212
microsoft/PowerToys
29,761
[Settings] Adding warning info box to Shortcut edit dialog
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Showing a warning info bar in case the user selects a shortcut containing Alt+Ctrl. The implemented logic: Warning is visible if the shortcut contains Alt AND contains Ctrl AND NOT contains Win AND contains an additional key, (Shift may be absent/present, warning is not shown while only the modifier keys are pressed). The info bar contains a longer description as a tooltip for more precise explanation. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #19062 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed tested locally
null
2023-11-09 12:16:26+00:00
2023-11-20 21:27:43+00:00
src/settings-ui/Settings.UI/SettingsXAML/Controls/ShortcutControl/ShortcutControl.xaml.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using CommunityToolkit.WinUI; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.Library; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Automation; using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Input; using Windows.System; namespace Microsoft.PowerToys.Settings.UI.Controls { public sealed partial class ShortcutControl : UserControl, IDisposable { private readonly UIntPtr ignoreKeyEventFlag = (UIntPtr)0x5555; private System.Collections.Generic.HashSet<VirtualKey> _modifierKeysOnEntering = new System.Collections.Generic.HashSet<VirtualKey>(); private bool _enabled; private HotkeySettings hotkeySettings; private HotkeySettings internalSettings; private HotkeySettings lastValidSettings; private HotkeySettingsControlHook hook; private bool _isActive; private bool disposedValue; public string Header { get; set; } public string Keys { get; set; } public static readonly DependencyProperty IsActiveProperty = DependencyProperty.Register("Enabled", typeof(bool), typeof(ShortcutControl), null); public static readonly DependencyProperty HotkeySettingsProperty = DependencyProperty.Register("HotkeySettings", typeof(HotkeySettings), typeof(ShortcutControl), null); public static readonly DependencyProperty AllowDisableProperty = DependencyProperty.Register("AllowDisable", typeof(bool), typeof(ShortcutControl), new PropertyMetadata(false, OnAllowDisableChanged)); private static void OnAllowDisableChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { var me = d as ShortcutControl; if (me == null) { return; } var description = me.c?.FindDescendant<TextBlock>(); if (description == null) { return; } var resourceLoader = Helpers.ResourceLoaderInstance.ResourceLoader; var newValue = (bool)(e?.NewValue ?? false); var text = newValue ? resourceLoader.GetString("Activation_Shortcut_With_Disable_Description") : resourceLoader.GetString("Activation_Shortcut_Description"); description.Text = text; } private ShortcutDialogContentControl c = new ShortcutDialogContentControl(); private ContentDialog shortcutDialog; public bool AllowDisable { get => (bool)GetValue(AllowDisableProperty); set => SetValue(AllowDisableProperty, value); } public bool Enabled { get { return _enabled; } set { SetValue(IsActiveProperty, value); _enabled = value; if (value) { EditButton.IsEnabled = true; } else { EditButton.IsEnabled = false; } } } public HotkeySettings HotkeySettings { get { return hotkeySettings; } set { if (hotkeySettings != value) { hotkeySettings = value; SetValue(HotkeySettingsProperty, value); PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); c.Keys = HotkeySettings.GetKeysList(); } } } public ShortcutControl() { InitializeComponent(); internalSettings = new HotkeySettings(); this.Unloaded += ShortcutControl_Unloaded; hook = new HotkeySettingsControlHook(Hotkey_KeyDown, Hotkey_KeyUp, Hotkey_IsActive, FilterAccessibleKeyboardEvents); var resourceLoader = Helpers.ResourceLoaderInstance.ResourceLoader; if (App.GetSettingsWindow() != null) { App.GetSettingsWindow().Activated += ShortcutDialog_SettingsWindow_Activated; } // We create the Dialog in C# because doing it in XAML is giving WinUI/XAML Island bugs when using dark theme. shortcutDialog = new ContentDialog { XamlRoot = this.XamlRoot, Title = resourceLoader.GetString("Activation_Shortcut_Title"), Content = c, PrimaryButtonText = resourceLoader.GetString("Activation_Shortcut_Save"), SecondaryButtonText = resourceLoader.GetString("Activation_Shortcut_Reset"), CloseButtonText = resourceLoader.GetString("Activation_Shortcut_Cancel"), DefaultButton = ContentDialogButton.Primary, }; shortcutDialog.PrimaryButtonClick += ShortcutDialog_PrimaryButtonClick; shortcutDialog.SecondaryButtonClick += ShortcutDialog_Reset; shortcutDialog.RightTapped += ShortcutDialog_Disable; shortcutDialog.Opened += ShortcutDialog_Opened; shortcutDialog.Closing += ShortcutDialog_Closing; AutomationProperties.SetName(EditButton, resourceLoader.GetString("Activation_Shortcut_Title")); OnAllowDisableChanged(this, null); } private void ShortcutControl_Unloaded(object sender, RoutedEventArgs e) { shortcutDialog.PrimaryButtonClick -= ShortcutDialog_PrimaryButtonClick; shortcutDialog.Opened -= ShortcutDialog_Opened; shortcutDialog.Closing -= ShortcutDialog_Closing; if (App.GetSettingsWindow() != null) { App.GetSettingsWindow().Activated -= ShortcutDialog_SettingsWindow_Activated; } // Dispose the HotkeySettingsControlHook object to terminate the hook threads when the textbox is unloaded if (hook != null) { hook.Dispose(); } hook = null; } private void KeyEventHandler(int key, bool matchValue, int matchValueCode) { VirtualKey virtualKey = (VirtualKey)key; switch (virtualKey) { case VirtualKey.LeftWindows: case VirtualKey.RightWindows: if (!matchValue && _modifierKeysOnEntering.Contains(virtualKey)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(virtualKey); } internalSettings.Win = matchValue; break; case VirtualKey.Control: case VirtualKey.LeftControl: case VirtualKey.RightControl: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Control)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Control); } internalSettings.Ctrl = matchValue; break; case VirtualKey.Menu: case VirtualKey.LeftMenu: case VirtualKey.RightMenu: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Menu)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Menu); } internalSettings.Alt = matchValue; break; case VirtualKey.Shift: case VirtualKey.LeftShift: case VirtualKey.RightShift: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Shift)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Shift); } internalSettings.Shift = matchValue; break; case VirtualKey.Escape: internalSettings = new HotkeySettings(); shortcutDialog.IsPrimaryButtonEnabled = false; return; default: internalSettings.Code = matchValueCode; break; } } // Function to send a single key event to the system which would be ignored by the hotkey control. private void SendSingleKeyboardInput(short keyCode, uint keyStatus) { NativeKeyboardHelper.INPUT inputShift = new NativeKeyboardHelper.INPUT { type = NativeKeyboardHelper.INPUTTYPE.INPUT_KEYBOARD, data = new NativeKeyboardHelper.InputUnion { ki = new NativeKeyboardHelper.KEYBDINPUT { wVk = keyCode, dwFlags = keyStatus, // Any keyevent with the extraInfo set to this value will be ignored by the keyboard hook and sent to the system instead. dwExtraInfo = ignoreKeyEventFlag, }, }, }; NativeKeyboardHelper.INPUT[] inputs = new NativeKeyboardHelper.INPUT[] { inputShift }; _ = NativeMethods.SendInput(1, inputs, NativeKeyboardHelper.INPUT.Size); } private bool FilterAccessibleKeyboardEvents(int key, UIntPtr extraInfo) { // A keyboard event sent with this value in the extra Information field should be ignored by the hook so that it can be captured by the system instead. if (extraInfo == ignoreKeyEventFlag) { return false; } // If the current key press is tab, based on the other keys ignore the key press so as to shift focus out of the hotkey control. if ((VirtualKey)key == VirtualKey.Tab) { // Shift was not pressed while entering and Shift is not pressed while leaving the hotkey control, treat it as a normal tab key press. if (!internalSettings.Shift && !_modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { return false; } // Shift was not pressed while entering but it was pressed while leaving the hotkey, therefore simulate a shift key press as the system does not know about shift being pressed in the hotkey. else if (internalSettings.Shift && !_modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { // This is to reset the shift key press within the control as it was not used within the control but rather was used to leave the hotkey. internalSettings.Shift = false; SendSingleKeyboardInput((short)VirtualKey.Shift, (uint)NativeKeyboardHelper.KeyEventF.KeyDown); return false; } // Shift was pressed on entering and remained pressed, therefore only ignore the tab key so that it can be passed to the system. // As the shift key is already assumed to be pressed by the system while it entered the hotkey control, shift would still remain pressed, hence ignoring the tab input would simulate a Shift+Tab key press. else if (!internalSettings.Shift && _modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { return false; } } // Either the cancel or save button has keyboard focus. if (FocusManager.GetFocusedElement(LayoutRoot.XamlRoot).GetType() == typeof(Button)) { return false; } return true; } private void Hotkey_KeyDown(int key) { KeyEventHandler(key, true, key); c.Keys = internalSettings.GetKeysList(); if (internalSettings.GetKeysList().Count == 0) { // Empty, disable save button shortcutDialog.IsPrimaryButtonEnabled = false; } else if (internalSettings.GetKeysList().Count == 1) { // 1 key, disable save button shortcutDialog.IsPrimaryButtonEnabled = false; // Check if the one key is a hotkey if (internalSettings.Shift || internalSettings.Win || internalSettings.Alt || internalSettings.Ctrl) { c.IsError = false; } else { c.IsError = true; } } // Tab and Shift+Tab are accessible keys and should not be displayed in the hotkey control. if (internalSettings.Code > 0 && !internalSettings.IsAccessibleShortcut()) { lastValidSettings = internalSettings.Clone(); if (!ComboIsValid(lastValidSettings)) { DisableKeys(); } else { EnableKeys(); } } } private void EnableKeys() { shortcutDialog.IsPrimaryButtonEnabled = true; c.IsError = false; // WarningLabel.Style = (Style)App.Current.Resources["SecondaryTextStyle"]; } private void DisableKeys() { shortcutDialog.IsPrimaryButtonEnabled = false; c.IsError = true; // WarningLabel.Style = (Style)App.Current.Resources["SecondaryWarningTextStyle"]; } private void Hotkey_KeyUp(int key) { KeyEventHandler(key, false, 0); } private bool Hotkey_IsActive() { return _isActive; } private void ShortcutDialog_Opened(ContentDialog sender, ContentDialogOpenedEventArgs args) { if (!ComboIsValid(hotkeySettings)) { DisableKeys(); } else { EnableKeys(); } // Reset the status on entering the hotkey each time. _modifierKeysOnEntering.Clear(); // To keep track of the modifier keys, whether it was pressed on entering. if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Shift) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Shift); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Control) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Control); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Menu) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Menu); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.LeftWindows) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.LeftWindows); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.RightWindows) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.RightWindows); } _isActive = true; } private async void OpenDialogButton_Click(object sender, RoutedEventArgs e) { c.Keys = null; c.Keys = HotkeySettings.GetKeysList(); shortcutDialog.XamlRoot = this.XamlRoot; shortcutDialog.RequestedTheme = this.ActualTheme; await shortcutDialog.ShowAsync(); } private void ShortcutDialog_Reset(ContentDialog sender, ContentDialogButtonClickEventArgs args) { hotkeySettings = null; SetValue(HotkeySettingsProperty, hotkeySettings); PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); lastValidSettings = hotkeySettings; AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private void ShortcutDialog_PrimaryButtonClick(ContentDialog sender, ContentDialogButtonClickEventArgs args) { if (ComboIsValid(lastValidSettings)) { HotkeySettings = lastValidSettings.Clone(); } PreviewKeysControl.ItemsSource = hotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private void ShortcutDialog_Disable(object sender, RightTappedRoutedEventArgs e) { if (!AllowDisable) { return; } var empty = new HotkeySettings(); HotkeySettings = empty; PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private static bool ComboIsValid(HotkeySettings settings) { if (settings != null && (settings.IsValid() || settings.IsEmpty())) { return true; } else { return false; } } private void ShortcutDialog_SettingsWindow_Activated(object sender, WindowActivatedEventArgs args) { args.Handled = true; if (args.WindowActivationState != WindowActivationState.Deactivated && (hook == null || hook.GetDisposedState() == true)) { // If the PT settings window gets focussed/activated again, we enable the keyboard hook to catch the keyboard input. hook = new HotkeySettingsControlHook(Hotkey_KeyDown, Hotkey_KeyUp, Hotkey_IsActive, FilterAccessibleKeyboardEvents); } else if (args.WindowActivationState == WindowActivationState.Deactivated && hook != null && hook.GetDisposedState() == false) { // If the PT settings window lost focus/activation, we disable the keyboard hook to allow keyboard input on other windows. hook.Dispose(); hook = null; } } private void ShortcutDialog_Closing(ContentDialog sender, ContentDialogClosingEventArgs args) { _isActive = false; } private void Dispose(bool disposing) { if (!disposedValue) { if (disposing) { if (hook != null) { hook.Dispose(); } hook = null; } disposedValue = true; } } public void Dispose() { // Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method Dispose(disposing: true); GC.SuppressFinalize(this); } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using CommunityToolkit.WinUI; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.Library; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Automation; using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Input; using Windows.System; namespace Microsoft.PowerToys.Settings.UI.Controls { public sealed partial class ShortcutControl : UserControl, IDisposable { private readonly UIntPtr ignoreKeyEventFlag = (UIntPtr)0x5555; private System.Collections.Generic.HashSet<VirtualKey> _modifierKeysOnEntering = new System.Collections.Generic.HashSet<VirtualKey>(); private bool _enabled; private HotkeySettings hotkeySettings; private HotkeySettings internalSettings; private HotkeySettings lastValidSettings; private HotkeySettingsControlHook hook; private bool _isActive; private bool disposedValue; public string Header { get; set; } public string Keys { get; set; } public static readonly DependencyProperty IsActiveProperty = DependencyProperty.Register("Enabled", typeof(bool), typeof(ShortcutControl), null); public static readonly DependencyProperty HotkeySettingsProperty = DependencyProperty.Register("HotkeySettings", typeof(HotkeySettings), typeof(ShortcutControl), null); public static readonly DependencyProperty AllowDisableProperty = DependencyProperty.Register("AllowDisable", typeof(bool), typeof(ShortcutControl), new PropertyMetadata(false, OnAllowDisableChanged)); private static void OnAllowDisableChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { var me = d as ShortcutControl; if (me == null) { return; } var description = me.c?.FindDescendant<TextBlock>(); if (description == null) { return; } var resourceLoader = Helpers.ResourceLoaderInstance.ResourceLoader; var newValue = (bool)(e?.NewValue ?? false); var text = newValue ? resourceLoader.GetString("Activation_Shortcut_With_Disable_Description") : resourceLoader.GetString("Activation_Shortcut_Description"); description.Text = text; } private ShortcutDialogContentControl c = new ShortcutDialogContentControl(); private ContentDialog shortcutDialog; public bool AllowDisable { get => (bool)GetValue(AllowDisableProperty); set => SetValue(AllowDisableProperty, value); } public bool Enabled { get { return _enabled; } set { SetValue(IsActiveProperty, value); _enabled = value; if (value) { EditButton.IsEnabled = true; } else { EditButton.IsEnabled = false; } } } public HotkeySettings HotkeySettings { get { return hotkeySettings; } set { if (hotkeySettings != value) { hotkeySettings = value; SetValue(HotkeySettingsProperty, value); PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); c.Keys = HotkeySettings.GetKeysList(); } } } public ShortcutControl() { InitializeComponent(); internalSettings = new HotkeySettings(); this.Unloaded += ShortcutControl_Unloaded; hook = new HotkeySettingsControlHook(Hotkey_KeyDown, Hotkey_KeyUp, Hotkey_IsActive, FilterAccessibleKeyboardEvents); var resourceLoader = Helpers.ResourceLoaderInstance.ResourceLoader; if (App.GetSettingsWindow() != null) { App.GetSettingsWindow().Activated += ShortcutDialog_SettingsWindow_Activated; } // We create the Dialog in C# because doing it in XAML is giving WinUI/XAML Island bugs when using dark theme. shortcutDialog = new ContentDialog { XamlRoot = this.XamlRoot, Title = resourceLoader.GetString("Activation_Shortcut_Title"), Content = c, PrimaryButtonText = resourceLoader.GetString("Activation_Shortcut_Save"), SecondaryButtonText = resourceLoader.GetString("Activation_Shortcut_Reset"), CloseButtonText = resourceLoader.GetString("Activation_Shortcut_Cancel"), DefaultButton = ContentDialogButton.Primary, }; shortcutDialog.PrimaryButtonClick += ShortcutDialog_PrimaryButtonClick; shortcutDialog.SecondaryButtonClick += ShortcutDialog_Reset; shortcutDialog.RightTapped += ShortcutDialog_Disable; shortcutDialog.Opened += ShortcutDialog_Opened; shortcutDialog.Closing += ShortcutDialog_Closing; AutomationProperties.SetName(EditButton, resourceLoader.GetString("Activation_Shortcut_Title")); OnAllowDisableChanged(this, null); } private void ShortcutControl_Unloaded(object sender, RoutedEventArgs e) { shortcutDialog.PrimaryButtonClick -= ShortcutDialog_PrimaryButtonClick; shortcutDialog.Opened -= ShortcutDialog_Opened; shortcutDialog.Closing -= ShortcutDialog_Closing; if (App.GetSettingsWindow() != null) { App.GetSettingsWindow().Activated -= ShortcutDialog_SettingsWindow_Activated; } // Dispose the HotkeySettingsControlHook object to terminate the hook threads when the textbox is unloaded if (hook != null) { hook.Dispose(); } hook = null; } private void KeyEventHandler(int key, bool matchValue, int matchValueCode) { VirtualKey virtualKey = (VirtualKey)key; switch (virtualKey) { case VirtualKey.LeftWindows: case VirtualKey.RightWindows: if (!matchValue && _modifierKeysOnEntering.Contains(virtualKey)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(virtualKey); } internalSettings.Win = matchValue; break; case VirtualKey.Control: case VirtualKey.LeftControl: case VirtualKey.RightControl: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Control)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Control); } internalSettings.Ctrl = matchValue; break; case VirtualKey.Menu: case VirtualKey.LeftMenu: case VirtualKey.RightMenu: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Menu)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Menu); } internalSettings.Alt = matchValue; break; case VirtualKey.Shift: case VirtualKey.LeftShift: case VirtualKey.RightShift: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Shift)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Shift); } internalSettings.Shift = matchValue; break; case VirtualKey.Escape: internalSettings = new HotkeySettings(); shortcutDialog.IsPrimaryButtonEnabled = false; return; default: internalSettings.Code = matchValueCode; break; } } // Function to send a single key event to the system which would be ignored by the hotkey control. private void SendSingleKeyboardInput(short keyCode, uint keyStatus) { NativeKeyboardHelper.INPUT inputShift = new NativeKeyboardHelper.INPUT { type = NativeKeyboardHelper.INPUTTYPE.INPUT_KEYBOARD, data = new NativeKeyboardHelper.InputUnion { ki = new NativeKeyboardHelper.KEYBDINPUT { wVk = keyCode, dwFlags = keyStatus, // Any keyevent with the extraInfo set to this value will be ignored by the keyboard hook and sent to the system instead. dwExtraInfo = ignoreKeyEventFlag, }, }, }; NativeKeyboardHelper.INPUT[] inputs = new NativeKeyboardHelper.INPUT[] { inputShift }; _ = NativeMethods.SendInput(1, inputs, NativeKeyboardHelper.INPUT.Size); } private bool FilterAccessibleKeyboardEvents(int key, UIntPtr extraInfo) { // A keyboard event sent with this value in the extra Information field should be ignored by the hook so that it can be captured by the system instead. if (extraInfo == ignoreKeyEventFlag) { return false; } // If the current key press is tab, based on the other keys ignore the key press so as to shift focus out of the hotkey control. if ((VirtualKey)key == VirtualKey.Tab) { // Shift was not pressed while entering and Shift is not pressed while leaving the hotkey control, treat it as a normal tab key press. if (!internalSettings.Shift && !_modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { return false; } // Shift was not pressed while entering but it was pressed while leaving the hotkey, therefore simulate a shift key press as the system does not know about shift being pressed in the hotkey. else if (internalSettings.Shift && !_modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { // This is to reset the shift key press within the control as it was not used within the control but rather was used to leave the hotkey. internalSettings.Shift = false; SendSingleKeyboardInput((short)VirtualKey.Shift, (uint)NativeKeyboardHelper.KeyEventF.KeyDown); return false; } // Shift was pressed on entering and remained pressed, therefore only ignore the tab key so that it can be passed to the system. // As the shift key is already assumed to be pressed by the system while it entered the hotkey control, shift would still remain pressed, hence ignoring the tab input would simulate a Shift+Tab key press. else if (!internalSettings.Shift && _modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { return false; } } // Either the cancel or save button has keyboard focus. if (FocusManager.GetFocusedElement(LayoutRoot.XamlRoot).GetType() == typeof(Button)) { return false; } return true; } private void Hotkey_KeyDown(int key) { KeyEventHandler(key, true, key); c.Keys = internalSettings.GetKeysList(); if (internalSettings.GetKeysList().Count == 0) { // Empty, disable save button shortcutDialog.IsPrimaryButtonEnabled = false; } else if (internalSettings.GetKeysList().Count == 1) { // 1 key, disable save button shortcutDialog.IsPrimaryButtonEnabled = false; // Check if the one key is a hotkey if (internalSettings.Shift || internalSettings.Win || internalSettings.Alt || internalSettings.Ctrl) { c.IsError = false; } else { c.IsError = true; } } // Tab and Shift+Tab are accessible keys and should not be displayed in the hotkey control. if (internalSettings.Code > 0 && !internalSettings.IsAccessibleShortcut()) { lastValidSettings = internalSettings.Clone(); if (!ComboIsValid(lastValidSettings)) { DisableKeys(); } else { EnableKeys(); } } c.IsWarningAltGr = internalSettings.Ctrl && internalSettings.Alt && !internalSettings.Win && (internalSettings.Code > 0); } private void EnableKeys() { shortcutDialog.IsPrimaryButtonEnabled = true; c.IsError = false; // WarningLabel.Style = (Style)App.Current.Resources["SecondaryTextStyle"]; } private void DisableKeys() { shortcutDialog.IsPrimaryButtonEnabled = false; c.IsError = true; // WarningLabel.Style = (Style)App.Current.Resources["SecondaryWarningTextStyle"]; } private void Hotkey_KeyUp(int key) { KeyEventHandler(key, false, 0); } private bool Hotkey_IsActive() { return _isActive; } private void ShortcutDialog_Opened(ContentDialog sender, ContentDialogOpenedEventArgs args) { if (!ComboIsValid(hotkeySettings)) { DisableKeys(); } else { EnableKeys(); } // Reset the status on entering the hotkey each time. _modifierKeysOnEntering.Clear(); // To keep track of the modifier keys, whether it was pressed on entering. if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Shift) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Shift); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Control) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Control); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Menu) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Menu); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.LeftWindows) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.LeftWindows); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.RightWindows) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.RightWindows); } _isActive = true; } private async void OpenDialogButton_Click(object sender, RoutedEventArgs e) { c.Keys = null; c.Keys = HotkeySettings.GetKeysList(); // 92 means the Win key. The logic is: warning should be visible if the shortcut contains Alt AND contains Ctrl AND NOT contains Win. // Additional key must be present, as this is a valid, previously used shortcut shown at dialog open. Check for presence of non-modifier-key is not necessary therefore c.IsWarningAltGr = c.Keys.Contains("Ctrl") && c.Keys.Contains("Alt") && !c.Keys.Contains(92); shortcutDialog.XamlRoot = this.XamlRoot; shortcutDialog.RequestedTheme = this.ActualTheme; await shortcutDialog.ShowAsync(); } private void ShortcutDialog_Reset(ContentDialog sender, ContentDialogButtonClickEventArgs args) { hotkeySettings = null; SetValue(HotkeySettingsProperty, hotkeySettings); PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); lastValidSettings = hotkeySettings; AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private void ShortcutDialog_PrimaryButtonClick(ContentDialog sender, ContentDialogButtonClickEventArgs args) { if (ComboIsValid(lastValidSettings)) { HotkeySettings = lastValidSettings.Clone(); } PreviewKeysControl.ItemsSource = hotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private void ShortcutDialog_Disable(object sender, RightTappedRoutedEventArgs e) { if (!AllowDisable) { return; } var empty = new HotkeySettings(); HotkeySettings = empty; PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private static bool ComboIsValid(HotkeySettings settings) { if (settings != null && (settings.IsValid() || settings.IsEmpty())) { return true; } else { return false; } } private void ShortcutDialog_SettingsWindow_Activated(object sender, WindowActivatedEventArgs args) { args.Handled = true; if (args.WindowActivationState != WindowActivationState.Deactivated && (hook == null || hook.GetDisposedState() == true)) { // If the PT settings window gets focussed/activated again, we enable the keyboard hook to catch the keyboard input. hook = new HotkeySettingsControlHook(Hotkey_KeyDown, Hotkey_KeyUp, Hotkey_IsActive, FilterAccessibleKeyboardEvents); } else if (args.WindowActivationState == WindowActivationState.Deactivated && hook != null && hook.GetDisposedState() == false) { // If the PT settings window lost focus/activation, we disable the keyboard hook to allow keyboard input on other windows. hook.Dispose(); hook = null; } } private void ShortcutDialog_Closing(ContentDialog sender, ContentDialogClosingEventArgs args) { _isActive = false; } private void Dispose(bool disposing) { if (!disposedValue) { if (disposing) { if (hook != null) { hook.Dispose(); } hook = null; } disposedValue = true; } } public void Dispose() { // Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method Dispose(disposing: true); GC.SuppressFinalize(this); } } }
donlaci
106f90dc015de906b4c83da76603e4f57ba00da4
bde9243d72003a70c256349d70ce263a8d1dad51
Magic numbers? What is 92?
jaimecbernardo
213
microsoft/PowerToys
29,761
[Settings] Adding warning info box to Shortcut edit dialog
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Showing a warning info bar in case the user selects a shortcut containing Alt+Ctrl. The implemented logic: Warning is visible if the shortcut contains Alt AND contains Ctrl AND NOT contains Win AND contains an additional key, (Shift may be absent/present, warning is not shown while only the modifier keys are pressed). The info bar contains a longer description as a tooltip for more precise explanation. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #19062 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed tested locally
null
2023-11-09 12:16:26+00:00
2023-11-20 21:27:43+00:00
src/settings-ui/Settings.UI/SettingsXAML/Controls/ShortcutControl/ShortcutControl.xaml.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using CommunityToolkit.WinUI; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.Library; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Automation; using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Input; using Windows.System; namespace Microsoft.PowerToys.Settings.UI.Controls { public sealed partial class ShortcutControl : UserControl, IDisposable { private readonly UIntPtr ignoreKeyEventFlag = (UIntPtr)0x5555; private System.Collections.Generic.HashSet<VirtualKey> _modifierKeysOnEntering = new System.Collections.Generic.HashSet<VirtualKey>(); private bool _enabled; private HotkeySettings hotkeySettings; private HotkeySettings internalSettings; private HotkeySettings lastValidSettings; private HotkeySettingsControlHook hook; private bool _isActive; private bool disposedValue; public string Header { get; set; } public string Keys { get; set; } public static readonly DependencyProperty IsActiveProperty = DependencyProperty.Register("Enabled", typeof(bool), typeof(ShortcutControl), null); public static readonly DependencyProperty HotkeySettingsProperty = DependencyProperty.Register("HotkeySettings", typeof(HotkeySettings), typeof(ShortcutControl), null); public static readonly DependencyProperty AllowDisableProperty = DependencyProperty.Register("AllowDisable", typeof(bool), typeof(ShortcutControl), new PropertyMetadata(false, OnAllowDisableChanged)); private static void OnAllowDisableChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { var me = d as ShortcutControl; if (me == null) { return; } var description = me.c?.FindDescendant<TextBlock>(); if (description == null) { return; } var resourceLoader = Helpers.ResourceLoaderInstance.ResourceLoader; var newValue = (bool)(e?.NewValue ?? false); var text = newValue ? resourceLoader.GetString("Activation_Shortcut_With_Disable_Description") : resourceLoader.GetString("Activation_Shortcut_Description"); description.Text = text; } private ShortcutDialogContentControl c = new ShortcutDialogContentControl(); private ContentDialog shortcutDialog; public bool AllowDisable { get => (bool)GetValue(AllowDisableProperty); set => SetValue(AllowDisableProperty, value); } public bool Enabled { get { return _enabled; } set { SetValue(IsActiveProperty, value); _enabled = value; if (value) { EditButton.IsEnabled = true; } else { EditButton.IsEnabled = false; } } } public HotkeySettings HotkeySettings { get { return hotkeySettings; } set { if (hotkeySettings != value) { hotkeySettings = value; SetValue(HotkeySettingsProperty, value); PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); c.Keys = HotkeySettings.GetKeysList(); } } } public ShortcutControl() { InitializeComponent(); internalSettings = new HotkeySettings(); this.Unloaded += ShortcutControl_Unloaded; hook = new HotkeySettingsControlHook(Hotkey_KeyDown, Hotkey_KeyUp, Hotkey_IsActive, FilterAccessibleKeyboardEvents); var resourceLoader = Helpers.ResourceLoaderInstance.ResourceLoader; if (App.GetSettingsWindow() != null) { App.GetSettingsWindow().Activated += ShortcutDialog_SettingsWindow_Activated; } // We create the Dialog in C# because doing it in XAML is giving WinUI/XAML Island bugs when using dark theme. shortcutDialog = new ContentDialog { XamlRoot = this.XamlRoot, Title = resourceLoader.GetString("Activation_Shortcut_Title"), Content = c, PrimaryButtonText = resourceLoader.GetString("Activation_Shortcut_Save"), SecondaryButtonText = resourceLoader.GetString("Activation_Shortcut_Reset"), CloseButtonText = resourceLoader.GetString("Activation_Shortcut_Cancel"), DefaultButton = ContentDialogButton.Primary, }; shortcutDialog.PrimaryButtonClick += ShortcutDialog_PrimaryButtonClick; shortcutDialog.SecondaryButtonClick += ShortcutDialog_Reset; shortcutDialog.RightTapped += ShortcutDialog_Disable; shortcutDialog.Opened += ShortcutDialog_Opened; shortcutDialog.Closing += ShortcutDialog_Closing; AutomationProperties.SetName(EditButton, resourceLoader.GetString("Activation_Shortcut_Title")); OnAllowDisableChanged(this, null); } private void ShortcutControl_Unloaded(object sender, RoutedEventArgs e) { shortcutDialog.PrimaryButtonClick -= ShortcutDialog_PrimaryButtonClick; shortcutDialog.Opened -= ShortcutDialog_Opened; shortcutDialog.Closing -= ShortcutDialog_Closing; if (App.GetSettingsWindow() != null) { App.GetSettingsWindow().Activated -= ShortcutDialog_SettingsWindow_Activated; } // Dispose the HotkeySettingsControlHook object to terminate the hook threads when the textbox is unloaded if (hook != null) { hook.Dispose(); } hook = null; } private void KeyEventHandler(int key, bool matchValue, int matchValueCode) { VirtualKey virtualKey = (VirtualKey)key; switch (virtualKey) { case VirtualKey.LeftWindows: case VirtualKey.RightWindows: if (!matchValue && _modifierKeysOnEntering.Contains(virtualKey)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(virtualKey); } internalSettings.Win = matchValue; break; case VirtualKey.Control: case VirtualKey.LeftControl: case VirtualKey.RightControl: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Control)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Control); } internalSettings.Ctrl = matchValue; break; case VirtualKey.Menu: case VirtualKey.LeftMenu: case VirtualKey.RightMenu: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Menu)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Menu); } internalSettings.Alt = matchValue; break; case VirtualKey.Shift: case VirtualKey.LeftShift: case VirtualKey.RightShift: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Shift)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Shift); } internalSettings.Shift = matchValue; break; case VirtualKey.Escape: internalSettings = new HotkeySettings(); shortcutDialog.IsPrimaryButtonEnabled = false; return; default: internalSettings.Code = matchValueCode; break; } } // Function to send a single key event to the system which would be ignored by the hotkey control. private void SendSingleKeyboardInput(short keyCode, uint keyStatus) { NativeKeyboardHelper.INPUT inputShift = new NativeKeyboardHelper.INPUT { type = NativeKeyboardHelper.INPUTTYPE.INPUT_KEYBOARD, data = new NativeKeyboardHelper.InputUnion { ki = new NativeKeyboardHelper.KEYBDINPUT { wVk = keyCode, dwFlags = keyStatus, // Any keyevent with the extraInfo set to this value will be ignored by the keyboard hook and sent to the system instead. dwExtraInfo = ignoreKeyEventFlag, }, }, }; NativeKeyboardHelper.INPUT[] inputs = new NativeKeyboardHelper.INPUT[] { inputShift }; _ = NativeMethods.SendInput(1, inputs, NativeKeyboardHelper.INPUT.Size); } private bool FilterAccessibleKeyboardEvents(int key, UIntPtr extraInfo) { // A keyboard event sent with this value in the extra Information field should be ignored by the hook so that it can be captured by the system instead. if (extraInfo == ignoreKeyEventFlag) { return false; } // If the current key press is tab, based on the other keys ignore the key press so as to shift focus out of the hotkey control. if ((VirtualKey)key == VirtualKey.Tab) { // Shift was not pressed while entering and Shift is not pressed while leaving the hotkey control, treat it as a normal tab key press. if (!internalSettings.Shift && !_modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { return false; } // Shift was not pressed while entering but it was pressed while leaving the hotkey, therefore simulate a shift key press as the system does not know about shift being pressed in the hotkey. else if (internalSettings.Shift && !_modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { // This is to reset the shift key press within the control as it was not used within the control but rather was used to leave the hotkey. internalSettings.Shift = false; SendSingleKeyboardInput((short)VirtualKey.Shift, (uint)NativeKeyboardHelper.KeyEventF.KeyDown); return false; } // Shift was pressed on entering and remained pressed, therefore only ignore the tab key so that it can be passed to the system. // As the shift key is already assumed to be pressed by the system while it entered the hotkey control, shift would still remain pressed, hence ignoring the tab input would simulate a Shift+Tab key press. else if (!internalSettings.Shift && _modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { return false; } } // Either the cancel or save button has keyboard focus. if (FocusManager.GetFocusedElement(LayoutRoot.XamlRoot).GetType() == typeof(Button)) { return false; } return true; } private void Hotkey_KeyDown(int key) { KeyEventHandler(key, true, key); c.Keys = internalSettings.GetKeysList(); if (internalSettings.GetKeysList().Count == 0) { // Empty, disable save button shortcutDialog.IsPrimaryButtonEnabled = false; } else if (internalSettings.GetKeysList().Count == 1) { // 1 key, disable save button shortcutDialog.IsPrimaryButtonEnabled = false; // Check if the one key is a hotkey if (internalSettings.Shift || internalSettings.Win || internalSettings.Alt || internalSettings.Ctrl) { c.IsError = false; } else { c.IsError = true; } } // Tab and Shift+Tab are accessible keys and should not be displayed in the hotkey control. if (internalSettings.Code > 0 && !internalSettings.IsAccessibleShortcut()) { lastValidSettings = internalSettings.Clone(); if (!ComboIsValid(lastValidSettings)) { DisableKeys(); } else { EnableKeys(); } } } private void EnableKeys() { shortcutDialog.IsPrimaryButtonEnabled = true; c.IsError = false; // WarningLabel.Style = (Style)App.Current.Resources["SecondaryTextStyle"]; } private void DisableKeys() { shortcutDialog.IsPrimaryButtonEnabled = false; c.IsError = true; // WarningLabel.Style = (Style)App.Current.Resources["SecondaryWarningTextStyle"]; } private void Hotkey_KeyUp(int key) { KeyEventHandler(key, false, 0); } private bool Hotkey_IsActive() { return _isActive; } private void ShortcutDialog_Opened(ContentDialog sender, ContentDialogOpenedEventArgs args) { if (!ComboIsValid(hotkeySettings)) { DisableKeys(); } else { EnableKeys(); } // Reset the status on entering the hotkey each time. _modifierKeysOnEntering.Clear(); // To keep track of the modifier keys, whether it was pressed on entering. if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Shift) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Shift); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Control) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Control); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Menu) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Menu); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.LeftWindows) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.LeftWindows); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.RightWindows) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.RightWindows); } _isActive = true; } private async void OpenDialogButton_Click(object sender, RoutedEventArgs e) { c.Keys = null; c.Keys = HotkeySettings.GetKeysList(); shortcutDialog.XamlRoot = this.XamlRoot; shortcutDialog.RequestedTheme = this.ActualTheme; await shortcutDialog.ShowAsync(); } private void ShortcutDialog_Reset(ContentDialog sender, ContentDialogButtonClickEventArgs args) { hotkeySettings = null; SetValue(HotkeySettingsProperty, hotkeySettings); PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); lastValidSettings = hotkeySettings; AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private void ShortcutDialog_PrimaryButtonClick(ContentDialog sender, ContentDialogButtonClickEventArgs args) { if (ComboIsValid(lastValidSettings)) { HotkeySettings = lastValidSettings.Clone(); } PreviewKeysControl.ItemsSource = hotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private void ShortcutDialog_Disable(object sender, RightTappedRoutedEventArgs e) { if (!AllowDisable) { return; } var empty = new HotkeySettings(); HotkeySettings = empty; PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private static bool ComboIsValid(HotkeySettings settings) { if (settings != null && (settings.IsValid() || settings.IsEmpty())) { return true; } else { return false; } } private void ShortcutDialog_SettingsWindow_Activated(object sender, WindowActivatedEventArgs args) { args.Handled = true; if (args.WindowActivationState != WindowActivationState.Deactivated && (hook == null || hook.GetDisposedState() == true)) { // If the PT settings window gets focussed/activated again, we enable the keyboard hook to catch the keyboard input. hook = new HotkeySettingsControlHook(Hotkey_KeyDown, Hotkey_KeyUp, Hotkey_IsActive, FilterAccessibleKeyboardEvents); } else if (args.WindowActivationState == WindowActivationState.Deactivated && hook != null && hook.GetDisposedState() == false) { // If the PT settings window lost focus/activation, we disable the keyboard hook to allow keyboard input on other windows. hook.Dispose(); hook = null; } } private void ShortcutDialog_Closing(ContentDialog sender, ContentDialogClosingEventArgs args) { _isActive = false; } private void Dispose(bool disposing) { if (!disposedValue) { if (disposing) { if (hook != null) { hook.Dispose(); } hook = null; } disposedValue = true; } } public void Dispose() { // Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method Dispose(disposing: true); GC.SuppressFinalize(this); } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using CommunityToolkit.WinUI; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.Library; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Automation; using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Input; using Windows.System; namespace Microsoft.PowerToys.Settings.UI.Controls { public sealed partial class ShortcutControl : UserControl, IDisposable { private readonly UIntPtr ignoreKeyEventFlag = (UIntPtr)0x5555; private System.Collections.Generic.HashSet<VirtualKey> _modifierKeysOnEntering = new System.Collections.Generic.HashSet<VirtualKey>(); private bool _enabled; private HotkeySettings hotkeySettings; private HotkeySettings internalSettings; private HotkeySettings lastValidSettings; private HotkeySettingsControlHook hook; private bool _isActive; private bool disposedValue; public string Header { get; set; } public string Keys { get; set; } public static readonly DependencyProperty IsActiveProperty = DependencyProperty.Register("Enabled", typeof(bool), typeof(ShortcutControl), null); public static readonly DependencyProperty HotkeySettingsProperty = DependencyProperty.Register("HotkeySettings", typeof(HotkeySettings), typeof(ShortcutControl), null); public static readonly DependencyProperty AllowDisableProperty = DependencyProperty.Register("AllowDisable", typeof(bool), typeof(ShortcutControl), new PropertyMetadata(false, OnAllowDisableChanged)); private static void OnAllowDisableChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { var me = d as ShortcutControl; if (me == null) { return; } var description = me.c?.FindDescendant<TextBlock>(); if (description == null) { return; } var resourceLoader = Helpers.ResourceLoaderInstance.ResourceLoader; var newValue = (bool)(e?.NewValue ?? false); var text = newValue ? resourceLoader.GetString("Activation_Shortcut_With_Disable_Description") : resourceLoader.GetString("Activation_Shortcut_Description"); description.Text = text; } private ShortcutDialogContentControl c = new ShortcutDialogContentControl(); private ContentDialog shortcutDialog; public bool AllowDisable { get => (bool)GetValue(AllowDisableProperty); set => SetValue(AllowDisableProperty, value); } public bool Enabled { get { return _enabled; } set { SetValue(IsActiveProperty, value); _enabled = value; if (value) { EditButton.IsEnabled = true; } else { EditButton.IsEnabled = false; } } } public HotkeySettings HotkeySettings { get { return hotkeySettings; } set { if (hotkeySettings != value) { hotkeySettings = value; SetValue(HotkeySettingsProperty, value); PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); c.Keys = HotkeySettings.GetKeysList(); } } } public ShortcutControl() { InitializeComponent(); internalSettings = new HotkeySettings(); this.Unloaded += ShortcutControl_Unloaded; hook = new HotkeySettingsControlHook(Hotkey_KeyDown, Hotkey_KeyUp, Hotkey_IsActive, FilterAccessibleKeyboardEvents); var resourceLoader = Helpers.ResourceLoaderInstance.ResourceLoader; if (App.GetSettingsWindow() != null) { App.GetSettingsWindow().Activated += ShortcutDialog_SettingsWindow_Activated; } // We create the Dialog in C# because doing it in XAML is giving WinUI/XAML Island bugs when using dark theme. shortcutDialog = new ContentDialog { XamlRoot = this.XamlRoot, Title = resourceLoader.GetString("Activation_Shortcut_Title"), Content = c, PrimaryButtonText = resourceLoader.GetString("Activation_Shortcut_Save"), SecondaryButtonText = resourceLoader.GetString("Activation_Shortcut_Reset"), CloseButtonText = resourceLoader.GetString("Activation_Shortcut_Cancel"), DefaultButton = ContentDialogButton.Primary, }; shortcutDialog.PrimaryButtonClick += ShortcutDialog_PrimaryButtonClick; shortcutDialog.SecondaryButtonClick += ShortcutDialog_Reset; shortcutDialog.RightTapped += ShortcutDialog_Disable; shortcutDialog.Opened += ShortcutDialog_Opened; shortcutDialog.Closing += ShortcutDialog_Closing; AutomationProperties.SetName(EditButton, resourceLoader.GetString("Activation_Shortcut_Title")); OnAllowDisableChanged(this, null); } private void ShortcutControl_Unloaded(object sender, RoutedEventArgs e) { shortcutDialog.PrimaryButtonClick -= ShortcutDialog_PrimaryButtonClick; shortcutDialog.Opened -= ShortcutDialog_Opened; shortcutDialog.Closing -= ShortcutDialog_Closing; if (App.GetSettingsWindow() != null) { App.GetSettingsWindow().Activated -= ShortcutDialog_SettingsWindow_Activated; } // Dispose the HotkeySettingsControlHook object to terminate the hook threads when the textbox is unloaded if (hook != null) { hook.Dispose(); } hook = null; } private void KeyEventHandler(int key, bool matchValue, int matchValueCode) { VirtualKey virtualKey = (VirtualKey)key; switch (virtualKey) { case VirtualKey.LeftWindows: case VirtualKey.RightWindows: if (!matchValue && _modifierKeysOnEntering.Contains(virtualKey)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(virtualKey); } internalSettings.Win = matchValue; break; case VirtualKey.Control: case VirtualKey.LeftControl: case VirtualKey.RightControl: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Control)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Control); } internalSettings.Ctrl = matchValue; break; case VirtualKey.Menu: case VirtualKey.LeftMenu: case VirtualKey.RightMenu: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Menu)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Menu); } internalSettings.Alt = matchValue; break; case VirtualKey.Shift: case VirtualKey.LeftShift: case VirtualKey.RightShift: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Shift)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Shift); } internalSettings.Shift = matchValue; break; case VirtualKey.Escape: internalSettings = new HotkeySettings(); shortcutDialog.IsPrimaryButtonEnabled = false; return; default: internalSettings.Code = matchValueCode; break; } } // Function to send a single key event to the system which would be ignored by the hotkey control. private void SendSingleKeyboardInput(short keyCode, uint keyStatus) { NativeKeyboardHelper.INPUT inputShift = new NativeKeyboardHelper.INPUT { type = NativeKeyboardHelper.INPUTTYPE.INPUT_KEYBOARD, data = new NativeKeyboardHelper.InputUnion { ki = new NativeKeyboardHelper.KEYBDINPUT { wVk = keyCode, dwFlags = keyStatus, // Any keyevent with the extraInfo set to this value will be ignored by the keyboard hook and sent to the system instead. dwExtraInfo = ignoreKeyEventFlag, }, }, }; NativeKeyboardHelper.INPUT[] inputs = new NativeKeyboardHelper.INPUT[] { inputShift }; _ = NativeMethods.SendInput(1, inputs, NativeKeyboardHelper.INPUT.Size); } private bool FilterAccessibleKeyboardEvents(int key, UIntPtr extraInfo) { // A keyboard event sent with this value in the extra Information field should be ignored by the hook so that it can be captured by the system instead. if (extraInfo == ignoreKeyEventFlag) { return false; } // If the current key press is tab, based on the other keys ignore the key press so as to shift focus out of the hotkey control. if ((VirtualKey)key == VirtualKey.Tab) { // Shift was not pressed while entering and Shift is not pressed while leaving the hotkey control, treat it as a normal tab key press. if (!internalSettings.Shift && !_modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { return false; } // Shift was not pressed while entering but it was pressed while leaving the hotkey, therefore simulate a shift key press as the system does not know about shift being pressed in the hotkey. else if (internalSettings.Shift && !_modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { // This is to reset the shift key press within the control as it was not used within the control but rather was used to leave the hotkey. internalSettings.Shift = false; SendSingleKeyboardInput((short)VirtualKey.Shift, (uint)NativeKeyboardHelper.KeyEventF.KeyDown); return false; } // Shift was pressed on entering and remained pressed, therefore only ignore the tab key so that it can be passed to the system. // As the shift key is already assumed to be pressed by the system while it entered the hotkey control, shift would still remain pressed, hence ignoring the tab input would simulate a Shift+Tab key press. else if (!internalSettings.Shift && _modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { return false; } } // Either the cancel or save button has keyboard focus. if (FocusManager.GetFocusedElement(LayoutRoot.XamlRoot).GetType() == typeof(Button)) { return false; } return true; } private void Hotkey_KeyDown(int key) { KeyEventHandler(key, true, key); c.Keys = internalSettings.GetKeysList(); if (internalSettings.GetKeysList().Count == 0) { // Empty, disable save button shortcutDialog.IsPrimaryButtonEnabled = false; } else if (internalSettings.GetKeysList().Count == 1) { // 1 key, disable save button shortcutDialog.IsPrimaryButtonEnabled = false; // Check if the one key is a hotkey if (internalSettings.Shift || internalSettings.Win || internalSettings.Alt || internalSettings.Ctrl) { c.IsError = false; } else { c.IsError = true; } } // Tab and Shift+Tab are accessible keys and should not be displayed in the hotkey control. if (internalSettings.Code > 0 && !internalSettings.IsAccessibleShortcut()) { lastValidSettings = internalSettings.Clone(); if (!ComboIsValid(lastValidSettings)) { DisableKeys(); } else { EnableKeys(); } } c.IsWarningAltGr = internalSettings.Ctrl && internalSettings.Alt && !internalSettings.Win && (internalSettings.Code > 0); } private void EnableKeys() { shortcutDialog.IsPrimaryButtonEnabled = true; c.IsError = false; // WarningLabel.Style = (Style)App.Current.Resources["SecondaryTextStyle"]; } private void DisableKeys() { shortcutDialog.IsPrimaryButtonEnabled = false; c.IsError = true; // WarningLabel.Style = (Style)App.Current.Resources["SecondaryWarningTextStyle"]; } private void Hotkey_KeyUp(int key) { KeyEventHandler(key, false, 0); } private bool Hotkey_IsActive() { return _isActive; } private void ShortcutDialog_Opened(ContentDialog sender, ContentDialogOpenedEventArgs args) { if (!ComboIsValid(hotkeySettings)) { DisableKeys(); } else { EnableKeys(); } // Reset the status on entering the hotkey each time. _modifierKeysOnEntering.Clear(); // To keep track of the modifier keys, whether it was pressed on entering. if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Shift) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Shift); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Control) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Control); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Menu) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Menu); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.LeftWindows) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.LeftWindows); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.RightWindows) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.RightWindows); } _isActive = true; } private async void OpenDialogButton_Click(object sender, RoutedEventArgs e) { c.Keys = null; c.Keys = HotkeySettings.GetKeysList(); // 92 means the Win key. The logic is: warning should be visible if the shortcut contains Alt AND contains Ctrl AND NOT contains Win. // Additional key must be present, as this is a valid, previously used shortcut shown at dialog open. Check for presence of non-modifier-key is not necessary therefore c.IsWarningAltGr = c.Keys.Contains("Ctrl") && c.Keys.Contains("Alt") && !c.Keys.Contains(92); shortcutDialog.XamlRoot = this.XamlRoot; shortcutDialog.RequestedTheme = this.ActualTheme; await shortcutDialog.ShowAsync(); } private void ShortcutDialog_Reset(ContentDialog sender, ContentDialogButtonClickEventArgs args) { hotkeySettings = null; SetValue(HotkeySettingsProperty, hotkeySettings); PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); lastValidSettings = hotkeySettings; AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private void ShortcutDialog_PrimaryButtonClick(ContentDialog sender, ContentDialogButtonClickEventArgs args) { if (ComboIsValid(lastValidSettings)) { HotkeySettings = lastValidSettings.Clone(); } PreviewKeysControl.ItemsSource = hotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private void ShortcutDialog_Disable(object sender, RightTappedRoutedEventArgs e) { if (!AllowDisable) { return; } var empty = new HotkeySettings(); HotkeySettings = empty; PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private static bool ComboIsValid(HotkeySettings settings) { if (settings != null && (settings.IsValid() || settings.IsEmpty())) { return true; } else { return false; } } private void ShortcutDialog_SettingsWindow_Activated(object sender, WindowActivatedEventArgs args) { args.Handled = true; if (args.WindowActivationState != WindowActivationState.Deactivated && (hook == null || hook.GetDisposedState() == true)) { // If the PT settings window gets focussed/activated again, we enable the keyboard hook to catch the keyboard input. hook = new HotkeySettingsControlHook(Hotkey_KeyDown, Hotkey_KeyUp, Hotkey_IsActive, FilterAccessibleKeyboardEvents); } else if (args.WindowActivationState == WindowActivationState.Deactivated && hook != null && hook.GetDisposedState() == false) { // If the PT settings window lost focus/activation, we disable the keyboard hook to allow keyboard input on other windows. hook.Dispose(); hook = null; } } private void ShortcutDialog_Closing(ContentDialog sender, ContentDialogClosingEventArgs args) { _isActive = false; } private void Dispose(bool disposing) { if (!disposedValue) { if (disposing) { if (hook != null) { hook.Dispose(); } hook = null; } disposedValue = true; } } public void Dispose() { // Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method Dispose(disposing: true); GC.SuppressFinalize(this); } } }
donlaci
106f90dc015de906b4c83da76603e4f57ba00da4
bde9243d72003a70c256349d70ce263a8d1dad51
> ...if the shortcut contains Alt AND contains Ctrl AND NOT contains Win...
Jay-o-Way
214
microsoft/PowerToys
29,761
[Settings] Adding warning info box to Shortcut edit dialog
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Showing a warning info bar in case the user selects a shortcut containing Alt+Ctrl. The implemented logic: Warning is visible if the shortcut contains Alt AND contains Ctrl AND NOT contains Win AND contains an additional key, (Shift may be absent/present, warning is not shown while only the modifier keys are pressed). The info bar contains a longer description as a tooltip for more precise explanation. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #19062 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed tested locally
null
2023-11-09 12:16:26+00:00
2023-11-20 21:27:43+00:00
src/settings-ui/Settings.UI/SettingsXAML/Controls/ShortcutControl/ShortcutControl.xaml.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using CommunityToolkit.WinUI; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.Library; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Automation; using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Input; using Windows.System; namespace Microsoft.PowerToys.Settings.UI.Controls { public sealed partial class ShortcutControl : UserControl, IDisposable { private readonly UIntPtr ignoreKeyEventFlag = (UIntPtr)0x5555; private System.Collections.Generic.HashSet<VirtualKey> _modifierKeysOnEntering = new System.Collections.Generic.HashSet<VirtualKey>(); private bool _enabled; private HotkeySettings hotkeySettings; private HotkeySettings internalSettings; private HotkeySettings lastValidSettings; private HotkeySettingsControlHook hook; private bool _isActive; private bool disposedValue; public string Header { get; set; } public string Keys { get; set; } public static readonly DependencyProperty IsActiveProperty = DependencyProperty.Register("Enabled", typeof(bool), typeof(ShortcutControl), null); public static readonly DependencyProperty HotkeySettingsProperty = DependencyProperty.Register("HotkeySettings", typeof(HotkeySettings), typeof(ShortcutControl), null); public static readonly DependencyProperty AllowDisableProperty = DependencyProperty.Register("AllowDisable", typeof(bool), typeof(ShortcutControl), new PropertyMetadata(false, OnAllowDisableChanged)); private static void OnAllowDisableChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { var me = d as ShortcutControl; if (me == null) { return; } var description = me.c?.FindDescendant<TextBlock>(); if (description == null) { return; } var resourceLoader = Helpers.ResourceLoaderInstance.ResourceLoader; var newValue = (bool)(e?.NewValue ?? false); var text = newValue ? resourceLoader.GetString("Activation_Shortcut_With_Disable_Description") : resourceLoader.GetString("Activation_Shortcut_Description"); description.Text = text; } private ShortcutDialogContentControl c = new ShortcutDialogContentControl(); private ContentDialog shortcutDialog; public bool AllowDisable { get => (bool)GetValue(AllowDisableProperty); set => SetValue(AllowDisableProperty, value); } public bool Enabled { get { return _enabled; } set { SetValue(IsActiveProperty, value); _enabled = value; if (value) { EditButton.IsEnabled = true; } else { EditButton.IsEnabled = false; } } } public HotkeySettings HotkeySettings { get { return hotkeySettings; } set { if (hotkeySettings != value) { hotkeySettings = value; SetValue(HotkeySettingsProperty, value); PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); c.Keys = HotkeySettings.GetKeysList(); } } } public ShortcutControl() { InitializeComponent(); internalSettings = new HotkeySettings(); this.Unloaded += ShortcutControl_Unloaded; hook = new HotkeySettingsControlHook(Hotkey_KeyDown, Hotkey_KeyUp, Hotkey_IsActive, FilterAccessibleKeyboardEvents); var resourceLoader = Helpers.ResourceLoaderInstance.ResourceLoader; if (App.GetSettingsWindow() != null) { App.GetSettingsWindow().Activated += ShortcutDialog_SettingsWindow_Activated; } // We create the Dialog in C# because doing it in XAML is giving WinUI/XAML Island bugs when using dark theme. shortcutDialog = new ContentDialog { XamlRoot = this.XamlRoot, Title = resourceLoader.GetString("Activation_Shortcut_Title"), Content = c, PrimaryButtonText = resourceLoader.GetString("Activation_Shortcut_Save"), SecondaryButtonText = resourceLoader.GetString("Activation_Shortcut_Reset"), CloseButtonText = resourceLoader.GetString("Activation_Shortcut_Cancel"), DefaultButton = ContentDialogButton.Primary, }; shortcutDialog.PrimaryButtonClick += ShortcutDialog_PrimaryButtonClick; shortcutDialog.SecondaryButtonClick += ShortcutDialog_Reset; shortcutDialog.RightTapped += ShortcutDialog_Disable; shortcutDialog.Opened += ShortcutDialog_Opened; shortcutDialog.Closing += ShortcutDialog_Closing; AutomationProperties.SetName(EditButton, resourceLoader.GetString("Activation_Shortcut_Title")); OnAllowDisableChanged(this, null); } private void ShortcutControl_Unloaded(object sender, RoutedEventArgs e) { shortcutDialog.PrimaryButtonClick -= ShortcutDialog_PrimaryButtonClick; shortcutDialog.Opened -= ShortcutDialog_Opened; shortcutDialog.Closing -= ShortcutDialog_Closing; if (App.GetSettingsWindow() != null) { App.GetSettingsWindow().Activated -= ShortcutDialog_SettingsWindow_Activated; } // Dispose the HotkeySettingsControlHook object to terminate the hook threads when the textbox is unloaded if (hook != null) { hook.Dispose(); } hook = null; } private void KeyEventHandler(int key, bool matchValue, int matchValueCode) { VirtualKey virtualKey = (VirtualKey)key; switch (virtualKey) { case VirtualKey.LeftWindows: case VirtualKey.RightWindows: if (!matchValue && _modifierKeysOnEntering.Contains(virtualKey)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(virtualKey); } internalSettings.Win = matchValue; break; case VirtualKey.Control: case VirtualKey.LeftControl: case VirtualKey.RightControl: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Control)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Control); } internalSettings.Ctrl = matchValue; break; case VirtualKey.Menu: case VirtualKey.LeftMenu: case VirtualKey.RightMenu: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Menu)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Menu); } internalSettings.Alt = matchValue; break; case VirtualKey.Shift: case VirtualKey.LeftShift: case VirtualKey.RightShift: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Shift)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Shift); } internalSettings.Shift = matchValue; break; case VirtualKey.Escape: internalSettings = new HotkeySettings(); shortcutDialog.IsPrimaryButtonEnabled = false; return; default: internalSettings.Code = matchValueCode; break; } } // Function to send a single key event to the system which would be ignored by the hotkey control. private void SendSingleKeyboardInput(short keyCode, uint keyStatus) { NativeKeyboardHelper.INPUT inputShift = new NativeKeyboardHelper.INPUT { type = NativeKeyboardHelper.INPUTTYPE.INPUT_KEYBOARD, data = new NativeKeyboardHelper.InputUnion { ki = new NativeKeyboardHelper.KEYBDINPUT { wVk = keyCode, dwFlags = keyStatus, // Any keyevent with the extraInfo set to this value will be ignored by the keyboard hook and sent to the system instead. dwExtraInfo = ignoreKeyEventFlag, }, }, }; NativeKeyboardHelper.INPUT[] inputs = new NativeKeyboardHelper.INPUT[] { inputShift }; _ = NativeMethods.SendInput(1, inputs, NativeKeyboardHelper.INPUT.Size); } private bool FilterAccessibleKeyboardEvents(int key, UIntPtr extraInfo) { // A keyboard event sent with this value in the extra Information field should be ignored by the hook so that it can be captured by the system instead. if (extraInfo == ignoreKeyEventFlag) { return false; } // If the current key press is tab, based on the other keys ignore the key press so as to shift focus out of the hotkey control. if ((VirtualKey)key == VirtualKey.Tab) { // Shift was not pressed while entering and Shift is not pressed while leaving the hotkey control, treat it as a normal tab key press. if (!internalSettings.Shift && !_modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { return false; } // Shift was not pressed while entering but it was pressed while leaving the hotkey, therefore simulate a shift key press as the system does not know about shift being pressed in the hotkey. else if (internalSettings.Shift && !_modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { // This is to reset the shift key press within the control as it was not used within the control but rather was used to leave the hotkey. internalSettings.Shift = false; SendSingleKeyboardInput((short)VirtualKey.Shift, (uint)NativeKeyboardHelper.KeyEventF.KeyDown); return false; } // Shift was pressed on entering and remained pressed, therefore only ignore the tab key so that it can be passed to the system. // As the shift key is already assumed to be pressed by the system while it entered the hotkey control, shift would still remain pressed, hence ignoring the tab input would simulate a Shift+Tab key press. else if (!internalSettings.Shift && _modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { return false; } } // Either the cancel or save button has keyboard focus. if (FocusManager.GetFocusedElement(LayoutRoot.XamlRoot).GetType() == typeof(Button)) { return false; } return true; } private void Hotkey_KeyDown(int key) { KeyEventHandler(key, true, key); c.Keys = internalSettings.GetKeysList(); if (internalSettings.GetKeysList().Count == 0) { // Empty, disable save button shortcutDialog.IsPrimaryButtonEnabled = false; } else if (internalSettings.GetKeysList().Count == 1) { // 1 key, disable save button shortcutDialog.IsPrimaryButtonEnabled = false; // Check if the one key is a hotkey if (internalSettings.Shift || internalSettings.Win || internalSettings.Alt || internalSettings.Ctrl) { c.IsError = false; } else { c.IsError = true; } } // Tab and Shift+Tab are accessible keys and should not be displayed in the hotkey control. if (internalSettings.Code > 0 && !internalSettings.IsAccessibleShortcut()) { lastValidSettings = internalSettings.Clone(); if (!ComboIsValid(lastValidSettings)) { DisableKeys(); } else { EnableKeys(); } } } private void EnableKeys() { shortcutDialog.IsPrimaryButtonEnabled = true; c.IsError = false; // WarningLabel.Style = (Style)App.Current.Resources["SecondaryTextStyle"]; } private void DisableKeys() { shortcutDialog.IsPrimaryButtonEnabled = false; c.IsError = true; // WarningLabel.Style = (Style)App.Current.Resources["SecondaryWarningTextStyle"]; } private void Hotkey_KeyUp(int key) { KeyEventHandler(key, false, 0); } private bool Hotkey_IsActive() { return _isActive; } private void ShortcutDialog_Opened(ContentDialog sender, ContentDialogOpenedEventArgs args) { if (!ComboIsValid(hotkeySettings)) { DisableKeys(); } else { EnableKeys(); } // Reset the status on entering the hotkey each time. _modifierKeysOnEntering.Clear(); // To keep track of the modifier keys, whether it was pressed on entering. if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Shift) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Shift); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Control) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Control); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Menu) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Menu); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.LeftWindows) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.LeftWindows); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.RightWindows) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.RightWindows); } _isActive = true; } private async void OpenDialogButton_Click(object sender, RoutedEventArgs e) { c.Keys = null; c.Keys = HotkeySettings.GetKeysList(); shortcutDialog.XamlRoot = this.XamlRoot; shortcutDialog.RequestedTheme = this.ActualTheme; await shortcutDialog.ShowAsync(); } private void ShortcutDialog_Reset(ContentDialog sender, ContentDialogButtonClickEventArgs args) { hotkeySettings = null; SetValue(HotkeySettingsProperty, hotkeySettings); PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); lastValidSettings = hotkeySettings; AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private void ShortcutDialog_PrimaryButtonClick(ContentDialog sender, ContentDialogButtonClickEventArgs args) { if (ComboIsValid(lastValidSettings)) { HotkeySettings = lastValidSettings.Clone(); } PreviewKeysControl.ItemsSource = hotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private void ShortcutDialog_Disable(object sender, RightTappedRoutedEventArgs e) { if (!AllowDisable) { return; } var empty = new HotkeySettings(); HotkeySettings = empty; PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private static bool ComboIsValid(HotkeySettings settings) { if (settings != null && (settings.IsValid() || settings.IsEmpty())) { return true; } else { return false; } } private void ShortcutDialog_SettingsWindow_Activated(object sender, WindowActivatedEventArgs args) { args.Handled = true; if (args.WindowActivationState != WindowActivationState.Deactivated && (hook == null || hook.GetDisposedState() == true)) { // If the PT settings window gets focussed/activated again, we enable the keyboard hook to catch the keyboard input. hook = new HotkeySettingsControlHook(Hotkey_KeyDown, Hotkey_KeyUp, Hotkey_IsActive, FilterAccessibleKeyboardEvents); } else if (args.WindowActivationState == WindowActivationState.Deactivated && hook != null && hook.GetDisposedState() == false) { // If the PT settings window lost focus/activation, we disable the keyboard hook to allow keyboard input on other windows. hook.Dispose(); hook = null; } } private void ShortcutDialog_Closing(ContentDialog sender, ContentDialogClosingEventArgs args) { _isActive = false; } private void Dispose(bool disposing) { if (!disposedValue) { if (disposing) { if (hook != null) { hook.Dispose(); } hook = null; } disposedValue = true; } } public void Dispose() { // Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method Dispose(disposing: true); GC.SuppressFinalize(this); } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using CommunityToolkit.WinUI; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.Library; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Automation; using Microsoft.UI.Xaml.Controls; using Microsoft.UI.Xaml.Input; using Windows.System; namespace Microsoft.PowerToys.Settings.UI.Controls { public sealed partial class ShortcutControl : UserControl, IDisposable { private readonly UIntPtr ignoreKeyEventFlag = (UIntPtr)0x5555; private System.Collections.Generic.HashSet<VirtualKey> _modifierKeysOnEntering = new System.Collections.Generic.HashSet<VirtualKey>(); private bool _enabled; private HotkeySettings hotkeySettings; private HotkeySettings internalSettings; private HotkeySettings lastValidSettings; private HotkeySettingsControlHook hook; private bool _isActive; private bool disposedValue; public string Header { get; set; } public string Keys { get; set; } public static readonly DependencyProperty IsActiveProperty = DependencyProperty.Register("Enabled", typeof(bool), typeof(ShortcutControl), null); public static readonly DependencyProperty HotkeySettingsProperty = DependencyProperty.Register("HotkeySettings", typeof(HotkeySettings), typeof(ShortcutControl), null); public static readonly DependencyProperty AllowDisableProperty = DependencyProperty.Register("AllowDisable", typeof(bool), typeof(ShortcutControl), new PropertyMetadata(false, OnAllowDisableChanged)); private static void OnAllowDisableChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { var me = d as ShortcutControl; if (me == null) { return; } var description = me.c?.FindDescendant<TextBlock>(); if (description == null) { return; } var resourceLoader = Helpers.ResourceLoaderInstance.ResourceLoader; var newValue = (bool)(e?.NewValue ?? false); var text = newValue ? resourceLoader.GetString("Activation_Shortcut_With_Disable_Description") : resourceLoader.GetString("Activation_Shortcut_Description"); description.Text = text; } private ShortcutDialogContentControl c = new ShortcutDialogContentControl(); private ContentDialog shortcutDialog; public bool AllowDisable { get => (bool)GetValue(AllowDisableProperty); set => SetValue(AllowDisableProperty, value); } public bool Enabled { get { return _enabled; } set { SetValue(IsActiveProperty, value); _enabled = value; if (value) { EditButton.IsEnabled = true; } else { EditButton.IsEnabled = false; } } } public HotkeySettings HotkeySettings { get { return hotkeySettings; } set { if (hotkeySettings != value) { hotkeySettings = value; SetValue(HotkeySettingsProperty, value); PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); c.Keys = HotkeySettings.GetKeysList(); } } } public ShortcutControl() { InitializeComponent(); internalSettings = new HotkeySettings(); this.Unloaded += ShortcutControl_Unloaded; hook = new HotkeySettingsControlHook(Hotkey_KeyDown, Hotkey_KeyUp, Hotkey_IsActive, FilterAccessibleKeyboardEvents); var resourceLoader = Helpers.ResourceLoaderInstance.ResourceLoader; if (App.GetSettingsWindow() != null) { App.GetSettingsWindow().Activated += ShortcutDialog_SettingsWindow_Activated; } // We create the Dialog in C# because doing it in XAML is giving WinUI/XAML Island bugs when using dark theme. shortcutDialog = new ContentDialog { XamlRoot = this.XamlRoot, Title = resourceLoader.GetString("Activation_Shortcut_Title"), Content = c, PrimaryButtonText = resourceLoader.GetString("Activation_Shortcut_Save"), SecondaryButtonText = resourceLoader.GetString("Activation_Shortcut_Reset"), CloseButtonText = resourceLoader.GetString("Activation_Shortcut_Cancel"), DefaultButton = ContentDialogButton.Primary, }; shortcutDialog.PrimaryButtonClick += ShortcutDialog_PrimaryButtonClick; shortcutDialog.SecondaryButtonClick += ShortcutDialog_Reset; shortcutDialog.RightTapped += ShortcutDialog_Disable; shortcutDialog.Opened += ShortcutDialog_Opened; shortcutDialog.Closing += ShortcutDialog_Closing; AutomationProperties.SetName(EditButton, resourceLoader.GetString("Activation_Shortcut_Title")); OnAllowDisableChanged(this, null); } private void ShortcutControl_Unloaded(object sender, RoutedEventArgs e) { shortcutDialog.PrimaryButtonClick -= ShortcutDialog_PrimaryButtonClick; shortcutDialog.Opened -= ShortcutDialog_Opened; shortcutDialog.Closing -= ShortcutDialog_Closing; if (App.GetSettingsWindow() != null) { App.GetSettingsWindow().Activated -= ShortcutDialog_SettingsWindow_Activated; } // Dispose the HotkeySettingsControlHook object to terminate the hook threads when the textbox is unloaded if (hook != null) { hook.Dispose(); } hook = null; } private void KeyEventHandler(int key, bool matchValue, int matchValueCode) { VirtualKey virtualKey = (VirtualKey)key; switch (virtualKey) { case VirtualKey.LeftWindows: case VirtualKey.RightWindows: if (!matchValue && _modifierKeysOnEntering.Contains(virtualKey)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(virtualKey); } internalSettings.Win = matchValue; break; case VirtualKey.Control: case VirtualKey.LeftControl: case VirtualKey.RightControl: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Control)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Control); } internalSettings.Ctrl = matchValue; break; case VirtualKey.Menu: case VirtualKey.LeftMenu: case VirtualKey.RightMenu: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Menu)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Menu); } internalSettings.Alt = matchValue; break; case VirtualKey.Shift: case VirtualKey.LeftShift: case VirtualKey.RightShift: if (!matchValue && _modifierKeysOnEntering.Contains(VirtualKey.Shift)) { SendSingleKeyboardInput((short)virtualKey, (uint)NativeKeyboardHelper.KeyEventF.KeyUp); _ = _modifierKeysOnEntering.Remove(VirtualKey.Shift); } internalSettings.Shift = matchValue; break; case VirtualKey.Escape: internalSettings = new HotkeySettings(); shortcutDialog.IsPrimaryButtonEnabled = false; return; default: internalSettings.Code = matchValueCode; break; } } // Function to send a single key event to the system which would be ignored by the hotkey control. private void SendSingleKeyboardInput(short keyCode, uint keyStatus) { NativeKeyboardHelper.INPUT inputShift = new NativeKeyboardHelper.INPUT { type = NativeKeyboardHelper.INPUTTYPE.INPUT_KEYBOARD, data = new NativeKeyboardHelper.InputUnion { ki = new NativeKeyboardHelper.KEYBDINPUT { wVk = keyCode, dwFlags = keyStatus, // Any keyevent with the extraInfo set to this value will be ignored by the keyboard hook and sent to the system instead. dwExtraInfo = ignoreKeyEventFlag, }, }, }; NativeKeyboardHelper.INPUT[] inputs = new NativeKeyboardHelper.INPUT[] { inputShift }; _ = NativeMethods.SendInput(1, inputs, NativeKeyboardHelper.INPUT.Size); } private bool FilterAccessibleKeyboardEvents(int key, UIntPtr extraInfo) { // A keyboard event sent with this value in the extra Information field should be ignored by the hook so that it can be captured by the system instead. if (extraInfo == ignoreKeyEventFlag) { return false; } // If the current key press is tab, based on the other keys ignore the key press so as to shift focus out of the hotkey control. if ((VirtualKey)key == VirtualKey.Tab) { // Shift was not pressed while entering and Shift is not pressed while leaving the hotkey control, treat it as a normal tab key press. if (!internalSettings.Shift && !_modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { return false; } // Shift was not pressed while entering but it was pressed while leaving the hotkey, therefore simulate a shift key press as the system does not know about shift being pressed in the hotkey. else if (internalSettings.Shift && !_modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { // This is to reset the shift key press within the control as it was not used within the control but rather was used to leave the hotkey. internalSettings.Shift = false; SendSingleKeyboardInput((short)VirtualKey.Shift, (uint)NativeKeyboardHelper.KeyEventF.KeyDown); return false; } // Shift was pressed on entering and remained pressed, therefore only ignore the tab key so that it can be passed to the system. // As the shift key is already assumed to be pressed by the system while it entered the hotkey control, shift would still remain pressed, hence ignoring the tab input would simulate a Shift+Tab key press. else if (!internalSettings.Shift && _modifierKeysOnEntering.Contains(VirtualKey.Shift) && !internalSettings.Win && !internalSettings.Alt && !internalSettings.Ctrl) { return false; } } // Either the cancel or save button has keyboard focus. if (FocusManager.GetFocusedElement(LayoutRoot.XamlRoot).GetType() == typeof(Button)) { return false; } return true; } private void Hotkey_KeyDown(int key) { KeyEventHandler(key, true, key); c.Keys = internalSettings.GetKeysList(); if (internalSettings.GetKeysList().Count == 0) { // Empty, disable save button shortcutDialog.IsPrimaryButtonEnabled = false; } else if (internalSettings.GetKeysList().Count == 1) { // 1 key, disable save button shortcutDialog.IsPrimaryButtonEnabled = false; // Check if the one key is a hotkey if (internalSettings.Shift || internalSettings.Win || internalSettings.Alt || internalSettings.Ctrl) { c.IsError = false; } else { c.IsError = true; } } // Tab and Shift+Tab are accessible keys and should not be displayed in the hotkey control. if (internalSettings.Code > 0 && !internalSettings.IsAccessibleShortcut()) { lastValidSettings = internalSettings.Clone(); if (!ComboIsValid(lastValidSettings)) { DisableKeys(); } else { EnableKeys(); } } c.IsWarningAltGr = internalSettings.Ctrl && internalSettings.Alt && !internalSettings.Win && (internalSettings.Code > 0); } private void EnableKeys() { shortcutDialog.IsPrimaryButtonEnabled = true; c.IsError = false; // WarningLabel.Style = (Style)App.Current.Resources["SecondaryTextStyle"]; } private void DisableKeys() { shortcutDialog.IsPrimaryButtonEnabled = false; c.IsError = true; // WarningLabel.Style = (Style)App.Current.Resources["SecondaryWarningTextStyle"]; } private void Hotkey_KeyUp(int key) { KeyEventHandler(key, false, 0); } private bool Hotkey_IsActive() { return _isActive; } private void ShortcutDialog_Opened(ContentDialog sender, ContentDialogOpenedEventArgs args) { if (!ComboIsValid(hotkeySettings)) { DisableKeys(); } else { EnableKeys(); } // Reset the status on entering the hotkey each time. _modifierKeysOnEntering.Clear(); // To keep track of the modifier keys, whether it was pressed on entering. if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Shift) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Shift); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Control) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Control); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.Menu) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.Menu); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.LeftWindows) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.LeftWindows); } if ((NativeMethods.GetAsyncKeyState((int)VirtualKey.RightWindows) & 0x8000) != 0) { _modifierKeysOnEntering.Add(VirtualKey.RightWindows); } _isActive = true; } private async void OpenDialogButton_Click(object sender, RoutedEventArgs e) { c.Keys = null; c.Keys = HotkeySettings.GetKeysList(); // 92 means the Win key. The logic is: warning should be visible if the shortcut contains Alt AND contains Ctrl AND NOT contains Win. // Additional key must be present, as this is a valid, previously used shortcut shown at dialog open. Check for presence of non-modifier-key is not necessary therefore c.IsWarningAltGr = c.Keys.Contains("Ctrl") && c.Keys.Contains("Alt") && !c.Keys.Contains(92); shortcutDialog.XamlRoot = this.XamlRoot; shortcutDialog.RequestedTheme = this.ActualTheme; await shortcutDialog.ShowAsync(); } private void ShortcutDialog_Reset(ContentDialog sender, ContentDialogButtonClickEventArgs args) { hotkeySettings = null; SetValue(HotkeySettingsProperty, hotkeySettings); PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); lastValidSettings = hotkeySettings; AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private void ShortcutDialog_PrimaryButtonClick(ContentDialog sender, ContentDialogButtonClickEventArgs args) { if (ComboIsValid(lastValidSettings)) { HotkeySettings = lastValidSettings.Clone(); } PreviewKeysControl.ItemsSource = hotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private void ShortcutDialog_Disable(object sender, RightTappedRoutedEventArgs e) { if (!AllowDisable) { return; } var empty = new HotkeySettings(); HotkeySettings = empty; PreviewKeysControl.ItemsSource = HotkeySettings.GetKeysList(); AutomationProperties.SetHelpText(EditButton, HotkeySettings.ToString()); shortcutDialog.Hide(); } private static bool ComboIsValid(HotkeySettings settings) { if (settings != null && (settings.IsValid() || settings.IsEmpty())) { return true; } else { return false; } } private void ShortcutDialog_SettingsWindow_Activated(object sender, WindowActivatedEventArgs args) { args.Handled = true; if (args.WindowActivationState != WindowActivationState.Deactivated && (hook == null || hook.GetDisposedState() == true)) { // If the PT settings window gets focussed/activated again, we enable the keyboard hook to catch the keyboard input. hook = new HotkeySettingsControlHook(Hotkey_KeyDown, Hotkey_KeyUp, Hotkey_IsActive, FilterAccessibleKeyboardEvents); } else if (args.WindowActivationState == WindowActivationState.Deactivated && hook != null && hook.GetDisposedState() == false) { // If the PT settings window lost focus/activation, we disable the keyboard hook to allow keyboard input on other windows. hook.Dispose(); hook = null; } } private void ShortcutDialog_Closing(ContentDialog sender, ContentDialogClosingEventArgs args) { _isActive = false; } private void Dispose(bool disposing) { if (!disposedValue) { if (disposing) { if (hook != null) { hook.Dispose(); } hook = null; } disposedValue = true; } } public void Dispose() { // Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method Dispose(disposing: true); GC.SuppressFinalize(this); } } }
donlaci
106f90dc015de906b4c83da76603e4f57ba00da4
bde9243d72003a70c256349d70ce263a8d1dad51
Needs a comment, in that case...
jaimecbernardo
215
microsoft/PowerToys
29,761
[Settings] Adding warning info box to Shortcut edit dialog
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Showing a warning info bar in case the user selects a shortcut containing Alt+Ctrl. The implemented logic: Warning is visible if the shortcut contains Alt AND contains Ctrl AND NOT contains Win AND contains an additional key, (Shift may be absent/present, warning is not shown while only the modifier keys are pressed). The info bar contains a longer description as a tooltip for more precise explanation. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #19062 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed tested locally
null
2023-11-09 12:16:26+00:00
2023-11-20 21:27:43+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Header" xml:space="preserve"> <value>Quite Ok Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Description" xml:space="preserve"> <value>.qoi</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Header" xml:space="preserve"> <value>Quite OK Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Description" xml:space="preserve"> <value>.qoi</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="SecondaryLink_Awake.Text" xml:space="preserve"> <value>Den Delimarsky's work on creating Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Resize images from right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Rename files and folders from right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_UseSnippingToolWarning.Title" xml:space="preserve"> <value>It is recommended to use the Snipping Tool instead of the TextExtractor module.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Danish.Content" xml:space="preserve"> <value>Danish</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Finnish.Content" xml:space="preserve"> <value>Finnish</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovak.Content" xml:space="preserve"> <value>Slovak</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="EnvironmentVariables.ModuleDescription" xml:space="preserve"> <value>A quick utility for managing environment variables.</value> </data> <data name="EnvironmentVariables.ModuleTitle" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="Shell_EnvironmentVariables.Content" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Environment Variables</value> </data> <data name="EnvironmentVariables_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your environment variables</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="EnvironmentVariables_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="Launch_EnvironmentVariables.Content" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="LearnMore_EnvironmentVariables.Text" xml:space="preserve"> <value>Learn more about Environment Variables</value> </data> <data name="Oobe_EnvironmentVariables.Description" xml:space="preserve"> <value>Environment Variables is a quick utility for managing environment variables.</value> </data> <data name="Oobe_EnvironmentVariables.Title" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the system environment variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> <data name="Peek_Preview_GroupSettings.Header" xml:space="preserve"> <value>Preview</value> </data> <data name="Peek_SourceCode_Header.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> </data> <data name="Peek_SourceCode_Header.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> </data> <data name="Peek_SourceCode_TryFormat.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="Peek_SourceCode_TryFormat.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Peek_SourceCode_WrapText.Content" xml:space="preserve"> <value>Wrap text</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Header" xml:space="preserve"> <value>Quite Ok Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Description" xml:space="preserve"> <value>.qoi</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Header" xml:space="preserve"> <value>Quite OK Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Description" xml:space="preserve"> <value>.qoi</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="SecondaryLink_Awake.Text" xml:space="preserve"> <value>Den Delimarsky's work on creating Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="WarningShortcutAltGr.Title" xml:space="preserve"> <value>Possible shortcut interference with Alt Gr</value> <comment>Alt Gr refers to the right alt key on some international keyboards</comment> </data> <data name="WarningShortcutAltGr.ToolTipService.ToolTip" xml:space="preserve"> <value>Shortcuts with **Ctrl** and **Alt** may remove functionality from some international keyboards, because **Ctrl** + **Alt** = **Alt Gr** in those keyboards.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Resize images from right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Rename files and folders from right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_UseSnippingToolWarning.Title" xml:space="preserve"> <value>It is recommended to use the Snipping Tool instead of the TextExtractor module.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Danish.Content" xml:space="preserve"> <value>Danish</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Finnish.Content" xml:space="preserve"> <value>Finnish</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovak.Content" xml:space="preserve"> <value>Slovak</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="EnvironmentVariables.ModuleDescription" xml:space="preserve"> <value>A quick utility for managing environment variables.</value> </data> <data name="EnvironmentVariables.ModuleTitle" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="Shell_EnvironmentVariables.Content" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Environment Variables</value> </data> <data name="EnvironmentVariables_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your environment variables</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="EnvironmentVariables_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="Launch_EnvironmentVariables.Content" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="LearnMore_EnvironmentVariables.Text" xml:space="preserve"> <value>Learn more about Environment Variables</value> </data> <data name="Oobe_EnvironmentVariables.Description" xml:space="preserve"> <value>Environment Variables is a quick utility for managing environment variables.</value> </data> <data name="Oobe_EnvironmentVariables.Title" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the system environment variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> <data name="Peek_Preview_GroupSettings.Header" xml:space="preserve"> <value>Preview</value> </data> <data name="Peek_SourceCode_Header.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> </data> <data name="Peek_SourceCode_Header.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> </data> <data name="Peek_SourceCode_TryFormat.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="Peek_SourceCode_TryFormat.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Peek_SourceCode_WrapText.Content" xml:space="preserve"> <value>Wrap text</value> </data> </root>
donlaci
106f90dc015de906b4c83da76603e4f57ba00da4
bde9243d72003a70c256349d70ce263a8d1dad51
```suggestion <value>Possible shortcut interference with Alt Gr</value> <comment>Alt Gr refers to the right alt key on some international keyboards</comment> ```
jaimecbernardo
216
microsoft/PowerToys
29,751
[Awake] localization
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding resource file. Replacing hard coded strings by localized strings. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #11456 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-11-08 19:19:23+00:00
2023-11-20 18:40:54+00:00
src/modules/awake/Awake/Core/Manager.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.IO; using System.Reactive.Linq; using System.Text; using System.Threading; using Awake.Core.Models; using Awake.Core.Native; using ManagedCommon; using Microsoft.PowerToys.Telemetry; using Microsoft.Win32; namespace Awake.Core { public delegate bool ConsoleEventHandler(Models.ControlType ctrlType); /// <summary> /// Helper class that allows talking to Win32 APIs without having to rely on PInvoke in other parts /// of the codebase. /// </summary> public class Manager { private static BlockingCollection<ExecutionState> _stateQueue; private static CancellationTokenSource _tokenSource; static Manager() { _tokenSource = new CancellationTokenSource(); _stateQueue = new BlockingCollection<ExecutionState>(); } public static void StartMonitor() { Thread monitorThread = new(() => { Thread.CurrentThread.IsBackground = true; while (true) { ExecutionState state = _stateQueue.Take(); Logger.LogInfo($"Setting state to {state}"); SetAwakeState(state); } }); monitorThread.Start(); } internal static void SetConsoleControlHandler(ConsoleEventHandler handler, bool addHandler) { Bridge.SetConsoleCtrlHandler(handler, addHandler); } public static void AllocateConsole() { Bridge.AllocConsole(); var outputFilePointer = Bridge.CreateFile("CONOUT$", Native.Constants.GENERIC_READ | Native.Constants.GENERIC_WRITE, FileShare.Write, IntPtr.Zero, FileMode.OpenOrCreate, 0, IntPtr.Zero); Bridge.SetStdHandle(Native.Constants.STD_OUTPUT_HANDLE, outputFilePointer); Console.SetOut(new StreamWriter(Console.OpenStandardOutput(), Console.OutputEncoding) { AutoFlush = true }); } /// <summary> /// Sets the computer awake state using the native Win32 SetThreadExecutionState API. This /// function is just a nice-to-have wrapper that helps avoid tracking the success or failure of /// the call. /// </summary> /// <param name="state">Single or multiple EXECUTION_STATE entries.</param> /// <returns>true if successful, false if failed</returns> private static bool SetAwakeState(ExecutionState state) { try { var stateResult = Bridge.SetThreadExecutionState(state); return stateResult != 0; } catch { return false; } } private static ExecutionState ComputeAwakeState(bool keepDisplayOn) { if (keepDisplayOn) { return ExecutionState.ES_SYSTEM_REQUIRED | ExecutionState.ES_DISPLAY_REQUIRED | ExecutionState.ES_CONTINUOUS; } else { return ExecutionState.ES_SYSTEM_REQUIRED | ExecutionState.ES_CONTINUOUS; } } public static void CancelExistingThread() { Logger.LogInfo($"Attempting to ensure that the thread is properly cleaned up..."); // Resetting the thread state. _stateQueue.Add(ExecutionState.ES_CONTINUOUS); // Next, make sure that any existing background threads are terminated. _tokenSource.Cancel(); _tokenSource.Dispose(); _tokenSource = new CancellationTokenSource(); Logger.LogInfo("Instantiating of new token source and thread token completed."); } public static void SetIndefiniteKeepAwake(bool keepDisplayOn = false) { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeIndefinitelyKeepAwakeEvent()); CancelExistingThread(); _stateQueue.Add(ComputeAwakeState(keepDisplayOn)); } public static void SetNoKeepAwake() { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeNoKeepAwakeEvent()); CancelExistingThread(); } public static void SetExpirableKeepAwake(DateTimeOffset expireAt, bool keepDisplayOn = true) { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeExpirableKeepAwakeEvent()); CancelExistingThread(); if (expireAt > DateTime.Now && expireAt != null) { Logger.LogInfo($"Starting expirable log for {expireAt}"); _stateQueue.Add(ComputeAwakeState(keepDisplayOn)); Observable.Timer(expireAt).Subscribe( _ => { Logger.LogInfo($"Completed expirable keep-awake."); CancelExistingThread(); }, _tokenSource.Token); } else { // The target date is not in the future. Logger.LogError("The specified target date and time is not in the future."); Logger.LogError($"Current time: {DateTime.Now}\tTarget time: {expireAt}"); } } public static void SetTimedKeepAwake(uint seconds, bool keepDisplayOn = true) { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeTimedKeepAwakeEvent()); CancelExistingThread(); Logger.LogInfo($"Timed keep awake started for {seconds} seconds."); _stateQueue.Add(ComputeAwakeState(keepDisplayOn)); Observable.Timer(TimeSpan.FromSeconds(seconds)).Subscribe( _ => { Logger.LogInfo($"Completed timed thread."); CancelExistingThread(); }, _tokenSource.Token); } internal static void CompleteExit(int exitCode, ManualResetEvent? exitSignal, bool force = false) { SetNoKeepAwake(); IntPtr windowHandle = GetHiddenWindow(); if (windowHandle != IntPtr.Zero) { Bridge.SendMessage(windowHandle, Native.Constants.WM_CLOSE, 0, 0); } if (force) { Bridge.PostQuitMessage(exitCode); } try { exitSignal?.Set(); Bridge.DestroyWindow(windowHandle); } catch (Exception ex) { Logger.LogError($"Exit signal error ${ex}"); } } public static string GetOperatingSystemBuild() { try { RegistryKey? registryKey = Registry.LocalMachine.OpenSubKey(Constants.BuildRegistryLocation); if (registryKey != null) { var versionString = $"{registryKey.GetValue("ProductName")} {registryKey.GetValue("DisplayVersion")} {registryKey.GetValue("BuildLabEx")}"; return versionString; } else { Logger.LogError("Registry key acquisition for OS failed."); return string.Empty; } } catch (Exception ex) { Logger.LogError($"Could not get registry key for the build number. Error: {ex.Message}"); return string.Empty; } } [SuppressMessage("Performance", "CA1806:Do not ignore method results", Justification = "Function returns DWORD value that identifies the current thread, but we do not need it.")] internal static IEnumerable<IntPtr> EnumerateWindowsForProcess(int processId) { var handles = new List<IntPtr>(); var hCurrentWnd = IntPtr.Zero; do { hCurrentWnd = Bridge.FindWindowEx(IntPtr.Zero, hCurrentWnd, null as string, null); Bridge.GetWindowThreadProcessId(hCurrentWnd, out uint targetProcessId); if (targetProcessId == processId) { handles.Add(hCurrentWnd); } } while (hCurrentWnd != IntPtr.Zero); return handles; } [SuppressMessage("Globalization", "CA1305:Specify IFormatProvider", Justification = "In this context, the string is only converted to a hex value.")] internal static IntPtr GetHiddenWindow() { IEnumerable<IntPtr> windowHandles = EnumerateWindowsForProcess(Environment.ProcessId); var domain = AppDomain.CurrentDomain.GetHashCode().ToString("x"); string targetClass = $"{Constants.TrayWindowId}{domain}"; foreach (var handle in windowHandles) { StringBuilder className = new(256); int classQueryResult = Bridge.GetClassName(handle, className, className.Capacity); if (classQueryResult != 0 && className.ToString().StartsWith(targetClass, StringComparison.InvariantCultureIgnoreCase)) { return handle; } } return IntPtr.Zero; } public static Dictionary<string, int> GetDefaultTrayOptions() { Dictionary<string, int> optionsList = new Dictionary<string, int> { { "30 minutes", 1800 }, { "1 hour", 3600 }, { "2 hours", 7200 }, }; return optionsList; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.IO; using System.Reactive.Linq; using System.Text; using System.Threading; using Awake.Core.Models; using Awake.Core.Native; using Awake.Properties; using ManagedCommon; using Microsoft.PowerToys.Telemetry; using Microsoft.Win32; namespace Awake.Core { public delegate bool ConsoleEventHandler(Models.ControlType ctrlType); /// <summary> /// Helper class that allows talking to Win32 APIs without having to rely on PInvoke in other parts /// of the codebase. /// </summary> public class Manager { private static BlockingCollection<ExecutionState> _stateQueue; private static CancellationTokenSource _tokenSource; static Manager() { _tokenSource = new CancellationTokenSource(); _stateQueue = new BlockingCollection<ExecutionState>(); } public static void StartMonitor() { Thread monitorThread = new(() => { Thread.CurrentThread.IsBackground = true; while (true) { ExecutionState state = _stateQueue.Take(); Logger.LogInfo($"Setting state to {state}"); SetAwakeState(state); } }); monitorThread.Start(); } internal static void SetConsoleControlHandler(ConsoleEventHandler handler, bool addHandler) { Bridge.SetConsoleCtrlHandler(handler, addHandler); } public static void AllocateConsole() { Bridge.AllocConsole(); var outputFilePointer = Bridge.CreateFile("CONOUT$", Native.Constants.GENERIC_READ | Native.Constants.GENERIC_WRITE, FileShare.Write, IntPtr.Zero, FileMode.OpenOrCreate, 0, IntPtr.Zero); Bridge.SetStdHandle(Native.Constants.STD_OUTPUT_HANDLE, outputFilePointer); Console.SetOut(new StreamWriter(Console.OpenStandardOutput(), Console.OutputEncoding) { AutoFlush = true }); } /// <summary> /// Sets the computer awake state using the native Win32 SetThreadExecutionState API. This /// function is just a nice-to-have wrapper that helps avoid tracking the success or failure of /// the call. /// </summary> /// <param name="state">Single or multiple EXECUTION_STATE entries.</param> /// <returns>true if successful, false if failed</returns> private static bool SetAwakeState(ExecutionState state) { try { var stateResult = Bridge.SetThreadExecutionState(state); return stateResult != 0; } catch { return false; } } private static ExecutionState ComputeAwakeState(bool keepDisplayOn) { if (keepDisplayOn) { return ExecutionState.ES_SYSTEM_REQUIRED | ExecutionState.ES_DISPLAY_REQUIRED | ExecutionState.ES_CONTINUOUS; } else { return ExecutionState.ES_SYSTEM_REQUIRED | ExecutionState.ES_CONTINUOUS; } } public static void CancelExistingThread() { Logger.LogInfo($"Attempting to ensure that the thread is properly cleaned up..."); // Resetting the thread state. _stateQueue.Add(ExecutionState.ES_CONTINUOUS); // Next, make sure that any existing background threads are terminated. _tokenSource.Cancel(); _tokenSource.Dispose(); _tokenSource = new CancellationTokenSource(); Logger.LogInfo("Instantiating of new token source and thread token completed."); } public static void SetIndefiniteKeepAwake(bool keepDisplayOn = false) { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeIndefinitelyKeepAwakeEvent()); CancelExistingThread(); _stateQueue.Add(ComputeAwakeState(keepDisplayOn)); } public static void SetNoKeepAwake() { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeNoKeepAwakeEvent()); CancelExistingThread(); } public static void SetExpirableKeepAwake(DateTimeOffset expireAt, bool keepDisplayOn = true) { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeExpirableKeepAwakeEvent()); CancelExistingThread(); if (expireAt > DateTime.Now && expireAt != null) { Logger.LogInfo($"Starting expirable log for {expireAt}"); _stateQueue.Add(ComputeAwakeState(keepDisplayOn)); Observable.Timer(expireAt).Subscribe( _ => { Logger.LogInfo($"Completed expirable keep-awake."); CancelExistingThread(); }, _tokenSource.Token); } else { // The target date is not in the future. Logger.LogError("The specified target date and time is not in the future."); Logger.LogError($"Current time: {DateTime.Now}\tTarget time: {expireAt}"); } } public static void SetTimedKeepAwake(uint seconds, bool keepDisplayOn = true) { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeTimedKeepAwakeEvent()); CancelExistingThread(); Logger.LogInfo($"Timed keep awake started for {seconds} seconds."); _stateQueue.Add(ComputeAwakeState(keepDisplayOn)); Observable.Timer(TimeSpan.FromSeconds(seconds)).Subscribe( _ => { Logger.LogInfo($"Completed timed thread."); CancelExistingThread(); }, _tokenSource.Token); } internal static void CompleteExit(int exitCode, ManualResetEvent? exitSignal, bool force = false) { SetNoKeepAwake(); IntPtr windowHandle = GetHiddenWindow(); if (windowHandle != IntPtr.Zero) { Bridge.SendMessage(windowHandle, Native.Constants.WM_CLOSE, 0, 0); } if (force) { Bridge.PostQuitMessage(exitCode); } try { exitSignal?.Set(); Bridge.DestroyWindow(windowHandle); } catch (Exception ex) { Logger.LogError($"Exit signal error ${ex}"); } } public static string GetOperatingSystemBuild() { try { RegistryKey? registryKey = Registry.LocalMachine.OpenSubKey(Constants.BuildRegistryLocation); if (registryKey != null) { var versionString = $"{registryKey.GetValue("ProductName")} {registryKey.GetValue("DisplayVersion")} {registryKey.GetValue("BuildLabEx")}"; return versionString; } else { Logger.LogError("Registry key acquisition for OS failed."); return string.Empty; } } catch (Exception ex) { Logger.LogError($"Could not get registry key for the build number. Error: {ex.Message}"); return string.Empty; } } [SuppressMessage("Performance", "CA1806:Do not ignore method results", Justification = "Function returns DWORD value that identifies the current thread, but we do not need it.")] internal static IEnumerable<IntPtr> EnumerateWindowsForProcess(int processId) { var handles = new List<IntPtr>(); var hCurrentWnd = IntPtr.Zero; do { hCurrentWnd = Bridge.FindWindowEx(IntPtr.Zero, hCurrentWnd, null as string, null); Bridge.GetWindowThreadProcessId(hCurrentWnd, out uint targetProcessId); if (targetProcessId == processId) { handles.Add(hCurrentWnd); } } while (hCurrentWnd != IntPtr.Zero); return handles; } [SuppressMessage("Globalization", "CA1305:Specify IFormatProvider", Justification = "In this context, the string is only converted to a hex value.")] internal static IntPtr GetHiddenWindow() { IEnumerable<IntPtr> windowHandles = EnumerateWindowsForProcess(Environment.ProcessId); var domain = AppDomain.CurrentDomain.GetHashCode().ToString("x"); string targetClass = $"{Constants.TrayWindowId}{domain}"; foreach (var handle in windowHandles) { StringBuilder className = new(256); int classQueryResult = Bridge.GetClassName(handle, className, className.Capacity); if (classQueryResult != 0 && className.ToString().StartsWith(targetClass, StringComparison.InvariantCultureIgnoreCase)) { return handle; } } return IntPtr.Zero; } public static Dictionary<string, int> GetDefaultTrayOptions() { Dictionary<string, int> optionsList = new Dictionary<string, int> { { string.Format(CultureInfo.InvariantCulture, Resources.AWAKE_MINUTES, 30), 1800 }, { Resources.AWAKE_1_HOUR, 3600 }, { string.Format(CultureInfo.InvariantCulture, Resources.AWAKE_HOURS, 2), 7200 }, }; return optionsList; } } }
donlaci
42564e6c10aeb1167f4092e9326721c15ef61f40
106f90dc015de906b4c83da76603e4f57ba00da4
Why can’t the strings be fully localized. What if a language has minute number style formatting?
crutkas
217
microsoft/PowerToys
29,751
[Awake] localization
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding resource file. Replacing hard coded strings by localized strings. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #11456 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-11-08 19:19:23+00:00
2023-11-20 18:40:54+00:00
src/modules/awake/Awake/Core/Manager.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.IO; using System.Reactive.Linq; using System.Text; using System.Threading; using Awake.Core.Models; using Awake.Core.Native; using ManagedCommon; using Microsoft.PowerToys.Telemetry; using Microsoft.Win32; namespace Awake.Core { public delegate bool ConsoleEventHandler(Models.ControlType ctrlType); /// <summary> /// Helper class that allows talking to Win32 APIs without having to rely on PInvoke in other parts /// of the codebase. /// </summary> public class Manager { private static BlockingCollection<ExecutionState> _stateQueue; private static CancellationTokenSource _tokenSource; static Manager() { _tokenSource = new CancellationTokenSource(); _stateQueue = new BlockingCollection<ExecutionState>(); } public static void StartMonitor() { Thread monitorThread = new(() => { Thread.CurrentThread.IsBackground = true; while (true) { ExecutionState state = _stateQueue.Take(); Logger.LogInfo($"Setting state to {state}"); SetAwakeState(state); } }); monitorThread.Start(); } internal static void SetConsoleControlHandler(ConsoleEventHandler handler, bool addHandler) { Bridge.SetConsoleCtrlHandler(handler, addHandler); } public static void AllocateConsole() { Bridge.AllocConsole(); var outputFilePointer = Bridge.CreateFile("CONOUT$", Native.Constants.GENERIC_READ | Native.Constants.GENERIC_WRITE, FileShare.Write, IntPtr.Zero, FileMode.OpenOrCreate, 0, IntPtr.Zero); Bridge.SetStdHandle(Native.Constants.STD_OUTPUT_HANDLE, outputFilePointer); Console.SetOut(new StreamWriter(Console.OpenStandardOutput(), Console.OutputEncoding) { AutoFlush = true }); } /// <summary> /// Sets the computer awake state using the native Win32 SetThreadExecutionState API. This /// function is just a nice-to-have wrapper that helps avoid tracking the success or failure of /// the call. /// </summary> /// <param name="state">Single or multiple EXECUTION_STATE entries.</param> /// <returns>true if successful, false if failed</returns> private static bool SetAwakeState(ExecutionState state) { try { var stateResult = Bridge.SetThreadExecutionState(state); return stateResult != 0; } catch { return false; } } private static ExecutionState ComputeAwakeState(bool keepDisplayOn) { if (keepDisplayOn) { return ExecutionState.ES_SYSTEM_REQUIRED | ExecutionState.ES_DISPLAY_REQUIRED | ExecutionState.ES_CONTINUOUS; } else { return ExecutionState.ES_SYSTEM_REQUIRED | ExecutionState.ES_CONTINUOUS; } } public static void CancelExistingThread() { Logger.LogInfo($"Attempting to ensure that the thread is properly cleaned up..."); // Resetting the thread state. _stateQueue.Add(ExecutionState.ES_CONTINUOUS); // Next, make sure that any existing background threads are terminated. _tokenSource.Cancel(); _tokenSource.Dispose(); _tokenSource = new CancellationTokenSource(); Logger.LogInfo("Instantiating of new token source and thread token completed."); } public static void SetIndefiniteKeepAwake(bool keepDisplayOn = false) { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeIndefinitelyKeepAwakeEvent()); CancelExistingThread(); _stateQueue.Add(ComputeAwakeState(keepDisplayOn)); } public static void SetNoKeepAwake() { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeNoKeepAwakeEvent()); CancelExistingThread(); } public static void SetExpirableKeepAwake(DateTimeOffset expireAt, bool keepDisplayOn = true) { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeExpirableKeepAwakeEvent()); CancelExistingThread(); if (expireAt > DateTime.Now && expireAt != null) { Logger.LogInfo($"Starting expirable log for {expireAt}"); _stateQueue.Add(ComputeAwakeState(keepDisplayOn)); Observable.Timer(expireAt).Subscribe( _ => { Logger.LogInfo($"Completed expirable keep-awake."); CancelExistingThread(); }, _tokenSource.Token); } else { // The target date is not in the future. Logger.LogError("The specified target date and time is not in the future."); Logger.LogError($"Current time: {DateTime.Now}\tTarget time: {expireAt}"); } } public static void SetTimedKeepAwake(uint seconds, bool keepDisplayOn = true) { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeTimedKeepAwakeEvent()); CancelExistingThread(); Logger.LogInfo($"Timed keep awake started for {seconds} seconds."); _stateQueue.Add(ComputeAwakeState(keepDisplayOn)); Observable.Timer(TimeSpan.FromSeconds(seconds)).Subscribe( _ => { Logger.LogInfo($"Completed timed thread."); CancelExistingThread(); }, _tokenSource.Token); } internal static void CompleteExit(int exitCode, ManualResetEvent? exitSignal, bool force = false) { SetNoKeepAwake(); IntPtr windowHandle = GetHiddenWindow(); if (windowHandle != IntPtr.Zero) { Bridge.SendMessage(windowHandle, Native.Constants.WM_CLOSE, 0, 0); } if (force) { Bridge.PostQuitMessage(exitCode); } try { exitSignal?.Set(); Bridge.DestroyWindow(windowHandle); } catch (Exception ex) { Logger.LogError($"Exit signal error ${ex}"); } } public static string GetOperatingSystemBuild() { try { RegistryKey? registryKey = Registry.LocalMachine.OpenSubKey(Constants.BuildRegistryLocation); if (registryKey != null) { var versionString = $"{registryKey.GetValue("ProductName")} {registryKey.GetValue("DisplayVersion")} {registryKey.GetValue("BuildLabEx")}"; return versionString; } else { Logger.LogError("Registry key acquisition for OS failed."); return string.Empty; } } catch (Exception ex) { Logger.LogError($"Could not get registry key for the build number. Error: {ex.Message}"); return string.Empty; } } [SuppressMessage("Performance", "CA1806:Do not ignore method results", Justification = "Function returns DWORD value that identifies the current thread, but we do not need it.")] internal static IEnumerable<IntPtr> EnumerateWindowsForProcess(int processId) { var handles = new List<IntPtr>(); var hCurrentWnd = IntPtr.Zero; do { hCurrentWnd = Bridge.FindWindowEx(IntPtr.Zero, hCurrentWnd, null as string, null); Bridge.GetWindowThreadProcessId(hCurrentWnd, out uint targetProcessId); if (targetProcessId == processId) { handles.Add(hCurrentWnd); } } while (hCurrentWnd != IntPtr.Zero); return handles; } [SuppressMessage("Globalization", "CA1305:Specify IFormatProvider", Justification = "In this context, the string is only converted to a hex value.")] internal static IntPtr GetHiddenWindow() { IEnumerable<IntPtr> windowHandles = EnumerateWindowsForProcess(Environment.ProcessId); var domain = AppDomain.CurrentDomain.GetHashCode().ToString("x"); string targetClass = $"{Constants.TrayWindowId}{domain}"; foreach (var handle in windowHandles) { StringBuilder className = new(256); int classQueryResult = Bridge.GetClassName(handle, className, className.Capacity); if (classQueryResult != 0 && className.ToString().StartsWith(targetClass, StringComparison.InvariantCultureIgnoreCase)) { return handle; } } return IntPtr.Zero; } public static Dictionary<string, int> GetDefaultTrayOptions() { Dictionary<string, int> optionsList = new Dictionary<string, int> { { "30 minutes", 1800 }, { "1 hour", 3600 }, { "2 hours", 7200 }, }; return optionsList; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.IO; using System.Reactive.Linq; using System.Text; using System.Threading; using Awake.Core.Models; using Awake.Core.Native; using Awake.Properties; using ManagedCommon; using Microsoft.PowerToys.Telemetry; using Microsoft.Win32; namespace Awake.Core { public delegate bool ConsoleEventHandler(Models.ControlType ctrlType); /// <summary> /// Helper class that allows talking to Win32 APIs without having to rely on PInvoke in other parts /// of the codebase. /// </summary> public class Manager { private static BlockingCollection<ExecutionState> _stateQueue; private static CancellationTokenSource _tokenSource; static Manager() { _tokenSource = new CancellationTokenSource(); _stateQueue = new BlockingCollection<ExecutionState>(); } public static void StartMonitor() { Thread monitorThread = new(() => { Thread.CurrentThread.IsBackground = true; while (true) { ExecutionState state = _stateQueue.Take(); Logger.LogInfo($"Setting state to {state}"); SetAwakeState(state); } }); monitorThread.Start(); } internal static void SetConsoleControlHandler(ConsoleEventHandler handler, bool addHandler) { Bridge.SetConsoleCtrlHandler(handler, addHandler); } public static void AllocateConsole() { Bridge.AllocConsole(); var outputFilePointer = Bridge.CreateFile("CONOUT$", Native.Constants.GENERIC_READ | Native.Constants.GENERIC_WRITE, FileShare.Write, IntPtr.Zero, FileMode.OpenOrCreate, 0, IntPtr.Zero); Bridge.SetStdHandle(Native.Constants.STD_OUTPUT_HANDLE, outputFilePointer); Console.SetOut(new StreamWriter(Console.OpenStandardOutput(), Console.OutputEncoding) { AutoFlush = true }); } /// <summary> /// Sets the computer awake state using the native Win32 SetThreadExecutionState API. This /// function is just a nice-to-have wrapper that helps avoid tracking the success or failure of /// the call. /// </summary> /// <param name="state">Single or multiple EXECUTION_STATE entries.</param> /// <returns>true if successful, false if failed</returns> private static bool SetAwakeState(ExecutionState state) { try { var stateResult = Bridge.SetThreadExecutionState(state); return stateResult != 0; } catch { return false; } } private static ExecutionState ComputeAwakeState(bool keepDisplayOn) { if (keepDisplayOn) { return ExecutionState.ES_SYSTEM_REQUIRED | ExecutionState.ES_DISPLAY_REQUIRED | ExecutionState.ES_CONTINUOUS; } else { return ExecutionState.ES_SYSTEM_REQUIRED | ExecutionState.ES_CONTINUOUS; } } public static void CancelExistingThread() { Logger.LogInfo($"Attempting to ensure that the thread is properly cleaned up..."); // Resetting the thread state. _stateQueue.Add(ExecutionState.ES_CONTINUOUS); // Next, make sure that any existing background threads are terminated. _tokenSource.Cancel(); _tokenSource.Dispose(); _tokenSource = new CancellationTokenSource(); Logger.LogInfo("Instantiating of new token source and thread token completed."); } public static void SetIndefiniteKeepAwake(bool keepDisplayOn = false) { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeIndefinitelyKeepAwakeEvent()); CancelExistingThread(); _stateQueue.Add(ComputeAwakeState(keepDisplayOn)); } public static void SetNoKeepAwake() { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeNoKeepAwakeEvent()); CancelExistingThread(); } public static void SetExpirableKeepAwake(DateTimeOffset expireAt, bool keepDisplayOn = true) { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeExpirableKeepAwakeEvent()); CancelExistingThread(); if (expireAt > DateTime.Now && expireAt != null) { Logger.LogInfo($"Starting expirable log for {expireAt}"); _stateQueue.Add(ComputeAwakeState(keepDisplayOn)); Observable.Timer(expireAt).Subscribe( _ => { Logger.LogInfo($"Completed expirable keep-awake."); CancelExistingThread(); }, _tokenSource.Token); } else { // The target date is not in the future. Logger.LogError("The specified target date and time is not in the future."); Logger.LogError($"Current time: {DateTime.Now}\tTarget time: {expireAt}"); } } public static void SetTimedKeepAwake(uint seconds, bool keepDisplayOn = true) { PowerToysTelemetry.Log.WriteEvent(new Telemetry.AwakeTimedKeepAwakeEvent()); CancelExistingThread(); Logger.LogInfo($"Timed keep awake started for {seconds} seconds."); _stateQueue.Add(ComputeAwakeState(keepDisplayOn)); Observable.Timer(TimeSpan.FromSeconds(seconds)).Subscribe( _ => { Logger.LogInfo($"Completed timed thread."); CancelExistingThread(); }, _tokenSource.Token); } internal static void CompleteExit(int exitCode, ManualResetEvent? exitSignal, bool force = false) { SetNoKeepAwake(); IntPtr windowHandle = GetHiddenWindow(); if (windowHandle != IntPtr.Zero) { Bridge.SendMessage(windowHandle, Native.Constants.WM_CLOSE, 0, 0); } if (force) { Bridge.PostQuitMessage(exitCode); } try { exitSignal?.Set(); Bridge.DestroyWindow(windowHandle); } catch (Exception ex) { Logger.LogError($"Exit signal error ${ex}"); } } public static string GetOperatingSystemBuild() { try { RegistryKey? registryKey = Registry.LocalMachine.OpenSubKey(Constants.BuildRegistryLocation); if (registryKey != null) { var versionString = $"{registryKey.GetValue("ProductName")} {registryKey.GetValue("DisplayVersion")} {registryKey.GetValue("BuildLabEx")}"; return versionString; } else { Logger.LogError("Registry key acquisition for OS failed."); return string.Empty; } } catch (Exception ex) { Logger.LogError($"Could not get registry key for the build number. Error: {ex.Message}"); return string.Empty; } } [SuppressMessage("Performance", "CA1806:Do not ignore method results", Justification = "Function returns DWORD value that identifies the current thread, but we do not need it.")] internal static IEnumerable<IntPtr> EnumerateWindowsForProcess(int processId) { var handles = new List<IntPtr>(); var hCurrentWnd = IntPtr.Zero; do { hCurrentWnd = Bridge.FindWindowEx(IntPtr.Zero, hCurrentWnd, null as string, null); Bridge.GetWindowThreadProcessId(hCurrentWnd, out uint targetProcessId); if (targetProcessId == processId) { handles.Add(hCurrentWnd); } } while (hCurrentWnd != IntPtr.Zero); return handles; } [SuppressMessage("Globalization", "CA1305:Specify IFormatProvider", Justification = "In this context, the string is only converted to a hex value.")] internal static IntPtr GetHiddenWindow() { IEnumerable<IntPtr> windowHandles = EnumerateWindowsForProcess(Environment.ProcessId); var domain = AppDomain.CurrentDomain.GetHashCode().ToString("x"); string targetClass = $"{Constants.TrayWindowId}{domain}"; foreach (var handle in windowHandles) { StringBuilder className = new(256); int classQueryResult = Bridge.GetClassName(handle, className, className.Capacity); if (classQueryResult != 0 && className.ToString().StartsWith(targetClass, StringComparison.InvariantCultureIgnoreCase)) { return handle; } } return IntPtr.Zero; } public static Dictionary<string, int> GetDefaultTrayOptions() { Dictionary<string, int> optionsList = new Dictionary<string, int> { { string.Format(CultureInfo.InvariantCulture, Resources.AWAKE_MINUTES, 30), 1800 }, { Resources.AWAKE_1_HOUR, 3600 }, { string.Format(CultureInfo.InvariantCulture, Resources.AWAKE_HOURS, 2), 7200 }, }; return optionsList; } } }
donlaci
42564e6c10aeb1167f4092e9326721c15ef61f40
106f90dc015de906b4c83da76603e4f57ba00da4
The strings could be fully localized. The reason why I choose this implementation is that the same menu may contain user defined intervals (like '3 hours 11 minutes'), which are now localized in a way that the words hour(s), minute(s) are replaced by their localized versions. So the idea was to have menu entries build up in the same way.
donlaci
218
microsoft/PowerToys
29,745
[PVS] Fix static analyzer findings
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request 1. fixed by introducing a smart wrapper 2. fixed as was suggested by PVS 3. the intention was most likely to unset `WPF_RESTORETOMAXIMIZED` in case of `SW_SHOWMAXIMIZED` 4. memset is redundant here, because `new <type>[<size>]{}`/`new <type>[<size>]()` expressions zero-initialize returned memory (as opposed to `new <type>[<size>]`, yeah...). 5. fixed m_thumbnail_event_handle check 6. according to the `WM_DPICHANGED` docs, the DPI should be obtained from wParam 7. syntax is fixed 8. redundancy is removed 9. redundancy is removed 10. error checking is fixed <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29723 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-08 13:43:06+00:00
2023-11-15 16:38:45+00:00
src/modules/FileLocksmith/FileLocksmithLibInterop/NtdllExtensions.cpp
#include "pch.h" #include "NtdllExtensions.h" #include <thread> #include <atomic> #define STATUS_INFO_LENGTH_MISMATCH ((LONG)0xC0000004) // Calls NtQuerySystemInformation and returns a buffer containing the result. namespace { std::wstring_view unicode_to_view(UNICODE_STRING unicode_str) { return std::wstring_view(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } std::wstring unicode_to_str(UNICODE_STRING unicode_str) { return std::wstring(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } // Implementation adapted from src/common/utils inline std::wstring get_module_name(HANDLE process, HMODULE mod) { wchar_t buffer[MAX_PATH + 1]; DWORD actual_length = GetModuleFileNameExW(process, mod, buffer, MAX_PATH + 1); if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) { const DWORD long_path_length = 0xFFFF; // should be always enough std::wstring long_filename(long_path_length, L'\0'); actual_length = GetModuleFileNameW(mod, long_filename.data(), long_path_length); long_filename.resize(std::wcslen(long_filename.data())); long_filename.shrink_to_fit(); return long_filename; } return { buffer, (UINT)lstrlenW(buffer) }; } constexpr size_t DefaultModulesResultSize = 512; std::vector<std::wstring> process_modules(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, pid); if (!process) { return {}; } std::vector<std::wstring> result; bool completed = false; std::vector<HMODULE> modules(DefaultModulesResultSize); while (!completed) { DWORD needed; auto status = EnumProcessModules(process, modules.data(), static_cast<DWORD>(modules.size() * sizeof(HMODULE)), &needed); if (!status) { // Give up return {}; } if (needed > modules.size() * sizeof(HMODULE)) { // Array is too small modules.resize(needed / sizeof(HMODULE)); continue; } // Okay modules.resize(needed / sizeof(HMODULE)); for (auto mod : modules) { result.push_back(get_module_name(process, mod)); } completed = true; } CloseHandle(process); return result; } } NtdllExtensions::MemoryLoopResult NtdllExtensions::NtQuerySystemInformationMemoryLoop(ULONG SystemInformationClass) { MemoryLoopResult result; result.memory.resize(DefaultResultBufferSize); while (result.memory.size() <= MaxResultBufferSize) { ULONG result_len; result.status = NtQuerySystemInformation(SystemInformationClass, result.memory.data(), (ULONG)result.memory.size(), &result_len); if (result.status == STATUS_INFO_LENGTH_MISMATCH) { result.memory.resize(result.memory.size() * 2); continue; } if (NT_ERROR(result.status)) { result.memory.clear(); } return result; } result.status = STATUS_INFO_LENGTH_MISMATCH; result.memory.clear(); return result; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle, std::vector<BYTE>& buffer) { if (GetFileType(file_handle) != FILE_TYPE_DISK) { return L""; } ULONG return_length; auto status = NtQueryObject(file_handle, ObjectNameInformation, buffer.data(), (ULONG)buffer.size(), &return_length); if (NT_SUCCESS(status)) { auto object_name_info = (UNICODE_STRING*)buffer.data(); return unicode_to_str(*object_name_info); } return L""; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle) { std::vector<BYTE> buffer(DefaultResultBufferSize); return file_handle_to_kernel_name(file_handle, buffer); } std::wstring NtdllExtensions::path_to_kernel_name(LPCWSTR path) { HANDLE file_handle = CreateFileW(path, 0, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL); if (file_handle == INVALID_HANDLE_VALUE) { return {}; } auto kernel_name = file_handle_to_kernel_name(file_handle); CloseHandle(file_handle); return kernel_name; } std::vector<NtdllExtensions::HandleInfo> NtdllExtensions::handles() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemExtendedHandleInformation); if (NT_ERROR(get_info_result.status)) { return {}; } auto info_ptr = (SYSTEM_HANDLE_INFORMATION_EX*)get_info_result.memory.data(); std::map<ULONG_PTR, HANDLE> pid_to_handle; std::vector<HandleInfo> result; std::vector<BYTE> object_info_buffer(DefaultResultBufferSize); std::atomic<ULONG> i = 0; std::atomic<ULONG_PTR> handle_count = info_ptr->NumberOfHandles; std::atomic<HANDLE> process_handle = NULL; std::atomic<HANDLE> handle_copy = NULL; ULONG previous_i; while (i < handle_count) { previous_i = i; // The system calls we use in this block were reported to hang on some machines. // We need to offload the cycle to another thread and keep track of progress to terminate and resume when needed. // Unfortunately, there are no alternative APIs to what we're using that accept timeouts. (NtQueryObject and GetFileType) auto offload_function = std::thread([&] { for (; i < handle_count; i++) { process_handle = NULL; handle_copy = NULL; auto handle_info = info_ptr->Handles + i; auto pid = handle_info->UniqueProcessId; auto iter = pid_to_handle.find(pid); if (iter != pid_to_handle.end()) { process_handle = iter->second; } else { process_handle = OpenProcess(PROCESS_DUP_HANDLE, FALSE, (DWORD)pid); if (!process_handle) { continue; } pid_to_handle[pid] = process_handle; } // According to this: // https://stackoverflow.com/questions/46384048/enumerate-handles // NtQueryObject could hang // TODO uncomment and investigate // if (handle_info->GrantedAccess == 0x0012019f) { // continue; // } HANDLE local_handle_copy; auto dh_result = DuplicateHandle(process_handle, (HANDLE)handle_info->HandleValue, GetCurrentProcess(), &local_handle_copy, 0, 0, DUPLICATE_SAME_ACCESS); if (dh_result == 0) { // Ignore this handle. continue; } handle_copy = local_handle_copy; ULONG return_length; auto status = NtQueryObject(handle_copy, ObjectTypeInformation, object_info_buffer.data(), (ULONG)object_info_buffer.size(), &return_length); if (NT_ERROR(status)) { // Ignore this handle. CloseHandle(handle_copy); handle_copy = NULL; continue; } auto object_type_info = (OBJECT_TYPE_INFORMATION*)object_info_buffer.data(); auto type_name = unicode_to_str(object_type_info->Name); std::wstring file_name; if (type_name == L"File") { file_name = file_handle_to_kernel_name(handle_copy, object_info_buffer); result.push_back(HandleInfo{ pid, handle_info->HandleValue, type_name, file_name }); } CloseHandle(handle_copy); handle_copy = NULL; } }); offload_function.detach(); do { Sleep(200); // Timeout in milliseconds for detecting that the system hang on getting information for a handle. if (i >= handle_count) { // We're done. break; } if (previous_i >= i) { // The thread looks like it's hanging on some handle. Let's kill it and resume. // HACK: This is unsafe and may leak something, but looks like there's no way to properly clean up a thread when it's hanging on a system call. TerminateThread(offload_function.native_handle(), 1); // Close Handles that might be lingering. if (handle_copy!=NULL) { CloseHandle(handle_copy); } i++; break; } previous_i = i; } while (1); } for (auto [pid, handle] : pid_to_handle) { CloseHandle(handle); } return result; } // Returns the list of all processes. // On failure, returns an empty vector. std::wstring NtdllExtensions::pid_to_user(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, FALSE, pid); std::wstring user; std::wstring domain; if (process == nullptr) { return user; } HANDLE token = nullptr; if (!OpenProcessToken(process, TOKEN_QUERY, &token)) { return user; } DWORD token_size = 0; GetTokenInformation(token, TokenUser, nullptr, 0, &token_size); if (token_size < 0) { return user; } std::vector<BYTE> token_buffer(token_size); GetTokenInformation(token, TokenUser, token_buffer.data(), token_size, &token_size); TOKEN_USER* user_ptr = (TOKEN_USER*)token_buffer.data(); PSID psid = user_ptr->User.Sid; DWORD user_buf_size = 0; DWORD domain_buf_size = 0; SID_NAME_USE sid_name; LookupAccountSidW(nullptr, psid, nullptr, &user_buf_size, nullptr, &domain_buf_size, &sid_name); if (!user_buf_size || !domain_buf_size) { return user; } user.resize(user_buf_size); domain.resize(domain_buf_size); LookupAccountSidW(nullptr, psid, user.data(), &user_buf_size, domain.data(), &domain_buf_size, &sid_name); user.resize(user.size() - 1); domain.resize(domain.size() - 1); CloseHandle(token); CloseHandle(process); return user; } std::vector<NtdllExtensions::ProcessInfo> NtdllExtensions::processes() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemProcessInformation); if (NT_ERROR(get_info_result.status)) { return {}; } std::vector<ProcessInfo> result; auto info_ptr = (PSYSTEM_PROCESS_INFORMATION)get_info_result.memory.data(); while (info_ptr->NextEntryOffset) { info_ptr = decltype(info_ptr)((LPBYTE)info_ptr + info_ptr->NextEntryOffset); ProcessInfo item; item.name = unicode_to_str(info_ptr->ImageName); item.pid = (DWORD)(uintptr_t)info_ptr->UniqueProcessId; item.modules = process_modules(item.pid); item.user = pid_to_user(item.pid); result.push_back(item); } return result; }
#include "pch.h" #include "NtdllExtensions.h" #include <thread> #include <atomic> #define STATUS_INFO_LENGTH_MISMATCH ((LONG)0xC0000004) // Calls NtQuerySystemInformation and returns a buffer containing the result. namespace { std::wstring_view unicode_to_view(UNICODE_STRING unicode_str) { return std::wstring_view(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } std::wstring unicode_to_str(UNICODE_STRING unicode_str) { return std::wstring(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } // Implementation adapted from src/common/utils inline std::wstring get_module_name(HANDLE process, HMODULE mod) { wchar_t buffer[MAX_PATH + 1]; DWORD actual_length = GetModuleFileNameExW(process, mod, buffer, MAX_PATH + 1); if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) { const DWORD long_path_length = 0xFFFF; // should be always enough std::wstring long_filename(long_path_length, L'\0'); actual_length = GetModuleFileNameW(mod, long_filename.data(), long_path_length); long_filename.resize(std::wcslen(long_filename.data())); long_filename.shrink_to_fit(); return long_filename; } return { buffer, (UINT)lstrlenW(buffer) }; } constexpr size_t DefaultModulesResultSize = 512; std::vector<std::wstring> process_modules(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, pid); if (!process) { return {}; } std::vector<std::wstring> result; bool completed = false; std::vector<HMODULE> modules(DefaultModulesResultSize); while (!completed) { DWORD needed; auto status = EnumProcessModules(process, modules.data(), static_cast<DWORD>(modules.size() * sizeof(HMODULE)), &needed); if (!status) { // Give up return {}; } if (needed > modules.size() * sizeof(HMODULE)) { // Array is too small modules.resize(needed / sizeof(HMODULE)); continue; } // Okay modules.resize(needed / sizeof(HMODULE)); for (auto mod : modules) { result.push_back(get_module_name(process, mod)); } completed = true; } CloseHandle(process); return result; } } NtdllExtensions::MemoryLoopResult NtdllExtensions::NtQuerySystemInformationMemoryLoop(ULONG SystemInformationClass) { MemoryLoopResult result; result.memory.resize(DefaultResultBufferSize); while (result.memory.size() <= MaxResultBufferSize) { ULONG result_len; result.status = NtQuerySystemInformation(SystemInformationClass, result.memory.data(), (ULONG)result.memory.size(), &result_len); if (result.status == STATUS_INFO_LENGTH_MISMATCH) { result.memory.resize(result.memory.size() * 2); continue; } if (NT_ERROR(result.status)) { result.memory.clear(); } return result; } result.status = STATUS_INFO_LENGTH_MISMATCH; result.memory.clear(); return result; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle, std::vector<BYTE>& buffer) { if (GetFileType(file_handle) != FILE_TYPE_DISK) { return L""; } ULONG return_length; auto status = NtQueryObject(file_handle, ObjectNameInformation, buffer.data(), (ULONG)buffer.size(), &return_length); if (NT_SUCCESS(status)) { auto object_name_info = (UNICODE_STRING*)buffer.data(); return unicode_to_str(*object_name_info); } return L""; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle) { std::vector<BYTE> buffer(DefaultResultBufferSize); return file_handle_to_kernel_name(file_handle, buffer); } std::wstring NtdllExtensions::path_to_kernel_name(LPCWSTR path) { HANDLE file_handle = CreateFileW(path, 0, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL); if (file_handle == INVALID_HANDLE_VALUE) { return {}; } auto kernel_name = file_handle_to_kernel_name(file_handle); CloseHandle(file_handle); return kernel_name; } std::vector<NtdllExtensions::HandleInfo> NtdllExtensions::handles() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemExtendedHandleInformation); if (NT_ERROR(get_info_result.status)) { return {}; } auto info_ptr = (SYSTEM_HANDLE_INFORMATION_EX*)get_info_result.memory.data(); std::map<ULONG_PTR, HANDLE> pid_to_handle; std::vector<HandleInfo> result; std::vector<BYTE> object_info_buffer(DefaultResultBufferSize); std::atomic<ULONG> i = 0; std::atomic<ULONG_PTR> handle_count = info_ptr->NumberOfHandles; std::atomic<HANDLE> process_handle = NULL; std::atomic<HANDLE> handle_copy = NULL; ULONG previous_i; while (i < handle_count) { previous_i = i; // The system calls we use in this block were reported to hang on some machines. // We need to offload the cycle to another thread and keep track of progress to terminate and resume when needed. // Unfortunately, there are no alternative APIs to what we're using that accept timeouts. (NtQueryObject and GetFileType) auto offload_function = std::thread([&] { for (; i < handle_count; i++) { process_handle = NULL; handle_copy = NULL; auto handle_info = info_ptr->Handles + i; auto pid = handle_info->UniqueProcessId; auto iter = pid_to_handle.find(pid); if (iter != pid_to_handle.end()) { process_handle = iter->second; } else { process_handle = OpenProcess(PROCESS_DUP_HANDLE, FALSE, (DWORD)pid); if (!process_handle) { continue; } pid_to_handle[pid] = process_handle; } // According to this: // https://stackoverflow.com/questions/46384048/enumerate-handles // NtQueryObject could hang // TODO uncomment and investigate // if (handle_info->GrantedAccess == 0x0012019f) { // continue; // } HANDLE local_handle_copy; auto dh_result = DuplicateHandle(process_handle, (HANDLE)handle_info->HandleValue, GetCurrentProcess(), &local_handle_copy, 0, 0, DUPLICATE_SAME_ACCESS); if (dh_result == 0) { // Ignore this handle. continue; } handle_copy = local_handle_copy; ULONG return_length; auto status = NtQueryObject(handle_copy, ObjectTypeInformation, object_info_buffer.data(), (ULONG)object_info_buffer.size(), &return_length); if (NT_ERROR(status)) { // Ignore this handle. CloseHandle(handle_copy); handle_copy = NULL; continue; } auto object_type_info = (OBJECT_TYPE_INFORMATION*)object_info_buffer.data(); auto type_name = unicode_to_str(object_type_info->Name); std::wstring file_name; if (type_name == L"File") { file_name = file_handle_to_kernel_name(handle_copy, object_info_buffer); result.push_back(HandleInfo{ pid, handle_info->HandleValue, type_name, file_name }); } CloseHandle(handle_copy); handle_copy = NULL; } }); offload_function.detach(); do { Sleep(200); // Timeout in milliseconds for detecting that the system hang on getting information for a handle. if (i >= handle_count) { // We're done. break; } if (previous_i >= i) { // The thread looks like it's hanging on some handle. Let's kill it and resume. // HACK: This is unsafe and may leak something, but looks like there's no way to properly clean up a thread when it's hanging on a system call. TerminateThread(offload_function.native_handle(), 1); // Close Handles that might be lingering. if (handle_copy!=NULL) { CloseHandle(handle_copy); } i++; break; } previous_i = i; } while (1); } for (auto [pid, handle] : pid_to_handle) { CloseHandle(handle); } return result; } // Returns the list of all processes. // On failure, returns an empty vector. std::wstring NtdllExtensions::pid_to_user(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, FALSE, pid); std::wstring user; std::wstring domain; if (process == nullptr) { return user; } HANDLE token = nullptr; if (!OpenProcessToken(process, TOKEN_QUERY, &token)) { return user; } DWORD token_size = 0; const bool ok = GetTokenInformation(token, TokenUser, nullptr, 0, &token_size); if ((!ok && GetLastError() != ERROR_INSUFFICIENT_BUFFER) || !token_size) { return user; } std::vector<BYTE> token_buffer(token_size); GetTokenInformation(token, TokenUser, token_buffer.data(), token_size, &token_size); TOKEN_USER* user_ptr = (TOKEN_USER*)token_buffer.data(); PSID psid = user_ptr->User.Sid; DWORD user_buf_size = 0; DWORD domain_buf_size = 0; SID_NAME_USE sid_name; LookupAccountSidW(nullptr, psid, nullptr, &user_buf_size, nullptr, &domain_buf_size, &sid_name); if (!user_buf_size || !domain_buf_size) { return user; } user.resize(user_buf_size); domain.resize(domain_buf_size); LookupAccountSidW(nullptr, psid, user.data(), &user_buf_size, domain.data(), &domain_buf_size, &sid_name); user.resize(user.size() - 1); domain.resize(domain.size() - 1); CloseHandle(token); CloseHandle(process); return user; } std::vector<NtdllExtensions::ProcessInfo> NtdllExtensions::processes() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemProcessInformation); if (NT_ERROR(get_info_result.status)) { return {}; } std::vector<ProcessInfo> result; auto info_ptr = (PSYSTEM_PROCESS_INFORMATION)get_info_result.memory.data(); while (info_ptr->NextEntryOffset) { info_ptr = decltype(info_ptr)((LPBYTE)info_ptr + info_ptr->NextEntryOffset); ProcessInfo item; item.name = unicode_to_str(info_ptr->ImageName); item.pid = (DWORD)(uintptr_t)info_ptr->UniqueProcessId; item.modules = process_modules(item.pid); item.user = pid_to_user(item.pid); result.push_back(item); } return result; }
yuyoyuppe
4ebc4cbc0dbb85e7b92fca65816f11a1887f1cc9
5ab83c6ad20652d416459bf88bd095a75316bbbb
Looking at the documentation for `GetTokenInformation`, this function looks like it was just trying to get the actual size needed for the next call with a proper buffer size. So this doesn't look like proper error checking, since that needs to take token_size into account as well. https://learn.microsoft.com/en-us/windows/win32/api/securitybaseapi/nf-securitybaseapi-gettokeninformation When we're just calling to get the required size of the buffer, does it count as a success or a fail?
jaimecbernardo
219
microsoft/PowerToys
29,745
[PVS] Fix static analyzer findings
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request 1. fixed by introducing a smart wrapper 2. fixed as was suggested by PVS 3. the intention was most likely to unset `WPF_RESTORETOMAXIMIZED` in case of `SW_SHOWMAXIMIZED` 4. memset is redundant here, because `new <type>[<size>]{}`/`new <type>[<size>]()` expressions zero-initialize returned memory (as opposed to `new <type>[<size>]`, yeah...). 5. fixed m_thumbnail_event_handle check 6. according to the `WM_DPICHANGED` docs, the DPI should be obtained from wParam 7. syntax is fixed 8. redundancy is removed 9. redundancy is removed 10. error checking is fixed <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29723 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-08 13:43:06+00:00
2023-11-15 16:38:45+00:00
src/modules/FileLocksmith/FileLocksmithLibInterop/NtdllExtensions.cpp
#include "pch.h" #include "NtdllExtensions.h" #include <thread> #include <atomic> #define STATUS_INFO_LENGTH_MISMATCH ((LONG)0xC0000004) // Calls NtQuerySystemInformation and returns a buffer containing the result. namespace { std::wstring_view unicode_to_view(UNICODE_STRING unicode_str) { return std::wstring_view(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } std::wstring unicode_to_str(UNICODE_STRING unicode_str) { return std::wstring(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } // Implementation adapted from src/common/utils inline std::wstring get_module_name(HANDLE process, HMODULE mod) { wchar_t buffer[MAX_PATH + 1]; DWORD actual_length = GetModuleFileNameExW(process, mod, buffer, MAX_PATH + 1); if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) { const DWORD long_path_length = 0xFFFF; // should be always enough std::wstring long_filename(long_path_length, L'\0'); actual_length = GetModuleFileNameW(mod, long_filename.data(), long_path_length); long_filename.resize(std::wcslen(long_filename.data())); long_filename.shrink_to_fit(); return long_filename; } return { buffer, (UINT)lstrlenW(buffer) }; } constexpr size_t DefaultModulesResultSize = 512; std::vector<std::wstring> process_modules(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, pid); if (!process) { return {}; } std::vector<std::wstring> result; bool completed = false; std::vector<HMODULE> modules(DefaultModulesResultSize); while (!completed) { DWORD needed; auto status = EnumProcessModules(process, modules.data(), static_cast<DWORD>(modules.size() * sizeof(HMODULE)), &needed); if (!status) { // Give up return {}; } if (needed > modules.size() * sizeof(HMODULE)) { // Array is too small modules.resize(needed / sizeof(HMODULE)); continue; } // Okay modules.resize(needed / sizeof(HMODULE)); for (auto mod : modules) { result.push_back(get_module_name(process, mod)); } completed = true; } CloseHandle(process); return result; } } NtdllExtensions::MemoryLoopResult NtdllExtensions::NtQuerySystemInformationMemoryLoop(ULONG SystemInformationClass) { MemoryLoopResult result; result.memory.resize(DefaultResultBufferSize); while (result.memory.size() <= MaxResultBufferSize) { ULONG result_len; result.status = NtQuerySystemInformation(SystemInformationClass, result.memory.data(), (ULONG)result.memory.size(), &result_len); if (result.status == STATUS_INFO_LENGTH_MISMATCH) { result.memory.resize(result.memory.size() * 2); continue; } if (NT_ERROR(result.status)) { result.memory.clear(); } return result; } result.status = STATUS_INFO_LENGTH_MISMATCH; result.memory.clear(); return result; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle, std::vector<BYTE>& buffer) { if (GetFileType(file_handle) != FILE_TYPE_DISK) { return L""; } ULONG return_length; auto status = NtQueryObject(file_handle, ObjectNameInformation, buffer.data(), (ULONG)buffer.size(), &return_length); if (NT_SUCCESS(status)) { auto object_name_info = (UNICODE_STRING*)buffer.data(); return unicode_to_str(*object_name_info); } return L""; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle) { std::vector<BYTE> buffer(DefaultResultBufferSize); return file_handle_to_kernel_name(file_handle, buffer); } std::wstring NtdllExtensions::path_to_kernel_name(LPCWSTR path) { HANDLE file_handle = CreateFileW(path, 0, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL); if (file_handle == INVALID_HANDLE_VALUE) { return {}; } auto kernel_name = file_handle_to_kernel_name(file_handle); CloseHandle(file_handle); return kernel_name; } std::vector<NtdllExtensions::HandleInfo> NtdllExtensions::handles() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemExtendedHandleInformation); if (NT_ERROR(get_info_result.status)) { return {}; } auto info_ptr = (SYSTEM_HANDLE_INFORMATION_EX*)get_info_result.memory.data(); std::map<ULONG_PTR, HANDLE> pid_to_handle; std::vector<HandleInfo> result; std::vector<BYTE> object_info_buffer(DefaultResultBufferSize); std::atomic<ULONG> i = 0; std::atomic<ULONG_PTR> handle_count = info_ptr->NumberOfHandles; std::atomic<HANDLE> process_handle = NULL; std::atomic<HANDLE> handle_copy = NULL; ULONG previous_i; while (i < handle_count) { previous_i = i; // The system calls we use in this block were reported to hang on some machines. // We need to offload the cycle to another thread and keep track of progress to terminate and resume when needed. // Unfortunately, there are no alternative APIs to what we're using that accept timeouts. (NtQueryObject and GetFileType) auto offload_function = std::thread([&] { for (; i < handle_count; i++) { process_handle = NULL; handle_copy = NULL; auto handle_info = info_ptr->Handles + i; auto pid = handle_info->UniqueProcessId; auto iter = pid_to_handle.find(pid); if (iter != pid_to_handle.end()) { process_handle = iter->second; } else { process_handle = OpenProcess(PROCESS_DUP_HANDLE, FALSE, (DWORD)pid); if (!process_handle) { continue; } pid_to_handle[pid] = process_handle; } // According to this: // https://stackoverflow.com/questions/46384048/enumerate-handles // NtQueryObject could hang // TODO uncomment and investigate // if (handle_info->GrantedAccess == 0x0012019f) { // continue; // } HANDLE local_handle_copy; auto dh_result = DuplicateHandle(process_handle, (HANDLE)handle_info->HandleValue, GetCurrentProcess(), &local_handle_copy, 0, 0, DUPLICATE_SAME_ACCESS); if (dh_result == 0) { // Ignore this handle. continue; } handle_copy = local_handle_copy; ULONG return_length; auto status = NtQueryObject(handle_copy, ObjectTypeInformation, object_info_buffer.data(), (ULONG)object_info_buffer.size(), &return_length); if (NT_ERROR(status)) { // Ignore this handle. CloseHandle(handle_copy); handle_copy = NULL; continue; } auto object_type_info = (OBJECT_TYPE_INFORMATION*)object_info_buffer.data(); auto type_name = unicode_to_str(object_type_info->Name); std::wstring file_name; if (type_name == L"File") { file_name = file_handle_to_kernel_name(handle_copy, object_info_buffer); result.push_back(HandleInfo{ pid, handle_info->HandleValue, type_name, file_name }); } CloseHandle(handle_copy); handle_copy = NULL; } }); offload_function.detach(); do { Sleep(200); // Timeout in milliseconds for detecting that the system hang on getting information for a handle. if (i >= handle_count) { // We're done. break; } if (previous_i >= i) { // The thread looks like it's hanging on some handle. Let's kill it and resume. // HACK: This is unsafe and may leak something, but looks like there's no way to properly clean up a thread when it's hanging on a system call. TerminateThread(offload_function.native_handle(), 1); // Close Handles that might be lingering. if (handle_copy!=NULL) { CloseHandle(handle_copy); } i++; break; } previous_i = i; } while (1); } for (auto [pid, handle] : pid_to_handle) { CloseHandle(handle); } return result; } // Returns the list of all processes. // On failure, returns an empty vector. std::wstring NtdllExtensions::pid_to_user(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, FALSE, pid); std::wstring user; std::wstring domain; if (process == nullptr) { return user; } HANDLE token = nullptr; if (!OpenProcessToken(process, TOKEN_QUERY, &token)) { return user; } DWORD token_size = 0; GetTokenInformation(token, TokenUser, nullptr, 0, &token_size); if (token_size < 0) { return user; } std::vector<BYTE> token_buffer(token_size); GetTokenInformation(token, TokenUser, token_buffer.data(), token_size, &token_size); TOKEN_USER* user_ptr = (TOKEN_USER*)token_buffer.data(); PSID psid = user_ptr->User.Sid; DWORD user_buf_size = 0; DWORD domain_buf_size = 0; SID_NAME_USE sid_name; LookupAccountSidW(nullptr, psid, nullptr, &user_buf_size, nullptr, &domain_buf_size, &sid_name); if (!user_buf_size || !domain_buf_size) { return user; } user.resize(user_buf_size); domain.resize(domain_buf_size); LookupAccountSidW(nullptr, psid, user.data(), &user_buf_size, domain.data(), &domain_buf_size, &sid_name); user.resize(user.size() - 1); domain.resize(domain.size() - 1); CloseHandle(token); CloseHandle(process); return user; } std::vector<NtdllExtensions::ProcessInfo> NtdllExtensions::processes() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemProcessInformation); if (NT_ERROR(get_info_result.status)) { return {}; } std::vector<ProcessInfo> result; auto info_ptr = (PSYSTEM_PROCESS_INFORMATION)get_info_result.memory.data(); while (info_ptr->NextEntryOffset) { info_ptr = decltype(info_ptr)((LPBYTE)info_ptr + info_ptr->NextEntryOffset); ProcessInfo item; item.name = unicode_to_str(info_ptr->ImageName); item.pid = (DWORD)(uintptr_t)info_ptr->UniqueProcessId; item.modules = process_modules(item.pid); item.user = pid_to_user(item.pid); result.push_back(item); } return result; }
#include "pch.h" #include "NtdllExtensions.h" #include <thread> #include <atomic> #define STATUS_INFO_LENGTH_MISMATCH ((LONG)0xC0000004) // Calls NtQuerySystemInformation and returns a buffer containing the result. namespace { std::wstring_view unicode_to_view(UNICODE_STRING unicode_str) { return std::wstring_view(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } std::wstring unicode_to_str(UNICODE_STRING unicode_str) { return std::wstring(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } // Implementation adapted from src/common/utils inline std::wstring get_module_name(HANDLE process, HMODULE mod) { wchar_t buffer[MAX_PATH + 1]; DWORD actual_length = GetModuleFileNameExW(process, mod, buffer, MAX_PATH + 1); if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) { const DWORD long_path_length = 0xFFFF; // should be always enough std::wstring long_filename(long_path_length, L'\0'); actual_length = GetModuleFileNameW(mod, long_filename.data(), long_path_length); long_filename.resize(std::wcslen(long_filename.data())); long_filename.shrink_to_fit(); return long_filename; } return { buffer, (UINT)lstrlenW(buffer) }; } constexpr size_t DefaultModulesResultSize = 512; std::vector<std::wstring> process_modules(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, pid); if (!process) { return {}; } std::vector<std::wstring> result; bool completed = false; std::vector<HMODULE> modules(DefaultModulesResultSize); while (!completed) { DWORD needed; auto status = EnumProcessModules(process, modules.data(), static_cast<DWORD>(modules.size() * sizeof(HMODULE)), &needed); if (!status) { // Give up return {}; } if (needed > modules.size() * sizeof(HMODULE)) { // Array is too small modules.resize(needed / sizeof(HMODULE)); continue; } // Okay modules.resize(needed / sizeof(HMODULE)); for (auto mod : modules) { result.push_back(get_module_name(process, mod)); } completed = true; } CloseHandle(process); return result; } } NtdllExtensions::MemoryLoopResult NtdllExtensions::NtQuerySystemInformationMemoryLoop(ULONG SystemInformationClass) { MemoryLoopResult result; result.memory.resize(DefaultResultBufferSize); while (result.memory.size() <= MaxResultBufferSize) { ULONG result_len; result.status = NtQuerySystemInformation(SystemInformationClass, result.memory.data(), (ULONG)result.memory.size(), &result_len); if (result.status == STATUS_INFO_LENGTH_MISMATCH) { result.memory.resize(result.memory.size() * 2); continue; } if (NT_ERROR(result.status)) { result.memory.clear(); } return result; } result.status = STATUS_INFO_LENGTH_MISMATCH; result.memory.clear(); return result; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle, std::vector<BYTE>& buffer) { if (GetFileType(file_handle) != FILE_TYPE_DISK) { return L""; } ULONG return_length; auto status = NtQueryObject(file_handle, ObjectNameInformation, buffer.data(), (ULONG)buffer.size(), &return_length); if (NT_SUCCESS(status)) { auto object_name_info = (UNICODE_STRING*)buffer.data(); return unicode_to_str(*object_name_info); } return L""; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle) { std::vector<BYTE> buffer(DefaultResultBufferSize); return file_handle_to_kernel_name(file_handle, buffer); } std::wstring NtdllExtensions::path_to_kernel_name(LPCWSTR path) { HANDLE file_handle = CreateFileW(path, 0, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL); if (file_handle == INVALID_HANDLE_VALUE) { return {}; } auto kernel_name = file_handle_to_kernel_name(file_handle); CloseHandle(file_handle); return kernel_name; } std::vector<NtdllExtensions::HandleInfo> NtdllExtensions::handles() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemExtendedHandleInformation); if (NT_ERROR(get_info_result.status)) { return {}; } auto info_ptr = (SYSTEM_HANDLE_INFORMATION_EX*)get_info_result.memory.data(); std::map<ULONG_PTR, HANDLE> pid_to_handle; std::vector<HandleInfo> result; std::vector<BYTE> object_info_buffer(DefaultResultBufferSize); std::atomic<ULONG> i = 0; std::atomic<ULONG_PTR> handle_count = info_ptr->NumberOfHandles; std::atomic<HANDLE> process_handle = NULL; std::atomic<HANDLE> handle_copy = NULL; ULONG previous_i; while (i < handle_count) { previous_i = i; // The system calls we use in this block were reported to hang on some machines. // We need to offload the cycle to another thread and keep track of progress to terminate and resume when needed. // Unfortunately, there are no alternative APIs to what we're using that accept timeouts. (NtQueryObject and GetFileType) auto offload_function = std::thread([&] { for (; i < handle_count; i++) { process_handle = NULL; handle_copy = NULL; auto handle_info = info_ptr->Handles + i; auto pid = handle_info->UniqueProcessId; auto iter = pid_to_handle.find(pid); if (iter != pid_to_handle.end()) { process_handle = iter->second; } else { process_handle = OpenProcess(PROCESS_DUP_HANDLE, FALSE, (DWORD)pid); if (!process_handle) { continue; } pid_to_handle[pid] = process_handle; } // According to this: // https://stackoverflow.com/questions/46384048/enumerate-handles // NtQueryObject could hang // TODO uncomment and investigate // if (handle_info->GrantedAccess == 0x0012019f) { // continue; // } HANDLE local_handle_copy; auto dh_result = DuplicateHandle(process_handle, (HANDLE)handle_info->HandleValue, GetCurrentProcess(), &local_handle_copy, 0, 0, DUPLICATE_SAME_ACCESS); if (dh_result == 0) { // Ignore this handle. continue; } handle_copy = local_handle_copy; ULONG return_length; auto status = NtQueryObject(handle_copy, ObjectTypeInformation, object_info_buffer.data(), (ULONG)object_info_buffer.size(), &return_length); if (NT_ERROR(status)) { // Ignore this handle. CloseHandle(handle_copy); handle_copy = NULL; continue; } auto object_type_info = (OBJECT_TYPE_INFORMATION*)object_info_buffer.data(); auto type_name = unicode_to_str(object_type_info->Name); std::wstring file_name; if (type_name == L"File") { file_name = file_handle_to_kernel_name(handle_copy, object_info_buffer); result.push_back(HandleInfo{ pid, handle_info->HandleValue, type_name, file_name }); } CloseHandle(handle_copy); handle_copy = NULL; } }); offload_function.detach(); do { Sleep(200); // Timeout in milliseconds for detecting that the system hang on getting information for a handle. if (i >= handle_count) { // We're done. break; } if (previous_i >= i) { // The thread looks like it's hanging on some handle. Let's kill it and resume. // HACK: This is unsafe and may leak something, but looks like there's no way to properly clean up a thread when it's hanging on a system call. TerminateThread(offload_function.native_handle(), 1); // Close Handles that might be lingering. if (handle_copy!=NULL) { CloseHandle(handle_copy); } i++; break; } previous_i = i; } while (1); } for (auto [pid, handle] : pid_to_handle) { CloseHandle(handle); } return result; } // Returns the list of all processes. // On failure, returns an empty vector. std::wstring NtdllExtensions::pid_to_user(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, FALSE, pid); std::wstring user; std::wstring domain; if (process == nullptr) { return user; } HANDLE token = nullptr; if (!OpenProcessToken(process, TOKEN_QUERY, &token)) { return user; } DWORD token_size = 0; const bool ok = GetTokenInformation(token, TokenUser, nullptr, 0, &token_size); if ((!ok && GetLastError() != ERROR_INSUFFICIENT_BUFFER) || !token_size) { return user; } std::vector<BYTE> token_buffer(token_size); GetTokenInformation(token, TokenUser, token_buffer.data(), token_size, &token_size); TOKEN_USER* user_ptr = (TOKEN_USER*)token_buffer.data(); PSID psid = user_ptr->User.Sid; DWORD user_buf_size = 0; DWORD domain_buf_size = 0; SID_NAME_USE sid_name; LookupAccountSidW(nullptr, psid, nullptr, &user_buf_size, nullptr, &domain_buf_size, &sid_name); if (!user_buf_size || !domain_buf_size) { return user; } user.resize(user_buf_size); domain.resize(domain_buf_size); LookupAccountSidW(nullptr, psid, user.data(), &user_buf_size, domain.data(), &domain_buf_size, &sid_name); user.resize(user.size() - 1); domain.resize(domain.size() - 1); CloseHandle(token); CloseHandle(process); return user; } std::vector<NtdllExtensions::ProcessInfo> NtdllExtensions::processes() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemProcessInformation); if (NT_ERROR(get_info_result.status)) { return {}; } std::vector<ProcessInfo> result; auto info_ptr = (PSYSTEM_PROCESS_INFORMATION)get_info_result.memory.data(); while (info_ptr->NextEntryOffset) { info_ptr = decltype(info_ptr)((LPBYTE)info_ptr + info_ptr->NextEntryOffset); ProcessInfo item; item.name = unicode_to_str(info_ptr->ImageName); item.pid = (DWORD)(uintptr_t)info_ptr->UniqueProcessId; item.modules = process_modules(item.pid); item.user = pid_to_user(item.pid); result.push_back(item); } return result; }
yuyoyuppe
4ebc4cbc0dbb85e7b92fca65816f11a1887f1cc9
5ab83c6ad20652d416459bf88bd095a75316bbbb
Good catch, thanks! Improved
yuyoyuppe
220
microsoft/PowerToys
29,745
[PVS] Fix static analyzer findings
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request 1. fixed by introducing a smart wrapper 2. fixed as was suggested by PVS 3. the intention was most likely to unset `WPF_RESTORETOMAXIMIZED` in case of `SW_SHOWMAXIMIZED` 4. memset is redundant here, because `new <type>[<size>]{}`/`new <type>[<size>]()` expressions zero-initialize returned memory (as opposed to `new <type>[<size>]`, yeah...). 5. fixed m_thumbnail_event_handle check 6. according to the `WM_DPICHANGED` docs, the DPI should be obtained from wParam 7. syntax is fixed 8. redundancy is removed 9. redundancy is removed 10. error checking is fixed <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29723 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-08 13:43:06+00:00
2023-11-15 16:38:45+00:00
src/modules/FileLocksmith/FileLocksmithLibInterop/NtdllExtensions.cpp
#include "pch.h" #include "NtdllExtensions.h" #include <thread> #include <atomic> #define STATUS_INFO_LENGTH_MISMATCH ((LONG)0xC0000004) // Calls NtQuerySystemInformation and returns a buffer containing the result. namespace { std::wstring_view unicode_to_view(UNICODE_STRING unicode_str) { return std::wstring_view(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } std::wstring unicode_to_str(UNICODE_STRING unicode_str) { return std::wstring(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } // Implementation adapted from src/common/utils inline std::wstring get_module_name(HANDLE process, HMODULE mod) { wchar_t buffer[MAX_PATH + 1]; DWORD actual_length = GetModuleFileNameExW(process, mod, buffer, MAX_PATH + 1); if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) { const DWORD long_path_length = 0xFFFF; // should be always enough std::wstring long_filename(long_path_length, L'\0'); actual_length = GetModuleFileNameW(mod, long_filename.data(), long_path_length); long_filename.resize(std::wcslen(long_filename.data())); long_filename.shrink_to_fit(); return long_filename; } return { buffer, (UINT)lstrlenW(buffer) }; } constexpr size_t DefaultModulesResultSize = 512; std::vector<std::wstring> process_modules(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, pid); if (!process) { return {}; } std::vector<std::wstring> result; bool completed = false; std::vector<HMODULE> modules(DefaultModulesResultSize); while (!completed) { DWORD needed; auto status = EnumProcessModules(process, modules.data(), static_cast<DWORD>(modules.size() * sizeof(HMODULE)), &needed); if (!status) { // Give up return {}; } if (needed > modules.size() * sizeof(HMODULE)) { // Array is too small modules.resize(needed / sizeof(HMODULE)); continue; } // Okay modules.resize(needed / sizeof(HMODULE)); for (auto mod : modules) { result.push_back(get_module_name(process, mod)); } completed = true; } CloseHandle(process); return result; } } NtdllExtensions::MemoryLoopResult NtdllExtensions::NtQuerySystemInformationMemoryLoop(ULONG SystemInformationClass) { MemoryLoopResult result; result.memory.resize(DefaultResultBufferSize); while (result.memory.size() <= MaxResultBufferSize) { ULONG result_len; result.status = NtQuerySystemInformation(SystemInformationClass, result.memory.data(), (ULONG)result.memory.size(), &result_len); if (result.status == STATUS_INFO_LENGTH_MISMATCH) { result.memory.resize(result.memory.size() * 2); continue; } if (NT_ERROR(result.status)) { result.memory.clear(); } return result; } result.status = STATUS_INFO_LENGTH_MISMATCH; result.memory.clear(); return result; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle, std::vector<BYTE>& buffer) { if (GetFileType(file_handle) != FILE_TYPE_DISK) { return L""; } ULONG return_length; auto status = NtQueryObject(file_handle, ObjectNameInformation, buffer.data(), (ULONG)buffer.size(), &return_length); if (NT_SUCCESS(status)) { auto object_name_info = (UNICODE_STRING*)buffer.data(); return unicode_to_str(*object_name_info); } return L""; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle) { std::vector<BYTE> buffer(DefaultResultBufferSize); return file_handle_to_kernel_name(file_handle, buffer); } std::wstring NtdllExtensions::path_to_kernel_name(LPCWSTR path) { HANDLE file_handle = CreateFileW(path, 0, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL); if (file_handle == INVALID_HANDLE_VALUE) { return {}; } auto kernel_name = file_handle_to_kernel_name(file_handle); CloseHandle(file_handle); return kernel_name; } std::vector<NtdllExtensions::HandleInfo> NtdllExtensions::handles() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemExtendedHandleInformation); if (NT_ERROR(get_info_result.status)) { return {}; } auto info_ptr = (SYSTEM_HANDLE_INFORMATION_EX*)get_info_result.memory.data(); std::map<ULONG_PTR, HANDLE> pid_to_handle; std::vector<HandleInfo> result; std::vector<BYTE> object_info_buffer(DefaultResultBufferSize); std::atomic<ULONG> i = 0; std::atomic<ULONG_PTR> handle_count = info_ptr->NumberOfHandles; std::atomic<HANDLE> process_handle = NULL; std::atomic<HANDLE> handle_copy = NULL; ULONG previous_i; while (i < handle_count) { previous_i = i; // The system calls we use in this block were reported to hang on some machines. // We need to offload the cycle to another thread and keep track of progress to terminate and resume when needed. // Unfortunately, there are no alternative APIs to what we're using that accept timeouts. (NtQueryObject and GetFileType) auto offload_function = std::thread([&] { for (; i < handle_count; i++) { process_handle = NULL; handle_copy = NULL; auto handle_info = info_ptr->Handles + i; auto pid = handle_info->UniqueProcessId; auto iter = pid_to_handle.find(pid); if (iter != pid_to_handle.end()) { process_handle = iter->second; } else { process_handle = OpenProcess(PROCESS_DUP_HANDLE, FALSE, (DWORD)pid); if (!process_handle) { continue; } pid_to_handle[pid] = process_handle; } // According to this: // https://stackoverflow.com/questions/46384048/enumerate-handles // NtQueryObject could hang // TODO uncomment and investigate // if (handle_info->GrantedAccess == 0x0012019f) { // continue; // } HANDLE local_handle_copy; auto dh_result = DuplicateHandle(process_handle, (HANDLE)handle_info->HandleValue, GetCurrentProcess(), &local_handle_copy, 0, 0, DUPLICATE_SAME_ACCESS); if (dh_result == 0) { // Ignore this handle. continue; } handle_copy = local_handle_copy; ULONG return_length; auto status = NtQueryObject(handle_copy, ObjectTypeInformation, object_info_buffer.data(), (ULONG)object_info_buffer.size(), &return_length); if (NT_ERROR(status)) { // Ignore this handle. CloseHandle(handle_copy); handle_copy = NULL; continue; } auto object_type_info = (OBJECT_TYPE_INFORMATION*)object_info_buffer.data(); auto type_name = unicode_to_str(object_type_info->Name); std::wstring file_name; if (type_name == L"File") { file_name = file_handle_to_kernel_name(handle_copy, object_info_buffer); result.push_back(HandleInfo{ pid, handle_info->HandleValue, type_name, file_name }); } CloseHandle(handle_copy); handle_copy = NULL; } }); offload_function.detach(); do { Sleep(200); // Timeout in milliseconds for detecting that the system hang on getting information for a handle. if (i >= handle_count) { // We're done. break; } if (previous_i >= i) { // The thread looks like it's hanging on some handle. Let's kill it and resume. // HACK: This is unsafe and may leak something, but looks like there's no way to properly clean up a thread when it's hanging on a system call. TerminateThread(offload_function.native_handle(), 1); // Close Handles that might be lingering. if (handle_copy!=NULL) { CloseHandle(handle_copy); } i++; break; } previous_i = i; } while (1); } for (auto [pid, handle] : pid_to_handle) { CloseHandle(handle); } return result; } // Returns the list of all processes. // On failure, returns an empty vector. std::wstring NtdllExtensions::pid_to_user(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, FALSE, pid); std::wstring user; std::wstring domain; if (process == nullptr) { return user; } HANDLE token = nullptr; if (!OpenProcessToken(process, TOKEN_QUERY, &token)) { return user; } DWORD token_size = 0; GetTokenInformation(token, TokenUser, nullptr, 0, &token_size); if (token_size < 0) { return user; } std::vector<BYTE> token_buffer(token_size); GetTokenInformation(token, TokenUser, token_buffer.data(), token_size, &token_size); TOKEN_USER* user_ptr = (TOKEN_USER*)token_buffer.data(); PSID psid = user_ptr->User.Sid; DWORD user_buf_size = 0; DWORD domain_buf_size = 0; SID_NAME_USE sid_name; LookupAccountSidW(nullptr, psid, nullptr, &user_buf_size, nullptr, &domain_buf_size, &sid_name); if (!user_buf_size || !domain_buf_size) { return user; } user.resize(user_buf_size); domain.resize(domain_buf_size); LookupAccountSidW(nullptr, psid, user.data(), &user_buf_size, domain.data(), &domain_buf_size, &sid_name); user.resize(user.size() - 1); domain.resize(domain.size() - 1); CloseHandle(token); CloseHandle(process); return user; } std::vector<NtdllExtensions::ProcessInfo> NtdllExtensions::processes() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemProcessInformation); if (NT_ERROR(get_info_result.status)) { return {}; } std::vector<ProcessInfo> result; auto info_ptr = (PSYSTEM_PROCESS_INFORMATION)get_info_result.memory.data(); while (info_ptr->NextEntryOffset) { info_ptr = decltype(info_ptr)((LPBYTE)info_ptr + info_ptr->NextEntryOffset); ProcessInfo item; item.name = unicode_to_str(info_ptr->ImageName); item.pid = (DWORD)(uintptr_t)info_ptr->UniqueProcessId; item.modules = process_modules(item.pid); item.user = pid_to_user(item.pid); result.push_back(item); } return result; }
#include "pch.h" #include "NtdllExtensions.h" #include <thread> #include <atomic> #define STATUS_INFO_LENGTH_MISMATCH ((LONG)0xC0000004) // Calls NtQuerySystemInformation and returns a buffer containing the result. namespace { std::wstring_view unicode_to_view(UNICODE_STRING unicode_str) { return std::wstring_view(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } std::wstring unicode_to_str(UNICODE_STRING unicode_str) { return std::wstring(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } // Implementation adapted from src/common/utils inline std::wstring get_module_name(HANDLE process, HMODULE mod) { wchar_t buffer[MAX_PATH + 1]; DWORD actual_length = GetModuleFileNameExW(process, mod, buffer, MAX_PATH + 1); if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) { const DWORD long_path_length = 0xFFFF; // should be always enough std::wstring long_filename(long_path_length, L'\0'); actual_length = GetModuleFileNameW(mod, long_filename.data(), long_path_length); long_filename.resize(std::wcslen(long_filename.data())); long_filename.shrink_to_fit(); return long_filename; } return { buffer, (UINT)lstrlenW(buffer) }; } constexpr size_t DefaultModulesResultSize = 512; std::vector<std::wstring> process_modules(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, pid); if (!process) { return {}; } std::vector<std::wstring> result; bool completed = false; std::vector<HMODULE> modules(DefaultModulesResultSize); while (!completed) { DWORD needed; auto status = EnumProcessModules(process, modules.data(), static_cast<DWORD>(modules.size() * sizeof(HMODULE)), &needed); if (!status) { // Give up return {}; } if (needed > modules.size() * sizeof(HMODULE)) { // Array is too small modules.resize(needed / sizeof(HMODULE)); continue; } // Okay modules.resize(needed / sizeof(HMODULE)); for (auto mod : modules) { result.push_back(get_module_name(process, mod)); } completed = true; } CloseHandle(process); return result; } } NtdllExtensions::MemoryLoopResult NtdllExtensions::NtQuerySystemInformationMemoryLoop(ULONG SystemInformationClass) { MemoryLoopResult result; result.memory.resize(DefaultResultBufferSize); while (result.memory.size() <= MaxResultBufferSize) { ULONG result_len; result.status = NtQuerySystemInformation(SystemInformationClass, result.memory.data(), (ULONG)result.memory.size(), &result_len); if (result.status == STATUS_INFO_LENGTH_MISMATCH) { result.memory.resize(result.memory.size() * 2); continue; } if (NT_ERROR(result.status)) { result.memory.clear(); } return result; } result.status = STATUS_INFO_LENGTH_MISMATCH; result.memory.clear(); return result; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle, std::vector<BYTE>& buffer) { if (GetFileType(file_handle) != FILE_TYPE_DISK) { return L""; } ULONG return_length; auto status = NtQueryObject(file_handle, ObjectNameInformation, buffer.data(), (ULONG)buffer.size(), &return_length); if (NT_SUCCESS(status)) { auto object_name_info = (UNICODE_STRING*)buffer.data(); return unicode_to_str(*object_name_info); } return L""; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle) { std::vector<BYTE> buffer(DefaultResultBufferSize); return file_handle_to_kernel_name(file_handle, buffer); } std::wstring NtdllExtensions::path_to_kernel_name(LPCWSTR path) { HANDLE file_handle = CreateFileW(path, 0, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL); if (file_handle == INVALID_HANDLE_VALUE) { return {}; } auto kernel_name = file_handle_to_kernel_name(file_handle); CloseHandle(file_handle); return kernel_name; } std::vector<NtdllExtensions::HandleInfo> NtdllExtensions::handles() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemExtendedHandleInformation); if (NT_ERROR(get_info_result.status)) { return {}; } auto info_ptr = (SYSTEM_HANDLE_INFORMATION_EX*)get_info_result.memory.data(); std::map<ULONG_PTR, HANDLE> pid_to_handle; std::vector<HandleInfo> result; std::vector<BYTE> object_info_buffer(DefaultResultBufferSize); std::atomic<ULONG> i = 0; std::atomic<ULONG_PTR> handle_count = info_ptr->NumberOfHandles; std::atomic<HANDLE> process_handle = NULL; std::atomic<HANDLE> handle_copy = NULL; ULONG previous_i; while (i < handle_count) { previous_i = i; // The system calls we use in this block were reported to hang on some machines. // We need to offload the cycle to another thread and keep track of progress to terminate and resume when needed. // Unfortunately, there are no alternative APIs to what we're using that accept timeouts. (NtQueryObject and GetFileType) auto offload_function = std::thread([&] { for (; i < handle_count; i++) { process_handle = NULL; handle_copy = NULL; auto handle_info = info_ptr->Handles + i; auto pid = handle_info->UniqueProcessId; auto iter = pid_to_handle.find(pid); if (iter != pid_to_handle.end()) { process_handle = iter->second; } else { process_handle = OpenProcess(PROCESS_DUP_HANDLE, FALSE, (DWORD)pid); if (!process_handle) { continue; } pid_to_handle[pid] = process_handle; } // According to this: // https://stackoverflow.com/questions/46384048/enumerate-handles // NtQueryObject could hang // TODO uncomment and investigate // if (handle_info->GrantedAccess == 0x0012019f) { // continue; // } HANDLE local_handle_copy; auto dh_result = DuplicateHandle(process_handle, (HANDLE)handle_info->HandleValue, GetCurrentProcess(), &local_handle_copy, 0, 0, DUPLICATE_SAME_ACCESS); if (dh_result == 0) { // Ignore this handle. continue; } handle_copy = local_handle_copy; ULONG return_length; auto status = NtQueryObject(handle_copy, ObjectTypeInformation, object_info_buffer.data(), (ULONG)object_info_buffer.size(), &return_length); if (NT_ERROR(status)) { // Ignore this handle. CloseHandle(handle_copy); handle_copy = NULL; continue; } auto object_type_info = (OBJECT_TYPE_INFORMATION*)object_info_buffer.data(); auto type_name = unicode_to_str(object_type_info->Name); std::wstring file_name; if (type_name == L"File") { file_name = file_handle_to_kernel_name(handle_copy, object_info_buffer); result.push_back(HandleInfo{ pid, handle_info->HandleValue, type_name, file_name }); } CloseHandle(handle_copy); handle_copy = NULL; } }); offload_function.detach(); do { Sleep(200); // Timeout in milliseconds for detecting that the system hang on getting information for a handle. if (i >= handle_count) { // We're done. break; } if (previous_i >= i) { // The thread looks like it's hanging on some handle. Let's kill it and resume. // HACK: This is unsafe and may leak something, but looks like there's no way to properly clean up a thread when it's hanging on a system call. TerminateThread(offload_function.native_handle(), 1); // Close Handles that might be lingering. if (handle_copy!=NULL) { CloseHandle(handle_copy); } i++; break; } previous_i = i; } while (1); } for (auto [pid, handle] : pid_to_handle) { CloseHandle(handle); } return result; } // Returns the list of all processes. // On failure, returns an empty vector. std::wstring NtdllExtensions::pid_to_user(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, FALSE, pid); std::wstring user; std::wstring domain; if (process == nullptr) { return user; } HANDLE token = nullptr; if (!OpenProcessToken(process, TOKEN_QUERY, &token)) { return user; } DWORD token_size = 0; const bool ok = GetTokenInformation(token, TokenUser, nullptr, 0, &token_size); if ((!ok && GetLastError() != ERROR_INSUFFICIENT_BUFFER) || !token_size) { return user; } std::vector<BYTE> token_buffer(token_size); GetTokenInformation(token, TokenUser, token_buffer.data(), token_size, &token_size); TOKEN_USER* user_ptr = (TOKEN_USER*)token_buffer.data(); PSID psid = user_ptr->User.Sid; DWORD user_buf_size = 0; DWORD domain_buf_size = 0; SID_NAME_USE sid_name; LookupAccountSidW(nullptr, psid, nullptr, &user_buf_size, nullptr, &domain_buf_size, &sid_name); if (!user_buf_size || !domain_buf_size) { return user; } user.resize(user_buf_size); domain.resize(domain_buf_size); LookupAccountSidW(nullptr, psid, user.data(), &user_buf_size, domain.data(), &domain_buf_size, &sid_name); user.resize(user.size() - 1); domain.resize(domain.size() - 1); CloseHandle(token); CloseHandle(process); return user; } std::vector<NtdllExtensions::ProcessInfo> NtdllExtensions::processes() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemProcessInformation); if (NT_ERROR(get_info_result.status)) { return {}; } std::vector<ProcessInfo> result; auto info_ptr = (PSYSTEM_PROCESS_INFORMATION)get_info_result.memory.data(); while (info_ptr->NextEntryOffset) { info_ptr = decltype(info_ptr)((LPBYTE)info_ptr + info_ptr->NextEntryOffset); ProcessInfo item; item.name = unicode_to_str(info_ptr->ImageName); item.pid = (DWORD)(uintptr_t)info_ptr->UniqueProcessId; item.modules = process_modules(item.pid); item.user = pid_to_user(item.pid); result.push_back(item); } return result; }
yuyoyuppe
4ebc4cbc0dbb85e7b92fca65816f11a1887f1cc9
5ab83c6ad20652d416459bf88bd095a75316bbbb
Perhaps check GetTokenInformation return as well and && to the GetLastError Part?
jaimecbernardo
221
microsoft/PowerToys
29,745
[PVS] Fix static analyzer findings
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request 1. fixed by introducing a smart wrapper 2. fixed as was suggested by PVS 3. the intention was most likely to unset `WPF_RESTORETOMAXIMIZED` in case of `SW_SHOWMAXIMIZED` 4. memset is redundant here, because `new <type>[<size>]{}`/`new <type>[<size>]()` expressions zero-initialize returned memory (as opposed to `new <type>[<size>]`, yeah...). 5. fixed m_thumbnail_event_handle check 6. according to the `WM_DPICHANGED` docs, the DPI should be obtained from wParam 7. syntax is fixed 8. redundancy is removed 9. redundancy is removed 10. error checking is fixed <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29723 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-08 13:43:06+00:00
2023-11-15 16:38:45+00:00
src/modules/FileLocksmith/FileLocksmithLibInterop/NtdllExtensions.cpp
#include "pch.h" #include "NtdllExtensions.h" #include <thread> #include <atomic> #define STATUS_INFO_LENGTH_MISMATCH ((LONG)0xC0000004) // Calls NtQuerySystemInformation and returns a buffer containing the result. namespace { std::wstring_view unicode_to_view(UNICODE_STRING unicode_str) { return std::wstring_view(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } std::wstring unicode_to_str(UNICODE_STRING unicode_str) { return std::wstring(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } // Implementation adapted from src/common/utils inline std::wstring get_module_name(HANDLE process, HMODULE mod) { wchar_t buffer[MAX_PATH + 1]; DWORD actual_length = GetModuleFileNameExW(process, mod, buffer, MAX_PATH + 1); if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) { const DWORD long_path_length = 0xFFFF; // should be always enough std::wstring long_filename(long_path_length, L'\0'); actual_length = GetModuleFileNameW(mod, long_filename.data(), long_path_length); long_filename.resize(std::wcslen(long_filename.data())); long_filename.shrink_to_fit(); return long_filename; } return { buffer, (UINT)lstrlenW(buffer) }; } constexpr size_t DefaultModulesResultSize = 512; std::vector<std::wstring> process_modules(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, pid); if (!process) { return {}; } std::vector<std::wstring> result; bool completed = false; std::vector<HMODULE> modules(DefaultModulesResultSize); while (!completed) { DWORD needed; auto status = EnumProcessModules(process, modules.data(), static_cast<DWORD>(modules.size() * sizeof(HMODULE)), &needed); if (!status) { // Give up return {}; } if (needed > modules.size() * sizeof(HMODULE)) { // Array is too small modules.resize(needed / sizeof(HMODULE)); continue; } // Okay modules.resize(needed / sizeof(HMODULE)); for (auto mod : modules) { result.push_back(get_module_name(process, mod)); } completed = true; } CloseHandle(process); return result; } } NtdllExtensions::MemoryLoopResult NtdllExtensions::NtQuerySystemInformationMemoryLoop(ULONG SystemInformationClass) { MemoryLoopResult result; result.memory.resize(DefaultResultBufferSize); while (result.memory.size() <= MaxResultBufferSize) { ULONG result_len; result.status = NtQuerySystemInformation(SystemInformationClass, result.memory.data(), (ULONG)result.memory.size(), &result_len); if (result.status == STATUS_INFO_LENGTH_MISMATCH) { result.memory.resize(result.memory.size() * 2); continue; } if (NT_ERROR(result.status)) { result.memory.clear(); } return result; } result.status = STATUS_INFO_LENGTH_MISMATCH; result.memory.clear(); return result; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle, std::vector<BYTE>& buffer) { if (GetFileType(file_handle) != FILE_TYPE_DISK) { return L""; } ULONG return_length; auto status = NtQueryObject(file_handle, ObjectNameInformation, buffer.data(), (ULONG)buffer.size(), &return_length); if (NT_SUCCESS(status)) { auto object_name_info = (UNICODE_STRING*)buffer.data(); return unicode_to_str(*object_name_info); } return L""; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle) { std::vector<BYTE> buffer(DefaultResultBufferSize); return file_handle_to_kernel_name(file_handle, buffer); } std::wstring NtdllExtensions::path_to_kernel_name(LPCWSTR path) { HANDLE file_handle = CreateFileW(path, 0, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL); if (file_handle == INVALID_HANDLE_VALUE) { return {}; } auto kernel_name = file_handle_to_kernel_name(file_handle); CloseHandle(file_handle); return kernel_name; } std::vector<NtdllExtensions::HandleInfo> NtdllExtensions::handles() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemExtendedHandleInformation); if (NT_ERROR(get_info_result.status)) { return {}; } auto info_ptr = (SYSTEM_HANDLE_INFORMATION_EX*)get_info_result.memory.data(); std::map<ULONG_PTR, HANDLE> pid_to_handle; std::vector<HandleInfo> result; std::vector<BYTE> object_info_buffer(DefaultResultBufferSize); std::atomic<ULONG> i = 0; std::atomic<ULONG_PTR> handle_count = info_ptr->NumberOfHandles; std::atomic<HANDLE> process_handle = NULL; std::atomic<HANDLE> handle_copy = NULL; ULONG previous_i; while (i < handle_count) { previous_i = i; // The system calls we use in this block were reported to hang on some machines. // We need to offload the cycle to another thread and keep track of progress to terminate and resume when needed. // Unfortunately, there are no alternative APIs to what we're using that accept timeouts. (NtQueryObject and GetFileType) auto offload_function = std::thread([&] { for (; i < handle_count; i++) { process_handle = NULL; handle_copy = NULL; auto handle_info = info_ptr->Handles + i; auto pid = handle_info->UniqueProcessId; auto iter = pid_to_handle.find(pid); if (iter != pid_to_handle.end()) { process_handle = iter->second; } else { process_handle = OpenProcess(PROCESS_DUP_HANDLE, FALSE, (DWORD)pid); if (!process_handle) { continue; } pid_to_handle[pid] = process_handle; } // According to this: // https://stackoverflow.com/questions/46384048/enumerate-handles // NtQueryObject could hang // TODO uncomment and investigate // if (handle_info->GrantedAccess == 0x0012019f) { // continue; // } HANDLE local_handle_copy; auto dh_result = DuplicateHandle(process_handle, (HANDLE)handle_info->HandleValue, GetCurrentProcess(), &local_handle_copy, 0, 0, DUPLICATE_SAME_ACCESS); if (dh_result == 0) { // Ignore this handle. continue; } handle_copy = local_handle_copy; ULONG return_length; auto status = NtQueryObject(handle_copy, ObjectTypeInformation, object_info_buffer.data(), (ULONG)object_info_buffer.size(), &return_length); if (NT_ERROR(status)) { // Ignore this handle. CloseHandle(handle_copy); handle_copy = NULL; continue; } auto object_type_info = (OBJECT_TYPE_INFORMATION*)object_info_buffer.data(); auto type_name = unicode_to_str(object_type_info->Name); std::wstring file_name; if (type_name == L"File") { file_name = file_handle_to_kernel_name(handle_copy, object_info_buffer); result.push_back(HandleInfo{ pid, handle_info->HandleValue, type_name, file_name }); } CloseHandle(handle_copy); handle_copy = NULL; } }); offload_function.detach(); do { Sleep(200); // Timeout in milliseconds for detecting that the system hang on getting information for a handle. if (i >= handle_count) { // We're done. break; } if (previous_i >= i) { // The thread looks like it's hanging on some handle. Let's kill it and resume. // HACK: This is unsafe and may leak something, but looks like there's no way to properly clean up a thread when it's hanging on a system call. TerminateThread(offload_function.native_handle(), 1); // Close Handles that might be lingering. if (handle_copy!=NULL) { CloseHandle(handle_copy); } i++; break; } previous_i = i; } while (1); } for (auto [pid, handle] : pid_to_handle) { CloseHandle(handle); } return result; } // Returns the list of all processes. // On failure, returns an empty vector. std::wstring NtdllExtensions::pid_to_user(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, FALSE, pid); std::wstring user; std::wstring domain; if (process == nullptr) { return user; } HANDLE token = nullptr; if (!OpenProcessToken(process, TOKEN_QUERY, &token)) { return user; } DWORD token_size = 0; GetTokenInformation(token, TokenUser, nullptr, 0, &token_size); if (token_size < 0) { return user; } std::vector<BYTE> token_buffer(token_size); GetTokenInformation(token, TokenUser, token_buffer.data(), token_size, &token_size); TOKEN_USER* user_ptr = (TOKEN_USER*)token_buffer.data(); PSID psid = user_ptr->User.Sid; DWORD user_buf_size = 0; DWORD domain_buf_size = 0; SID_NAME_USE sid_name; LookupAccountSidW(nullptr, psid, nullptr, &user_buf_size, nullptr, &domain_buf_size, &sid_name); if (!user_buf_size || !domain_buf_size) { return user; } user.resize(user_buf_size); domain.resize(domain_buf_size); LookupAccountSidW(nullptr, psid, user.data(), &user_buf_size, domain.data(), &domain_buf_size, &sid_name); user.resize(user.size() - 1); domain.resize(domain.size() - 1); CloseHandle(token); CloseHandle(process); return user; } std::vector<NtdllExtensions::ProcessInfo> NtdllExtensions::processes() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemProcessInformation); if (NT_ERROR(get_info_result.status)) { return {}; } std::vector<ProcessInfo> result; auto info_ptr = (PSYSTEM_PROCESS_INFORMATION)get_info_result.memory.data(); while (info_ptr->NextEntryOffset) { info_ptr = decltype(info_ptr)((LPBYTE)info_ptr + info_ptr->NextEntryOffset); ProcessInfo item; item.name = unicode_to_str(info_ptr->ImageName); item.pid = (DWORD)(uintptr_t)info_ptr->UniqueProcessId; item.modules = process_modules(item.pid); item.user = pid_to_user(item.pid); result.push_back(item); } return result; }
#include "pch.h" #include "NtdllExtensions.h" #include <thread> #include <atomic> #define STATUS_INFO_LENGTH_MISMATCH ((LONG)0xC0000004) // Calls NtQuerySystemInformation and returns a buffer containing the result. namespace { std::wstring_view unicode_to_view(UNICODE_STRING unicode_str) { return std::wstring_view(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } std::wstring unicode_to_str(UNICODE_STRING unicode_str) { return std::wstring(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } // Implementation adapted from src/common/utils inline std::wstring get_module_name(HANDLE process, HMODULE mod) { wchar_t buffer[MAX_PATH + 1]; DWORD actual_length = GetModuleFileNameExW(process, mod, buffer, MAX_PATH + 1); if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) { const DWORD long_path_length = 0xFFFF; // should be always enough std::wstring long_filename(long_path_length, L'\0'); actual_length = GetModuleFileNameW(mod, long_filename.data(), long_path_length); long_filename.resize(std::wcslen(long_filename.data())); long_filename.shrink_to_fit(); return long_filename; } return { buffer, (UINT)lstrlenW(buffer) }; } constexpr size_t DefaultModulesResultSize = 512; std::vector<std::wstring> process_modules(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, pid); if (!process) { return {}; } std::vector<std::wstring> result; bool completed = false; std::vector<HMODULE> modules(DefaultModulesResultSize); while (!completed) { DWORD needed; auto status = EnumProcessModules(process, modules.data(), static_cast<DWORD>(modules.size() * sizeof(HMODULE)), &needed); if (!status) { // Give up return {}; } if (needed > modules.size() * sizeof(HMODULE)) { // Array is too small modules.resize(needed / sizeof(HMODULE)); continue; } // Okay modules.resize(needed / sizeof(HMODULE)); for (auto mod : modules) { result.push_back(get_module_name(process, mod)); } completed = true; } CloseHandle(process); return result; } } NtdllExtensions::MemoryLoopResult NtdllExtensions::NtQuerySystemInformationMemoryLoop(ULONG SystemInformationClass) { MemoryLoopResult result; result.memory.resize(DefaultResultBufferSize); while (result.memory.size() <= MaxResultBufferSize) { ULONG result_len; result.status = NtQuerySystemInformation(SystemInformationClass, result.memory.data(), (ULONG)result.memory.size(), &result_len); if (result.status == STATUS_INFO_LENGTH_MISMATCH) { result.memory.resize(result.memory.size() * 2); continue; } if (NT_ERROR(result.status)) { result.memory.clear(); } return result; } result.status = STATUS_INFO_LENGTH_MISMATCH; result.memory.clear(); return result; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle, std::vector<BYTE>& buffer) { if (GetFileType(file_handle) != FILE_TYPE_DISK) { return L""; } ULONG return_length; auto status = NtQueryObject(file_handle, ObjectNameInformation, buffer.data(), (ULONG)buffer.size(), &return_length); if (NT_SUCCESS(status)) { auto object_name_info = (UNICODE_STRING*)buffer.data(); return unicode_to_str(*object_name_info); } return L""; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle) { std::vector<BYTE> buffer(DefaultResultBufferSize); return file_handle_to_kernel_name(file_handle, buffer); } std::wstring NtdllExtensions::path_to_kernel_name(LPCWSTR path) { HANDLE file_handle = CreateFileW(path, 0, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL); if (file_handle == INVALID_HANDLE_VALUE) { return {}; } auto kernel_name = file_handle_to_kernel_name(file_handle); CloseHandle(file_handle); return kernel_name; } std::vector<NtdllExtensions::HandleInfo> NtdllExtensions::handles() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemExtendedHandleInformation); if (NT_ERROR(get_info_result.status)) { return {}; } auto info_ptr = (SYSTEM_HANDLE_INFORMATION_EX*)get_info_result.memory.data(); std::map<ULONG_PTR, HANDLE> pid_to_handle; std::vector<HandleInfo> result; std::vector<BYTE> object_info_buffer(DefaultResultBufferSize); std::atomic<ULONG> i = 0; std::atomic<ULONG_PTR> handle_count = info_ptr->NumberOfHandles; std::atomic<HANDLE> process_handle = NULL; std::atomic<HANDLE> handle_copy = NULL; ULONG previous_i; while (i < handle_count) { previous_i = i; // The system calls we use in this block were reported to hang on some machines. // We need to offload the cycle to another thread and keep track of progress to terminate and resume when needed. // Unfortunately, there are no alternative APIs to what we're using that accept timeouts. (NtQueryObject and GetFileType) auto offload_function = std::thread([&] { for (; i < handle_count; i++) { process_handle = NULL; handle_copy = NULL; auto handle_info = info_ptr->Handles + i; auto pid = handle_info->UniqueProcessId; auto iter = pid_to_handle.find(pid); if (iter != pid_to_handle.end()) { process_handle = iter->second; } else { process_handle = OpenProcess(PROCESS_DUP_HANDLE, FALSE, (DWORD)pid); if (!process_handle) { continue; } pid_to_handle[pid] = process_handle; } // According to this: // https://stackoverflow.com/questions/46384048/enumerate-handles // NtQueryObject could hang // TODO uncomment and investigate // if (handle_info->GrantedAccess == 0x0012019f) { // continue; // } HANDLE local_handle_copy; auto dh_result = DuplicateHandle(process_handle, (HANDLE)handle_info->HandleValue, GetCurrentProcess(), &local_handle_copy, 0, 0, DUPLICATE_SAME_ACCESS); if (dh_result == 0) { // Ignore this handle. continue; } handle_copy = local_handle_copy; ULONG return_length; auto status = NtQueryObject(handle_copy, ObjectTypeInformation, object_info_buffer.data(), (ULONG)object_info_buffer.size(), &return_length); if (NT_ERROR(status)) { // Ignore this handle. CloseHandle(handle_copy); handle_copy = NULL; continue; } auto object_type_info = (OBJECT_TYPE_INFORMATION*)object_info_buffer.data(); auto type_name = unicode_to_str(object_type_info->Name); std::wstring file_name; if (type_name == L"File") { file_name = file_handle_to_kernel_name(handle_copy, object_info_buffer); result.push_back(HandleInfo{ pid, handle_info->HandleValue, type_name, file_name }); } CloseHandle(handle_copy); handle_copy = NULL; } }); offload_function.detach(); do { Sleep(200); // Timeout in milliseconds for detecting that the system hang on getting information for a handle. if (i >= handle_count) { // We're done. break; } if (previous_i >= i) { // The thread looks like it's hanging on some handle. Let's kill it and resume. // HACK: This is unsafe and may leak something, but looks like there's no way to properly clean up a thread when it's hanging on a system call. TerminateThread(offload_function.native_handle(), 1); // Close Handles that might be lingering. if (handle_copy!=NULL) { CloseHandle(handle_copy); } i++; break; } previous_i = i; } while (1); } for (auto [pid, handle] : pid_to_handle) { CloseHandle(handle); } return result; } // Returns the list of all processes. // On failure, returns an empty vector. std::wstring NtdllExtensions::pid_to_user(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, FALSE, pid); std::wstring user; std::wstring domain; if (process == nullptr) { return user; } HANDLE token = nullptr; if (!OpenProcessToken(process, TOKEN_QUERY, &token)) { return user; } DWORD token_size = 0; const bool ok = GetTokenInformation(token, TokenUser, nullptr, 0, &token_size); if ((!ok && GetLastError() != ERROR_INSUFFICIENT_BUFFER) || !token_size) { return user; } std::vector<BYTE> token_buffer(token_size); GetTokenInformation(token, TokenUser, token_buffer.data(), token_size, &token_size); TOKEN_USER* user_ptr = (TOKEN_USER*)token_buffer.data(); PSID psid = user_ptr->User.Sid; DWORD user_buf_size = 0; DWORD domain_buf_size = 0; SID_NAME_USE sid_name; LookupAccountSidW(nullptr, psid, nullptr, &user_buf_size, nullptr, &domain_buf_size, &sid_name); if (!user_buf_size || !domain_buf_size) { return user; } user.resize(user_buf_size); domain.resize(domain_buf_size); LookupAccountSidW(nullptr, psid, user.data(), &user_buf_size, domain.data(), &domain_buf_size, &sid_name); user.resize(user.size() - 1); domain.resize(domain.size() - 1); CloseHandle(token); CloseHandle(process); return user; } std::vector<NtdllExtensions::ProcessInfo> NtdllExtensions::processes() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemProcessInformation); if (NT_ERROR(get_info_result.status)) { return {}; } std::vector<ProcessInfo> result; auto info_ptr = (PSYSTEM_PROCESS_INFORMATION)get_info_result.memory.data(); while (info_ptr->NextEntryOffset) { info_ptr = decltype(info_ptr)((LPBYTE)info_ptr + info_ptr->NextEntryOffset); ProcessInfo item; item.name = unicode_to_str(info_ptr->ImageName); item.pid = (DWORD)(uintptr_t)info_ptr->UniqueProcessId; item.modules = process_modules(item.pid); item.user = pid_to_user(item.pid); result.push_back(item); } return result; }
yuyoyuppe
4ebc4cbc0dbb85e7b92fca65816f11a1887f1cc9
5ab83c6ad20652d416459bf88bd095a75316bbbb
```suggestion if ((!ok && GetLastError() != ERROR_INSUFFICIENT_BUFFER) || !token_size) ``` Would this make more sense? We sort of don't want to allocate a 0-sized buffer even if GetTokenInformation is OK.
jaimecbernardo
222
microsoft/PowerToys
29,745
[PVS] Fix static analyzer findings
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request 1. fixed by introducing a smart wrapper 2. fixed as was suggested by PVS 3. the intention was most likely to unset `WPF_RESTORETOMAXIMIZED` in case of `SW_SHOWMAXIMIZED` 4. memset is redundant here, because `new <type>[<size>]{}`/`new <type>[<size>]()` expressions zero-initialize returned memory (as opposed to `new <type>[<size>]`, yeah...). 5. fixed m_thumbnail_event_handle check 6. according to the `WM_DPICHANGED` docs, the DPI should be obtained from wParam 7. syntax is fixed 8. redundancy is removed 9. redundancy is removed 10. error checking is fixed <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29723 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-08 13:43:06+00:00
2023-11-15 16:38:45+00:00
src/modules/FileLocksmith/FileLocksmithLibInterop/NtdllExtensions.cpp
#include "pch.h" #include "NtdllExtensions.h" #include <thread> #include <atomic> #define STATUS_INFO_LENGTH_MISMATCH ((LONG)0xC0000004) // Calls NtQuerySystemInformation and returns a buffer containing the result. namespace { std::wstring_view unicode_to_view(UNICODE_STRING unicode_str) { return std::wstring_view(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } std::wstring unicode_to_str(UNICODE_STRING unicode_str) { return std::wstring(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } // Implementation adapted from src/common/utils inline std::wstring get_module_name(HANDLE process, HMODULE mod) { wchar_t buffer[MAX_PATH + 1]; DWORD actual_length = GetModuleFileNameExW(process, mod, buffer, MAX_PATH + 1); if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) { const DWORD long_path_length = 0xFFFF; // should be always enough std::wstring long_filename(long_path_length, L'\0'); actual_length = GetModuleFileNameW(mod, long_filename.data(), long_path_length); long_filename.resize(std::wcslen(long_filename.data())); long_filename.shrink_to_fit(); return long_filename; } return { buffer, (UINT)lstrlenW(buffer) }; } constexpr size_t DefaultModulesResultSize = 512; std::vector<std::wstring> process_modules(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, pid); if (!process) { return {}; } std::vector<std::wstring> result; bool completed = false; std::vector<HMODULE> modules(DefaultModulesResultSize); while (!completed) { DWORD needed; auto status = EnumProcessModules(process, modules.data(), static_cast<DWORD>(modules.size() * sizeof(HMODULE)), &needed); if (!status) { // Give up return {}; } if (needed > modules.size() * sizeof(HMODULE)) { // Array is too small modules.resize(needed / sizeof(HMODULE)); continue; } // Okay modules.resize(needed / sizeof(HMODULE)); for (auto mod : modules) { result.push_back(get_module_name(process, mod)); } completed = true; } CloseHandle(process); return result; } } NtdllExtensions::MemoryLoopResult NtdllExtensions::NtQuerySystemInformationMemoryLoop(ULONG SystemInformationClass) { MemoryLoopResult result; result.memory.resize(DefaultResultBufferSize); while (result.memory.size() <= MaxResultBufferSize) { ULONG result_len; result.status = NtQuerySystemInformation(SystemInformationClass, result.memory.data(), (ULONG)result.memory.size(), &result_len); if (result.status == STATUS_INFO_LENGTH_MISMATCH) { result.memory.resize(result.memory.size() * 2); continue; } if (NT_ERROR(result.status)) { result.memory.clear(); } return result; } result.status = STATUS_INFO_LENGTH_MISMATCH; result.memory.clear(); return result; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle, std::vector<BYTE>& buffer) { if (GetFileType(file_handle) != FILE_TYPE_DISK) { return L""; } ULONG return_length; auto status = NtQueryObject(file_handle, ObjectNameInformation, buffer.data(), (ULONG)buffer.size(), &return_length); if (NT_SUCCESS(status)) { auto object_name_info = (UNICODE_STRING*)buffer.data(); return unicode_to_str(*object_name_info); } return L""; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle) { std::vector<BYTE> buffer(DefaultResultBufferSize); return file_handle_to_kernel_name(file_handle, buffer); } std::wstring NtdllExtensions::path_to_kernel_name(LPCWSTR path) { HANDLE file_handle = CreateFileW(path, 0, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL); if (file_handle == INVALID_HANDLE_VALUE) { return {}; } auto kernel_name = file_handle_to_kernel_name(file_handle); CloseHandle(file_handle); return kernel_name; } std::vector<NtdllExtensions::HandleInfo> NtdllExtensions::handles() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemExtendedHandleInformation); if (NT_ERROR(get_info_result.status)) { return {}; } auto info_ptr = (SYSTEM_HANDLE_INFORMATION_EX*)get_info_result.memory.data(); std::map<ULONG_PTR, HANDLE> pid_to_handle; std::vector<HandleInfo> result; std::vector<BYTE> object_info_buffer(DefaultResultBufferSize); std::atomic<ULONG> i = 0; std::atomic<ULONG_PTR> handle_count = info_ptr->NumberOfHandles; std::atomic<HANDLE> process_handle = NULL; std::atomic<HANDLE> handle_copy = NULL; ULONG previous_i; while (i < handle_count) { previous_i = i; // The system calls we use in this block were reported to hang on some machines. // We need to offload the cycle to another thread and keep track of progress to terminate and resume when needed. // Unfortunately, there are no alternative APIs to what we're using that accept timeouts. (NtQueryObject and GetFileType) auto offload_function = std::thread([&] { for (; i < handle_count; i++) { process_handle = NULL; handle_copy = NULL; auto handle_info = info_ptr->Handles + i; auto pid = handle_info->UniqueProcessId; auto iter = pid_to_handle.find(pid); if (iter != pid_to_handle.end()) { process_handle = iter->second; } else { process_handle = OpenProcess(PROCESS_DUP_HANDLE, FALSE, (DWORD)pid); if (!process_handle) { continue; } pid_to_handle[pid] = process_handle; } // According to this: // https://stackoverflow.com/questions/46384048/enumerate-handles // NtQueryObject could hang // TODO uncomment and investigate // if (handle_info->GrantedAccess == 0x0012019f) { // continue; // } HANDLE local_handle_copy; auto dh_result = DuplicateHandle(process_handle, (HANDLE)handle_info->HandleValue, GetCurrentProcess(), &local_handle_copy, 0, 0, DUPLICATE_SAME_ACCESS); if (dh_result == 0) { // Ignore this handle. continue; } handle_copy = local_handle_copy; ULONG return_length; auto status = NtQueryObject(handle_copy, ObjectTypeInformation, object_info_buffer.data(), (ULONG)object_info_buffer.size(), &return_length); if (NT_ERROR(status)) { // Ignore this handle. CloseHandle(handle_copy); handle_copy = NULL; continue; } auto object_type_info = (OBJECT_TYPE_INFORMATION*)object_info_buffer.data(); auto type_name = unicode_to_str(object_type_info->Name); std::wstring file_name; if (type_name == L"File") { file_name = file_handle_to_kernel_name(handle_copy, object_info_buffer); result.push_back(HandleInfo{ pid, handle_info->HandleValue, type_name, file_name }); } CloseHandle(handle_copy); handle_copy = NULL; } }); offload_function.detach(); do { Sleep(200); // Timeout in milliseconds for detecting that the system hang on getting information for a handle. if (i >= handle_count) { // We're done. break; } if (previous_i >= i) { // The thread looks like it's hanging on some handle. Let's kill it and resume. // HACK: This is unsafe and may leak something, but looks like there's no way to properly clean up a thread when it's hanging on a system call. TerminateThread(offload_function.native_handle(), 1); // Close Handles that might be lingering. if (handle_copy!=NULL) { CloseHandle(handle_copy); } i++; break; } previous_i = i; } while (1); } for (auto [pid, handle] : pid_to_handle) { CloseHandle(handle); } return result; } // Returns the list of all processes. // On failure, returns an empty vector. std::wstring NtdllExtensions::pid_to_user(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, FALSE, pid); std::wstring user; std::wstring domain; if (process == nullptr) { return user; } HANDLE token = nullptr; if (!OpenProcessToken(process, TOKEN_QUERY, &token)) { return user; } DWORD token_size = 0; GetTokenInformation(token, TokenUser, nullptr, 0, &token_size); if (token_size < 0) { return user; } std::vector<BYTE> token_buffer(token_size); GetTokenInformation(token, TokenUser, token_buffer.data(), token_size, &token_size); TOKEN_USER* user_ptr = (TOKEN_USER*)token_buffer.data(); PSID psid = user_ptr->User.Sid; DWORD user_buf_size = 0; DWORD domain_buf_size = 0; SID_NAME_USE sid_name; LookupAccountSidW(nullptr, psid, nullptr, &user_buf_size, nullptr, &domain_buf_size, &sid_name); if (!user_buf_size || !domain_buf_size) { return user; } user.resize(user_buf_size); domain.resize(domain_buf_size); LookupAccountSidW(nullptr, psid, user.data(), &user_buf_size, domain.data(), &domain_buf_size, &sid_name); user.resize(user.size() - 1); domain.resize(domain.size() - 1); CloseHandle(token); CloseHandle(process); return user; } std::vector<NtdllExtensions::ProcessInfo> NtdllExtensions::processes() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemProcessInformation); if (NT_ERROR(get_info_result.status)) { return {}; } std::vector<ProcessInfo> result; auto info_ptr = (PSYSTEM_PROCESS_INFORMATION)get_info_result.memory.data(); while (info_ptr->NextEntryOffset) { info_ptr = decltype(info_ptr)((LPBYTE)info_ptr + info_ptr->NextEntryOffset); ProcessInfo item; item.name = unicode_to_str(info_ptr->ImageName); item.pid = (DWORD)(uintptr_t)info_ptr->UniqueProcessId; item.modules = process_modules(item.pid); item.user = pid_to_user(item.pid); result.push_back(item); } return result; }
#include "pch.h" #include "NtdllExtensions.h" #include <thread> #include <atomic> #define STATUS_INFO_LENGTH_MISMATCH ((LONG)0xC0000004) // Calls NtQuerySystemInformation and returns a buffer containing the result. namespace { std::wstring_view unicode_to_view(UNICODE_STRING unicode_str) { return std::wstring_view(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } std::wstring unicode_to_str(UNICODE_STRING unicode_str) { return std::wstring(unicode_str.Buffer, unicode_str.Length / sizeof(WCHAR)); } // Implementation adapted from src/common/utils inline std::wstring get_module_name(HANDLE process, HMODULE mod) { wchar_t buffer[MAX_PATH + 1]; DWORD actual_length = GetModuleFileNameExW(process, mod, buffer, MAX_PATH + 1); if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) { const DWORD long_path_length = 0xFFFF; // should be always enough std::wstring long_filename(long_path_length, L'\0'); actual_length = GetModuleFileNameW(mod, long_filename.data(), long_path_length); long_filename.resize(std::wcslen(long_filename.data())); long_filename.shrink_to_fit(); return long_filename; } return { buffer, (UINT)lstrlenW(buffer) }; } constexpr size_t DefaultModulesResultSize = 512; std::vector<std::wstring> process_modules(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, pid); if (!process) { return {}; } std::vector<std::wstring> result; bool completed = false; std::vector<HMODULE> modules(DefaultModulesResultSize); while (!completed) { DWORD needed; auto status = EnumProcessModules(process, modules.data(), static_cast<DWORD>(modules.size() * sizeof(HMODULE)), &needed); if (!status) { // Give up return {}; } if (needed > modules.size() * sizeof(HMODULE)) { // Array is too small modules.resize(needed / sizeof(HMODULE)); continue; } // Okay modules.resize(needed / sizeof(HMODULE)); for (auto mod : modules) { result.push_back(get_module_name(process, mod)); } completed = true; } CloseHandle(process); return result; } } NtdllExtensions::MemoryLoopResult NtdllExtensions::NtQuerySystemInformationMemoryLoop(ULONG SystemInformationClass) { MemoryLoopResult result; result.memory.resize(DefaultResultBufferSize); while (result.memory.size() <= MaxResultBufferSize) { ULONG result_len; result.status = NtQuerySystemInformation(SystemInformationClass, result.memory.data(), (ULONG)result.memory.size(), &result_len); if (result.status == STATUS_INFO_LENGTH_MISMATCH) { result.memory.resize(result.memory.size() * 2); continue; } if (NT_ERROR(result.status)) { result.memory.clear(); } return result; } result.status = STATUS_INFO_LENGTH_MISMATCH; result.memory.clear(); return result; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle, std::vector<BYTE>& buffer) { if (GetFileType(file_handle) != FILE_TYPE_DISK) { return L""; } ULONG return_length; auto status = NtQueryObject(file_handle, ObjectNameInformation, buffer.data(), (ULONG)buffer.size(), &return_length); if (NT_SUCCESS(status)) { auto object_name_info = (UNICODE_STRING*)buffer.data(); return unicode_to_str(*object_name_info); } return L""; } std::wstring NtdllExtensions::file_handle_to_kernel_name(HANDLE file_handle) { std::vector<BYTE> buffer(DefaultResultBufferSize); return file_handle_to_kernel_name(file_handle, buffer); } std::wstring NtdllExtensions::path_to_kernel_name(LPCWSTR path) { HANDLE file_handle = CreateFileW(path, 0, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL); if (file_handle == INVALID_HANDLE_VALUE) { return {}; } auto kernel_name = file_handle_to_kernel_name(file_handle); CloseHandle(file_handle); return kernel_name; } std::vector<NtdllExtensions::HandleInfo> NtdllExtensions::handles() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemExtendedHandleInformation); if (NT_ERROR(get_info_result.status)) { return {}; } auto info_ptr = (SYSTEM_HANDLE_INFORMATION_EX*)get_info_result.memory.data(); std::map<ULONG_PTR, HANDLE> pid_to_handle; std::vector<HandleInfo> result; std::vector<BYTE> object_info_buffer(DefaultResultBufferSize); std::atomic<ULONG> i = 0; std::atomic<ULONG_PTR> handle_count = info_ptr->NumberOfHandles; std::atomic<HANDLE> process_handle = NULL; std::atomic<HANDLE> handle_copy = NULL; ULONG previous_i; while (i < handle_count) { previous_i = i; // The system calls we use in this block were reported to hang on some machines. // We need to offload the cycle to another thread and keep track of progress to terminate and resume when needed. // Unfortunately, there are no alternative APIs to what we're using that accept timeouts. (NtQueryObject and GetFileType) auto offload_function = std::thread([&] { for (; i < handle_count; i++) { process_handle = NULL; handle_copy = NULL; auto handle_info = info_ptr->Handles + i; auto pid = handle_info->UniqueProcessId; auto iter = pid_to_handle.find(pid); if (iter != pid_to_handle.end()) { process_handle = iter->second; } else { process_handle = OpenProcess(PROCESS_DUP_HANDLE, FALSE, (DWORD)pid); if (!process_handle) { continue; } pid_to_handle[pid] = process_handle; } // According to this: // https://stackoverflow.com/questions/46384048/enumerate-handles // NtQueryObject could hang // TODO uncomment and investigate // if (handle_info->GrantedAccess == 0x0012019f) { // continue; // } HANDLE local_handle_copy; auto dh_result = DuplicateHandle(process_handle, (HANDLE)handle_info->HandleValue, GetCurrentProcess(), &local_handle_copy, 0, 0, DUPLICATE_SAME_ACCESS); if (dh_result == 0) { // Ignore this handle. continue; } handle_copy = local_handle_copy; ULONG return_length; auto status = NtQueryObject(handle_copy, ObjectTypeInformation, object_info_buffer.data(), (ULONG)object_info_buffer.size(), &return_length); if (NT_ERROR(status)) { // Ignore this handle. CloseHandle(handle_copy); handle_copy = NULL; continue; } auto object_type_info = (OBJECT_TYPE_INFORMATION*)object_info_buffer.data(); auto type_name = unicode_to_str(object_type_info->Name); std::wstring file_name; if (type_name == L"File") { file_name = file_handle_to_kernel_name(handle_copy, object_info_buffer); result.push_back(HandleInfo{ pid, handle_info->HandleValue, type_name, file_name }); } CloseHandle(handle_copy); handle_copy = NULL; } }); offload_function.detach(); do { Sleep(200); // Timeout in milliseconds for detecting that the system hang on getting information for a handle. if (i >= handle_count) { // We're done. break; } if (previous_i >= i) { // The thread looks like it's hanging on some handle. Let's kill it and resume. // HACK: This is unsafe and may leak something, but looks like there's no way to properly clean up a thread when it's hanging on a system call. TerminateThread(offload_function.native_handle(), 1); // Close Handles that might be lingering. if (handle_copy!=NULL) { CloseHandle(handle_copy); } i++; break; } previous_i = i; } while (1); } for (auto [pid, handle] : pid_to_handle) { CloseHandle(handle); } return result; } // Returns the list of all processes. // On failure, returns an empty vector. std::wstring NtdllExtensions::pid_to_user(DWORD pid) { HANDLE process = OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, FALSE, pid); std::wstring user; std::wstring domain; if (process == nullptr) { return user; } HANDLE token = nullptr; if (!OpenProcessToken(process, TOKEN_QUERY, &token)) { return user; } DWORD token_size = 0; const bool ok = GetTokenInformation(token, TokenUser, nullptr, 0, &token_size); if ((!ok && GetLastError() != ERROR_INSUFFICIENT_BUFFER) || !token_size) { return user; } std::vector<BYTE> token_buffer(token_size); GetTokenInformation(token, TokenUser, token_buffer.data(), token_size, &token_size); TOKEN_USER* user_ptr = (TOKEN_USER*)token_buffer.data(); PSID psid = user_ptr->User.Sid; DWORD user_buf_size = 0; DWORD domain_buf_size = 0; SID_NAME_USE sid_name; LookupAccountSidW(nullptr, psid, nullptr, &user_buf_size, nullptr, &domain_buf_size, &sid_name); if (!user_buf_size || !domain_buf_size) { return user; } user.resize(user_buf_size); domain.resize(domain_buf_size); LookupAccountSidW(nullptr, psid, user.data(), &user_buf_size, domain.data(), &domain_buf_size, &sid_name); user.resize(user.size() - 1); domain.resize(domain.size() - 1); CloseHandle(token); CloseHandle(process); return user; } std::vector<NtdllExtensions::ProcessInfo> NtdllExtensions::processes() noexcept { auto get_info_result = NtQuerySystemInformationMemoryLoop(SystemProcessInformation); if (NT_ERROR(get_info_result.status)) { return {}; } std::vector<ProcessInfo> result; auto info_ptr = (PSYSTEM_PROCESS_INFORMATION)get_info_result.memory.data(); while (info_ptr->NextEntryOffset) { info_ptr = decltype(info_ptr)((LPBYTE)info_ptr + info_ptr->NextEntryOffset); ProcessInfo item; item.name = unicode_to_str(info_ptr->ImageName); item.pid = (DWORD)(uintptr_t)info_ptr->UniqueProcessId; item.modules = process_modules(item.pid); item.user = pid_to_user(item.pid); result.push_back(item); } return result; }
yuyoyuppe
4ebc4cbc0dbb85e7b92fca65816f11a1887f1cc9
5ab83c6ad20652d416459bf88bd095a75316bbbb
It's currently done according to this documentation paragraph, but it should be fine either way. > A pointer to a variable that receives the number of bytes needed for the buffer pointed to by the TokenInformation parameter. If this value is larger than the value specified in the TokenInformationLength parameter, the function fails and stores no data in the buffer.
yuyoyuppe
223
microsoft/PowerToys
29,745
[PVS] Fix static analyzer findings
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request 1. fixed by introducing a smart wrapper 2. fixed as was suggested by PVS 3. the intention was most likely to unset `WPF_RESTORETOMAXIMIZED` in case of `SW_SHOWMAXIMIZED` 4. memset is redundant here, because `new <type>[<size>]{}`/`new <type>[<size>]()` expressions zero-initialize returned memory (as opposed to `new <type>[<size>]`, yeah...). 5. fixed m_thumbnail_event_handle check 6. according to the `WM_DPICHANGED` docs, the DPI should be obtained from wParam 7. syntax is fixed 8. redundancy is removed 9. redundancy is removed 10. error checking is fixed <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29723 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-08 13:43:06+00:00
2023-11-15 16:38:45+00:00
src/modules/MeasureTool/MeasureToolCore/MeasureToolOverlayUI.cpp
#include "pch.h" #include "BGRATextureView.h" #include "Clipboard.h" #include "CoordinateSystemConversion.h" #include "constants.h" #include "MeasureToolOverlayUI.h" #include <common/utils/window.h> namespace { inline std::pair<D2D_POINT_2F, D2D_POINT_2F> ComputeCrossFeetLine(D2D_POINT_2F center, const bool horizontal) { D2D_POINT_2F start = center, end = center; // Computing in this way to achieve pixel-perfect axial symmetry of aliased D2D lines if (horizontal) { start.x -= consts::FEET_HALF_LENGTH; end.x += consts::FEET_HALF_LENGTH + 1.f; } else { start.y -= consts::FEET_HALF_LENGTH; end.y += consts::FEET_HALF_LENGTH + 1.f; } return { start, end }; } } winrt::com_ptr<ID2D1Bitmap> ConvertID3D11Texture2DToD2D1Bitmap(winrt::com_ptr<ID2D1RenderTarget> rt, const MappedTextureView* capturedScreenTexture) { capturedScreenTexture->view.pixels; D2D1_BITMAP_PROPERTIES props = { .pixelFormat = rt->GetPixelFormat() }; rt->GetDpi(&props.dpiX, &props.dpiY); const auto sizeF = rt->GetSize(); winrt::com_ptr<ID2D1Bitmap> bitmap; auto hr = rt->CreateBitmap(D2D1::SizeU(static_cast<uint32_t>(capturedScreenTexture->view.width), static_cast<uint32_t>(capturedScreenTexture->view.height)), capturedScreenTexture->view.pixels, static_cast<uint32_t>(capturedScreenTexture->view.pitch * 4), props, bitmap.put()); if (FAILED(hr)) return nullptr; return bitmap; } LRESULT CALLBACK MeasureToolWndProc(HWND window, UINT message, WPARAM wparam, LPARAM lparam) noexcept { switch (message) { case WM_MOUSELEAVE: case WM_CURSOR_LEFT_MONITOR: { if (auto state = GetWindowParam<Serialized<MeasureToolState>*>(window)) { state->Access([&](MeasureToolState& s) { s.perScreen[window].measuredEdges = {}; }); } break; } case WM_NCHITTEST: return HTCLIENT; case WM_CREATE: { auto state = GetWindowCreateParam<Serialized<MeasureToolState>*>(lparam); StoreWindowParam(window, state); #if !defined(DEBUG_OVERLAY) for (; ShowCursor(false) >= 0;) ; #endif break; } case WM_ERASEBKGND: return 1; case WM_KEYUP: if (wparam == VK_ESCAPE) { PostMessageW(window, WM_CLOSE, {}, {}); } break; case WM_RBUTTONUP: PostMessageW(window, WM_CLOSE, {}, {}); break; case WM_LBUTTONUP: if (auto state = GetWindowParam<Serialized<MeasureToolState>*>(window)) { state->Read([](const MeasureToolState& s) { s.commonState->overlayBoxText.Read([](const OverlayBoxText& text) { SetClipBoardToText(text.buffer.data()); }); }); } PostMessageW(window, WM_CLOSE, {}, {}); break; case WM_MOUSEWHEEL: if (auto state = GetWindowParam<Serialized<MeasureToolState>*>(window)) { const int8_t step = static_cast<short>(HIWORD(wparam)) < 0 ? -consts::MOUSE_WHEEL_TOLERANCE_STEP : consts::MOUSE_WHEEL_TOLERANCE_STEP; state->Access([step](MeasureToolState& s) { int wideVal = s.global.pixelTolerance; wideVal += step; s.global.pixelTolerance = static_cast<uint8_t>(std::clamp(wideVal, 0, 255)); }); } break; } return DefWindowProcW(window, message, wparam, lparam); } void DrawMeasureToolTick(const CommonState& commonState, Serialized<MeasureToolState>& toolState, HWND window, D2DState& d2dState) { bool continuousCapture = {}; bool drawFeetOnCross = {}; bool drawHorizontalCrossLine = true; bool drawVerticalCrossLine = true; Measurement measuredEdges{}; MeasureToolState::Mode mode = {}; winrt::com_ptr<ID2D1Bitmap> backgroundBitmap; const MappedTextureView* backgroundTextureToConvert = nullptr; bool gotMeasurement = false; toolState.Read([&](const MeasureToolState& state) { continuousCapture = state.global.continuousCapture; drawFeetOnCross = state.global.drawFeetOnCross; mode = state.global.mode; if (auto it = state.perScreen.find(window); it != end(state.perScreen)) { const auto& perScreen = it->second; if (!perScreen.measuredEdges) { return; } gotMeasurement = true; measuredEdges = *perScreen.measuredEdges; if (continuousCapture) return; if (perScreen.capturedScreenBitmap) { backgroundBitmap = perScreen.capturedScreenBitmap; } else if (perScreen.capturedScreenTexture) { backgroundTextureToConvert = perScreen.capturedScreenTexture; } } }); if (!gotMeasurement) return; switch (mode) { case MeasureToolState::Mode::Cross: drawHorizontalCrossLine = true; drawVerticalCrossLine = true; break; case MeasureToolState::Mode::Vertical: drawHorizontalCrossLine = false; drawVerticalCrossLine = true; break; case MeasureToolState::Mode::Horizontal: drawHorizontalCrossLine = true; drawVerticalCrossLine = false; break; } if (!continuousCapture && !backgroundBitmap && backgroundTextureToConvert) { backgroundBitmap = ConvertID3D11Texture2DToD2D1Bitmap(d2dState.dxgiWindowState.rt, backgroundTextureToConvert); if (backgroundBitmap) { toolState.Access([&](MeasureToolState& state) { state.perScreen[window].capturedScreenTexture = {}; state.perScreen[window].capturedScreenBitmap = backgroundBitmap; }); } } if (continuousCapture || !backgroundBitmap) d2dState.dxgiWindowState.rt->Clear(); const float hMeasure = measuredEdges.Width(Measurement::Unit::Pixel); const float vMeasure = measuredEdges.Height(Measurement::Unit::Pixel); if (!continuousCapture && backgroundBitmap) { d2dState.dxgiWindowState.rt->DrawBitmap(backgroundBitmap.get()); } const auto cursorPos = convert::FromSystemToWindow(window, commonState.cursorPosSystemSpace); d2dState.ToggleAliasedLinesMode(true); if (drawHorizontalCrossLine) { const D2D_POINT_2F hLineStart{ .x = measuredEdges.rect.left, .y = static_cast<float>(cursorPos.y) }; D2D_POINT_2F hLineEnd{ .x = hLineStart.x + hMeasure, .y = hLineStart.y }; d2dState.dxgiWindowState.rt->DrawLine(hLineStart, hLineEnd, d2dState.solidBrushes[Brush::line].get()); if (drawFeetOnCross) { // To fill all pixels which are close, we call DrawLine with end point one pixel too far, since // it doesn't get filled, i.e. end point of the range is excluded. However, we want to draw cross // feet *on* the last pixel row, so we must subtract 1px from the corresponding axis. hLineEnd.x -= 1.f; auto [left_start, left_end] = ComputeCrossFeetLine(hLineStart, false); auto [right_start, right_end] = ComputeCrossFeetLine(hLineEnd, false); d2dState.dxgiWindowState.rt->DrawLine(left_start, left_end, d2dState.solidBrushes[Brush::line].get()); d2dState.dxgiWindowState.rt->DrawLine(right_start, right_end, d2dState.solidBrushes[Brush::line].get()); } } if (drawVerticalCrossLine) { const D2D_POINT_2F vLineStart{ .x = static_cast<float>(cursorPos.x), .y = measuredEdges.rect.top }; D2D_POINT_2F vLineEnd{ .x = vLineStart.x, .y = vLineStart.y + vMeasure }; d2dState.dxgiWindowState.rt->DrawLine(vLineStart, vLineEnd, d2dState.solidBrushes[Brush::line].get()); if (drawFeetOnCross) { vLineEnd.y -= 1.f; auto [top_start, top_end] = ComputeCrossFeetLine(vLineStart, true); auto [bottom_start, bottom_end] = ComputeCrossFeetLine(vLineEnd, true); d2dState.dxgiWindowState.rt->DrawLine(top_start, top_end, d2dState.solidBrushes[Brush::line].get()); d2dState.dxgiWindowState.rt->DrawLine(bottom_start, bottom_end, d2dState.solidBrushes[Brush::line].get()); } } d2dState.ToggleAliasedLinesMode(false); OverlayBoxText text; const auto [crossSymbolPos, measureStringBufLen] = measuredEdges.Print(text.buffer.data(), text.buffer.size(), drawHorizontalCrossLine, drawVerticalCrossLine, commonState.units); commonState.overlayBoxText.Access([&](OverlayBoxText& v) { v = text; }); d2dState.DrawTextBox(text.buffer.data(), measureStringBufLen, crossSymbolPos, D2D_POINT_2F{ static_cast<float>(cursorPos.x), static_cast<float>(cursorPos.y) }, true, window); }
#include "pch.h" #include "BGRATextureView.h" #include "Clipboard.h" #include "CoordinateSystemConversion.h" #include "constants.h" #include "MeasureToolOverlayUI.h" #include <common/utils/window.h> namespace { inline std::pair<D2D_POINT_2F, D2D_POINT_2F> ComputeCrossFeetLine(D2D_POINT_2F center, const bool horizontal) { D2D_POINT_2F start = center, end = center; // Computing in this way to achieve pixel-perfect axial symmetry of aliased D2D lines if (horizontal) { start.x -= consts::FEET_HALF_LENGTH; end.x += consts::FEET_HALF_LENGTH + 1.f; } else { start.y -= consts::FEET_HALF_LENGTH; end.y += consts::FEET_HALF_LENGTH + 1.f; } return { start, end }; } } winrt::com_ptr<ID2D1Bitmap> ConvertID3D11Texture2DToD2D1Bitmap(winrt::com_ptr<ID2D1RenderTarget> rt, const MappedTextureView* capturedScreenTexture) { D2D1_BITMAP_PROPERTIES props = { .pixelFormat = rt->GetPixelFormat() }; rt->GetDpi(&props.dpiX, &props.dpiY); const auto sizeF = rt->GetSize(); winrt::com_ptr<ID2D1Bitmap> bitmap; auto hr = rt->CreateBitmap(D2D1::SizeU(static_cast<uint32_t>(capturedScreenTexture->view.width), static_cast<uint32_t>(capturedScreenTexture->view.height)), capturedScreenTexture->view.pixels, static_cast<uint32_t>(capturedScreenTexture->view.pitch * 4), props, bitmap.put()); if (FAILED(hr)) return nullptr; return bitmap; } LRESULT CALLBACK MeasureToolWndProc(HWND window, UINT message, WPARAM wparam, LPARAM lparam) noexcept { switch (message) { case WM_MOUSELEAVE: case WM_CURSOR_LEFT_MONITOR: { if (auto state = GetWindowParam<Serialized<MeasureToolState>*>(window)) { state->Access([&](MeasureToolState& s) { s.perScreen[window].measuredEdges = {}; }); } break; } case WM_NCHITTEST: return HTCLIENT; case WM_CREATE: { auto state = GetWindowCreateParam<Serialized<MeasureToolState>*>(lparam); StoreWindowParam(window, state); #if !defined(DEBUG_OVERLAY) for (; ShowCursor(false) >= 0;) ; #endif break; } case WM_ERASEBKGND: return 1; case WM_KEYUP: if (wparam == VK_ESCAPE) { PostMessageW(window, WM_CLOSE, {}, {}); } break; case WM_RBUTTONUP: PostMessageW(window, WM_CLOSE, {}, {}); break; case WM_LBUTTONUP: if (auto state = GetWindowParam<Serialized<MeasureToolState>*>(window)) { state->Read([](const MeasureToolState& s) { s.commonState->overlayBoxText.Read([](const OverlayBoxText& text) { SetClipBoardToText(text.buffer.data()); }); }); } PostMessageW(window, WM_CLOSE, {}, {}); break; case WM_MOUSEWHEEL: if (auto state = GetWindowParam<Serialized<MeasureToolState>*>(window)) { const int8_t step = static_cast<short>(HIWORD(wparam)) < 0 ? -consts::MOUSE_WHEEL_TOLERANCE_STEP : consts::MOUSE_WHEEL_TOLERANCE_STEP; state->Access([step](MeasureToolState& s) { int wideVal = s.global.pixelTolerance; wideVal += step; s.global.pixelTolerance = static_cast<uint8_t>(std::clamp(wideVal, 0, 255)); }); } break; } return DefWindowProcW(window, message, wparam, lparam); } void DrawMeasureToolTick(const CommonState& commonState, Serialized<MeasureToolState>& toolState, HWND window, D2DState& d2dState) { bool continuousCapture = {}; bool drawFeetOnCross = {}; bool drawHorizontalCrossLine = true; bool drawVerticalCrossLine = true; Measurement measuredEdges{}; MeasureToolState::Mode mode = {}; winrt::com_ptr<ID2D1Bitmap> backgroundBitmap; const MappedTextureView* backgroundTextureToConvert = nullptr; bool gotMeasurement = false; toolState.Read([&](const MeasureToolState& state) { continuousCapture = state.global.continuousCapture; drawFeetOnCross = state.global.drawFeetOnCross; mode = state.global.mode; if (auto it = state.perScreen.find(window); it != end(state.perScreen)) { const auto& perScreen = it->second; if (!perScreen.measuredEdges) { return; } gotMeasurement = true; measuredEdges = *perScreen.measuredEdges; if (continuousCapture) return; if (perScreen.capturedScreenBitmap) { backgroundBitmap = perScreen.capturedScreenBitmap; } else if (perScreen.capturedScreenTexture) { backgroundTextureToConvert = perScreen.capturedScreenTexture; } } }); if (!gotMeasurement) return; switch (mode) { case MeasureToolState::Mode::Cross: drawHorizontalCrossLine = true; drawVerticalCrossLine = true; break; case MeasureToolState::Mode::Vertical: drawHorizontalCrossLine = false; drawVerticalCrossLine = true; break; case MeasureToolState::Mode::Horizontal: drawHorizontalCrossLine = true; drawVerticalCrossLine = false; break; } if (!continuousCapture && !backgroundBitmap && backgroundTextureToConvert) { backgroundBitmap = ConvertID3D11Texture2DToD2D1Bitmap(d2dState.dxgiWindowState.rt, backgroundTextureToConvert); if (backgroundBitmap) { toolState.Access([&](MeasureToolState& state) { state.perScreen[window].capturedScreenTexture = {}; state.perScreen[window].capturedScreenBitmap = backgroundBitmap; }); } } if (continuousCapture || !backgroundBitmap) d2dState.dxgiWindowState.rt->Clear(); const float hMeasure = measuredEdges.Width(Measurement::Unit::Pixel); const float vMeasure = measuredEdges.Height(Measurement::Unit::Pixel); if (!continuousCapture && backgroundBitmap) { d2dState.dxgiWindowState.rt->DrawBitmap(backgroundBitmap.get()); } const auto cursorPos = convert::FromSystemToWindow(window, commonState.cursorPosSystemSpace); d2dState.ToggleAliasedLinesMode(true); if (drawHorizontalCrossLine) { const D2D_POINT_2F hLineStart{ .x = measuredEdges.rect.left, .y = static_cast<float>(cursorPos.y) }; D2D_POINT_2F hLineEnd{ .x = hLineStart.x + hMeasure, .y = hLineStart.y }; d2dState.dxgiWindowState.rt->DrawLine(hLineStart, hLineEnd, d2dState.solidBrushes[Brush::line].get()); if (drawFeetOnCross) { // To fill all pixels which are close, we call DrawLine with end point one pixel too far, since // it doesn't get filled, i.e. end point of the range is excluded. However, we want to draw cross // feet *on* the last pixel row, so we must subtract 1px from the corresponding axis. hLineEnd.x -= 1.f; auto [left_start, left_end] = ComputeCrossFeetLine(hLineStart, false); auto [right_start, right_end] = ComputeCrossFeetLine(hLineEnd, false); d2dState.dxgiWindowState.rt->DrawLine(left_start, left_end, d2dState.solidBrushes[Brush::line].get()); d2dState.dxgiWindowState.rt->DrawLine(right_start, right_end, d2dState.solidBrushes[Brush::line].get()); } } if (drawVerticalCrossLine) { const D2D_POINT_2F vLineStart{ .x = static_cast<float>(cursorPos.x), .y = measuredEdges.rect.top }; D2D_POINT_2F vLineEnd{ .x = vLineStart.x, .y = vLineStart.y + vMeasure }; d2dState.dxgiWindowState.rt->DrawLine(vLineStart, vLineEnd, d2dState.solidBrushes[Brush::line].get()); if (drawFeetOnCross) { vLineEnd.y -= 1.f; auto [top_start, top_end] = ComputeCrossFeetLine(vLineStart, true); auto [bottom_start, bottom_end] = ComputeCrossFeetLine(vLineEnd, true); d2dState.dxgiWindowState.rt->DrawLine(top_start, top_end, d2dState.solidBrushes[Brush::line].get()); d2dState.dxgiWindowState.rt->DrawLine(bottom_start, bottom_end, d2dState.solidBrushes[Brush::line].get()); } } d2dState.ToggleAliasedLinesMode(false); OverlayBoxText text; const auto [crossSymbolPos, measureStringBufLen] = measuredEdges.Print(text.buffer.data(), text.buffer.size(), drawHorizontalCrossLine, drawVerticalCrossLine, commonState.units); commonState.overlayBoxText.Access([&](OverlayBoxText& v) { v = text; }); d2dState.DrawTextBox(text.buffer.data(), measureStringBufLen, crossSymbolPos, D2D_POINT_2F{ static_cast<float>(cursorPos.x), static_cast<float>(cursorPos.y) }, true, window); }
yuyoyuppe
4ebc4cbc0dbb85e7b92fca65816f11a1887f1cc9
5ab83c6ad20652d416459bf88bd095a75316bbbb
Is this really safe to remove? Was this not there to force a read to initialize something? This was your original code, right @yuyoyuppe ?
jaimecbernardo
224
microsoft/PowerToys
29,745
[PVS] Fix static analyzer findings
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request 1. fixed by introducing a smart wrapper 2. fixed as was suggested by PVS 3. the intention was most likely to unset `WPF_RESTORETOMAXIMIZED` in case of `SW_SHOWMAXIMIZED` 4. memset is redundant here, because `new <type>[<size>]{}`/`new <type>[<size>]()` expressions zero-initialize returned memory (as opposed to `new <type>[<size>]`, yeah...). 5. fixed m_thumbnail_event_handle check 6. according to the `WM_DPICHANGED` docs, the DPI should be obtained from wParam 7. syntax is fixed 8. redundancy is removed 9. redundancy is removed 10. error checking is fixed <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #29723 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-11-08 13:43:06+00:00
2023-11-15 16:38:45+00:00
src/modules/MeasureTool/MeasureToolCore/MeasureToolOverlayUI.cpp
#include "pch.h" #include "BGRATextureView.h" #include "Clipboard.h" #include "CoordinateSystemConversion.h" #include "constants.h" #include "MeasureToolOverlayUI.h" #include <common/utils/window.h> namespace { inline std::pair<D2D_POINT_2F, D2D_POINT_2F> ComputeCrossFeetLine(D2D_POINT_2F center, const bool horizontal) { D2D_POINT_2F start = center, end = center; // Computing in this way to achieve pixel-perfect axial symmetry of aliased D2D lines if (horizontal) { start.x -= consts::FEET_HALF_LENGTH; end.x += consts::FEET_HALF_LENGTH + 1.f; } else { start.y -= consts::FEET_HALF_LENGTH; end.y += consts::FEET_HALF_LENGTH + 1.f; } return { start, end }; } } winrt::com_ptr<ID2D1Bitmap> ConvertID3D11Texture2DToD2D1Bitmap(winrt::com_ptr<ID2D1RenderTarget> rt, const MappedTextureView* capturedScreenTexture) { capturedScreenTexture->view.pixels; D2D1_BITMAP_PROPERTIES props = { .pixelFormat = rt->GetPixelFormat() }; rt->GetDpi(&props.dpiX, &props.dpiY); const auto sizeF = rt->GetSize(); winrt::com_ptr<ID2D1Bitmap> bitmap; auto hr = rt->CreateBitmap(D2D1::SizeU(static_cast<uint32_t>(capturedScreenTexture->view.width), static_cast<uint32_t>(capturedScreenTexture->view.height)), capturedScreenTexture->view.pixels, static_cast<uint32_t>(capturedScreenTexture->view.pitch * 4), props, bitmap.put()); if (FAILED(hr)) return nullptr; return bitmap; } LRESULT CALLBACK MeasureToolWndProc(HWND window, UINT message, WPARAM wparam, LPARAM lparam) noexcept { switch (message) { case WM_MOUSELEAVE: case WM_CURSOR_LEFT_MONITOR: { if (auto state = GetWindowParam<Serialized<MeasureToolState>*>(window)) { state->Access([&](MeasureToolState& s) { s.perScreen[window].measuredEdges = {}; }); } break; } case WM_NCHITTEST: return HTCLIENT; case WM_CREATE: { auto state = GetWindowCreateParam<Serialized<MeasureToolState>*>(lparam); StoreWindowParam(window, state); #if !defined(DEBUG_OVERLAY) for (; ShowCursor(false) >= 0;) ; #endif break; } case WM_ERASEBKGND: return 1; case WM_KEYUP: if (wparam == VK_ESCAPE) { PostMessageW(window, WM_CLOSE, {}, {}); } break; case WM_RBUTTONUP: PostMessageW(window, WM_CLOSE, {}, {}); break; case WM_LBUTTONUP: if (auto state = GetWindowParam<Serialized<MeasureToolState>*>(window)) { state->Read([](const MeasureToolState& s) { s.commonState->overlayBoxText.Read([](const OverlayBoxText& text) { SetClipBoardToText(text.buffer.data()); }); }); } PostMessageW(window, WM_CLOSE, {}, {}); break; case WM_MOUSEWHEEL: if (auto state = GetWindowParam<Serialized<MeasureToolState>*>(window)) { const int8_t step = static_cast<short>(HIWORD(wparam)) < 0 ? -consts::MOUSE_WHEEL_TOLERANCE_STEP : consts::MOUSE_WHEEL_TOLERANCE_STEP; state->Access([step](MeasureToolState& s) { int wideVal = s.global.pixelTolerance; wideVal += step; s.global.pixelTolerance = static_cast<uint8_t>(std::clamp(wideVal, 0, 255)); }); } break; } return DefWindowProcW(window, message, wparam, lparam); } void DrawMeasureToolTick(const CommonState& commonState, Serialized<MeasureToolState>& toolState, HWND window, D2DState& d2dState) { bool continuousCapture = {}; bool drawFeetOnCross = {}; bool drawHorizontalCrossLine = true; bool drawVerticalCrossLine = true; Measurement measuredEdges{}; MeasureToolState::Mode mode = {}; winrt::com_ptr<ID2D1Bitmap> backgroundBitmap; const MappedTextureView* backgroundTextureToConvert = nullptr; bool gotMeasurement = false; toolState.Read([&](const MeasureToolState& state) { continuousCapture = state.global.continuousCapture; drawFeetOnCross = state.global.drawFeetOnCross; mode = state.global.mode; if (auto it = state.perScreen.find(window); it != end(state.perScreen)) { const auto& perScreen = it->second; if (!perScreen.measuredEdges) { return; } gotMeasurement = true; measuredEdges = *perScreen.measuredEdges; if (continuousCapture) return; if (perScreen.capturedScreenBitmap) { backgroundBitmap = perScreen.capturedScreenBitmap; } else if (perScreen.capturedScreenTexture) { backgroundTextureToConvert = perScreen.capturedScreenTexture; } } }); if (!gotMeasurement) return; switch (mode) { case MeasureToolState::Mode::Cross: drawHorizontalCrossLine = true; drawVerticalCrossLine = true; break; case MeasureToolState::Mode::Vertical: drawHorizontalCrossLine = false; drawVerticalCrossLine = true; break; case MeasureToolState::Mode::Horizontal: drawHorizontalCrossLine = true; drawVerticalCrossLine = false; break; } if (!continuousCapture && !backgroundBitmap && backgroundTextureToConvert) { backgroundBitmap = ConvertID3D11Texture2DToD2D1Bitmap(d2dState.dxgiWindowState.rt, backgroundTextureToConvert); if (backgroundBitmap) { toolState.Access([&](MeasureToolState& state) { state.perScreen[window].capturedScreenTexture = {}; state.perScreen[window].capturedScreenBitmap = backgroundBitmap; }); } } if (continuousCapture || !backgroundBitmap) d2dState.dxgiWindowState.rt->Clear(); const float hMeasure = measuredEdges.Width(Measurement::Unit::Pixel); const float vMeasure = measuredEdges.Height(Measurement::Unit::Pixel); if (!continuousCapture && backgroundBitmap) { d2dState.dxgiWindowState.rt->DrawBitmap(backgroundBitmap.get()); } const auto cursorPos = convert::FromSystemToWindow(window, commonState.cursorPosSystemSpace); d2dState.ToggleAliasedLinesMode(true); if (drawHorizontalCrossLine) { const D2D_POINT_2F hLineStart{ .x = measuredEdges.rect.left, .y = static_cast<float>(cursorPos.y) }; D2D_POINT_2F hLineEnd{ .x = hLineStart.x + hMeasure, .y = hLineStart.y }; d2dState.dxgiWindowState.rt->DrawLine(hLineStart, hLineEnd, d2dState.solidBrushes[Brush::line].get()); if (drawFeetOnCross) { // To fill all pixels which are close, we call DrawLine with end point one pixel too far, since // it doesn't get filled, i.e. end point of the range is excluded. However, we want to draw cross // feet *on* the last pixel row, so we must subtract 1px from the corresponding axis. hLineEnd.x -= 1.f; auto [left_start, left_end] = ComputeCrossFeetLine(hLineStart, false); auto [right_start, right_end] = ComputeCrossFeetLine(hLineEnd, false); d2dState.dxgiWindowState.rt->DrawLine(left_start, left_end, d2dState.solidBrushes[Brush::line].get()); d2dState.dxgiWindowState.rt->DrawLine(right_start, right_end, d2dState.solidBrushes[Brush::line].get()); } } if (drawVerticalCrossLine) { const D2D_POINT_2F vLineStart{ .x = static_cast<float>(cursorPos.x), .y = measuredEdges.rect.top }; D2D_POINT_2F vLineEnd{ .x = vLineStart.x, .y = vLineStart.y + vMeasure }; d2dState.dxgiWindowState.rt->DrawLine(vLineStart, vLineEnd, d2dState.solidBrushes[Brush::line].get()); if (drawFeetOnCross) { vLineEnd.y -= 1.f; auto [top_start, top_end] = ComputeCrossFeetLine(vLineStart, true); auto [bottom_start, bottom_end] = ComputeCrossFeetLine(vLineEnd, true); d2dState.dxgiWindowState.rt->DrawLine(top_start, top_end, d2dState.solidBrushes[Brush::line].get()); d2dState.dxgiWindowState.rt->DrawLine(bottom_start, bottom_end, d2dState.solidBrushes[Brush::line].get()); } } d2dState.ToggleAliasedLinesMode(false); OverlayBoxText text; const auto [crossSymbolPos, measureStringBufLen] = measuredEdges.Print(text.buffer.data(), text.buffer.size(), drawHorizontalCrossLine, drawVerticalCrossLine, commonState.units); commonState.overlayBoxText.Access([&](OverlayBoxText& v) { v = text; }); d2dState.DrawTextBox(text.buffer.data(), measureStringBufLen, crossSymbolPos, D2D_POINT_2F{ static_cast<float>(cursorPos.x), static_cast<float>(cursorPos.y) }, true, window); }
#include "pch.h" #include "BGRATextureView.h" #include "Clipboard.h" #include "CoordinateSystemConversion.h" #include "constants.h" #include "MeasureToolOverlayUI.h" #include <common/utils/window.h> namespace { inline std::pair<D2D_POINT_2F, D2D_POINT_2F> ComputeCrossFeetLine(D2D_POINT_2F center, const bool horizontal) { D2D_POINT_2F start = center, end = center; // Computing in this way to achieve pixel-perfect axial symmetry of aliased D2D lines if (horizontal) { start.x -= consts::FEET_HALF_LENGTH; end.x += consts::FEET_HALF_LENGTH + 1.f; } else { start.y -= consts::FEET_HALF_LENGTH; end.y += consts::FEET_HALF_LENGTH + 1.f; } return { start, end }; } } winrt::com_ptr<ID2D1Bitmap> ConvertID3D11Texture2DToD2D1Bitmap(winrt::com_ptr<ID2D1RenderTarget> rt, const MappedTextureView* capturedScreenTexture) { D2D1_BITMAP_PROPERTIES props = { .pixelFormat = rt->GetPixelFormat() }; rt->GetDpi(&props.dpiX, &props.dpiY); const auto sizeF = rt->GetSize(); winrt::com_ptr<ID2D1Bitmap> bitmap; auto hr = rt->CreateBitmap(D2D1::SizeU(static_cast<uint32_t>(capturedScreenTexture->view.width), static_cast<uint32_t>(capturedScreenTexture->view.height)), capturedScreenTexture->view.pixels, static_cast<uint32_t>(capturedScreenTexture->view.pitch * 4), props, bitmap.put()); if (FAILED(hr)) return nullptr; return bitmap; } LRESULT CALLBACK MeasureToolWndProc(HWND window, UINT message, WPARAM wparam, LPARAM lparam) noexcept { switch (message) { case WM_MOUSELEAVE: case WM_CURSOR_LEFT_MONITOR: { if (auto state = GetWindowParam<Serialized<MeasureToolState>*>(window)) { state->Access([&](MeasureToolState& s) { s.perScreen[window].measuredEdges = {}; }); } break; } case WM_NCHITTEST: return HTCLIENT; case WM_CREATE: { auto state = GetWindowCreateParam<Serialized<MeasureToolState>*>(lparam); StoreWindowParam(window, state); #if !defined(DEBUG_OVERLAY) for (; ShowCursor(false) >= 0;) ; #endif break; } case WM_ERASEBKGND: return 1; case WM_KEYUP: if (wparam == VK_ESCAPE) { PostMessageW(window, WM_CLOSE, {}, {}); } break; case WM_RBUTTONUP: PostMessageW(window, WM_CLOSE, {}, {}); break; case WM_LBUTTONUP: if (auto state = GetWindowParam<Serialized<MeasureToolState>*>(window)) { state->Read([](const MeasureToolState& s) { s.commonState->overlayBoxText.Read([](const OverlayBoxText& text) { SetClipBoardToText(text.buffer.data()); }); }); } PostMessageW(window, WM_CLOSE, {}, {}); break; case WM_MOUSEWHEEL: if (auto state = GetWindowParam<Serialized<MeasureToolState>*>(window)) { const int8_t step = static_cast<short>(HIWORD(wparam)) < 0 ? -consts::MOUSE_WHEEL_TOLERANCE_STEP : consts::MOUSE_WHEEL_TOLERANCE_STEP; state->Access([step](MeasureToolState& s) { int wideVal = s.global.pixelTolerance; wideVal += step; s.global.pixelTolerance = static_cast<uint8_t>(std::clamp(wideVal, 0, 255)); }); } break; } return DefWindowProcW(window, message, wparam, lparam); } void DrawMeasureToolTick(const CommonState& commonState, Serialized<MeasureToolState>& toolState, HWND window, D2DState& d2dState) { bool continuousCapture = {}; bool drawFeetOnCross = {}; bool drawHorizontalCrossLine = true; bool drawVerticalCrossLine = true; Measurement measuredEdges{}; MeasureToolState::Mode mode = {}; winrt::com_ptr<ID2D1Bitmap> backgroundBitmap; const MappedTextureView* backgroundTextureToConvert = nullptr; bool gotMeasurement = false; toolState.Read([&](const MeasureToolState& state) { continuousCapture = state.global.continuousCapture; drawFeetOnCross = state.global.drawFeetOnCross; mode = state.global.mode; if (auto it = state.perScreen.find(window); it != end(state.perScreen)) { const auto& perScreen = it->second; if (!perScreen.measuredEdges) { return; } gotMeasurement = true; measuredEdges = *perScreen.measuredEdges; if (continuousCapture) return; if (perScreen.capturedScreenBitmap) { backgroundBitmap = perScreen.capturedScreenBitmap; } else if (perScreen.capturedScreenTexture) { backgroundTextureToConvert = perScreen.capturedScreenTexture; } } }); if (!gotMeasurement) return; switch (mode) { case MeasureToolState::Mode::Cross: drawHorizontalCrossLine = true; drawVerticalCrossLine = true; break; case MeasureToolState::Mode::Vertical: drawHorizontalCrossLine = false; drawVerticalCrossLine = true; break; case MeasureToolState::Mode::Horizontal: drawHorizontalCrossLine = true; drawVerticalCrossLine = false; break; } if (!continuousCapture && !backgroundBitmap && backgroundTextureToConvert) { backgroundBitmap = ConvertID3D11Texture2DToD2D1Bitmap(d2dState.dxgiWindowState.rt, backgroundTextureToConvert); if (backgroundBitmap) { toolState.Access([&](MeasureToolState& state) { state.perScreen[window].capturedScreenTexture = {}; state.perScreen[window].capturedScreenBitmap = backgroundBitmap; }); } } if (continuousCapture || !backgroundBitmap) d2dState.dxgiWindowState.rt->Clear(); const float hMeasure = measuredEdges.Width(Measurement::Unit::Pixel); const float vMeasure = measuredEdges.Height(Measurement::Unit::Pixel); if (!continuousCapture && backgroundBitmap) { d2dState.dxgiWindowState.rt->DrawBitmap(backgroundBitmap.get()); } const auto cursorPos = convert::FromSystemToWindow(window, commonState.cursorPosSystemSpace); d2dState.ToggleAliasedLinesMode(true); if (drawHorizontalCrossLine) { const D2D_POINT_2F hLineStart{ .x = measuredEdges.rect.left, .y = static_cast<float>(cursorPos.y) }; D2D_POINT_2F hLineEnd{ .x = hLineStart.x + hMeasure, .y = hLineStart.y }; d2dState.dxgiWindowState.rt->DrawLine(hLineStart, hLineEnd, d2dState.solidBrushes[Brush::line].get()); if (drawFeetOnCross) { // To fill all pixels which are close, we call DrawLine with end point one pixel too far, since // it doesn't get filled, i.e. end point of the range is excluded. However, we want to draw cross // feet *on* the last pixel row, so we must subtract 1px from the corresponding axis. hLineEnd.x -= 1.f; auto [left_start, left_end] = ComputeCrossFeetLine(hLineStart, false); auto [right_start, right_end] = ComputeCrossFeetLine(hLineEnd, false); d2dState.dxgiWindowState.rt->DrawLine(left_start, left_end, d2dState.solidBrushes[Brush::line].get()); d2dState.dxgiWindowState.rt->DrawLine(right_start, right_end, d2dState.solidBrushes[Brush::line].get()); } } if (drawVerticalCrossLine) { const D2D_POINT_2F vLineStart{ .x = static_cast<float>(cursorPos.x), .y = measuredEdges.rect.top }; D2D_POINT_2F vLineEnd{ .x = vLineStart.x, .y = vLineStart.y + vMeasure }; d2dState.dxgiWindowState.rt->DrawLine(vLineStart, vLineEnd, d2dState.solidBrushes[Brush::line].get()); if (drawFeetOnCross) { vLineEnd.y -= 1.f; auto [top_start, top_end] = ComputeCrossFeetLine(vLineStart, true); auto [bottom_start, bottom_end] = ComputeCrossFeetLine(vLineEnd, true); d2dState.dxgiWindowState.rt->DrawLine(top_start, top_end, d2dState.solidBrushes[Brush::line].get()); d2dState.dxgiWindowState.rt->DrawLine(bottom_start, bottom_end, d2dState.solidBrushes[Brush::line].get()); } } d2dState.ToggleAliasedLinesMode(false); OverlayBoxText text; const auto [crossSymbolPos, measureStringBufLen] = measuredEdges.Print(text.buffer.data(), text.buffer.size(), drawHorizontalCrossLine, drawVerticalCrossLine, commonState.units); commonState.overlayBoxText.Access([&](OverlayBoxText& v) { v = text; }); d2dState.DrawTextBox(text.buffer.data(), measureStringBufLen, crossSymbolPos, D2D_POINT_2F{ static_cast<float>(cursorPos.x), static_cast<float>(cursorPos.y) }, true, window); }
yuyoyuppe
4ebc4cbc0dbb85e7b92fca65816f11a1887f1cc9
5ab83c6ad20652d416459bf88bd095a75316bbbb
Yeah, it's originally my code. My guess is that the initial idea was to make a dedicated variable for the pointer, since it's used on line 43, but then it didn't make sense, because clang-format formatted it in such a way so it didn't matter. So this is just a leftover that I've forgot to remove. It doesn't force anything, and the line will be optimized away entirely by the compiler, since none of these classes overload `operator->`.
yuyoyuppe
225
microsoft/PowerToys
29,735
Adds QoiThumbnailProvider and QoiPreviewHandler
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds a new thumbnail provider and preview handler for qoi files (Quite Ok Images). ### Thumbnails ![image](https://github.com/microsoft/PowerToys/assets/85504/6fa0eed2-1359-4c37-bdb5-80e798cc3aae) ### Preview ![image](https://github.com/microsoft/PowerToys/assets/85504/0771e87e-c7a1-4c45-bab7-98295717241f) ### Settings ![image](https://github.com/microsoft/PowerToys/assets/85504/17e0f037-7448-4104-baa9-6b83208fdfc5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #29742 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [X] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [X] **New binaries:** Added on the required places - [X] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [X] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [x] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Local install and manual validation
null
2023-11-07 19:33:33+00:00
2023-11-14 15:41:10+00:00
PowerToys.sln
Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.32014.148 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "runner", "src\runner\runner.vcxproj", "{9412D5C6-2CF2-4FC2-A601-B55508EA9B27}" ProjectSection(ProjectDependencies) = postProject {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} = {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} = {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} {0B593A6C-4143-4337-860E-DB5710FB87DB} = {0B593A6C-4143-4337-860E-DB5710FB87DB} {17DA04DF-E393-4397-9CF0-84DABE11032E} = {17DA04DF-E393-4397-9CF0-84DABE11032E} {217DF501-135C-4E38-BFC8-99D4821032EA} = {217DF501-135C-4E38-BFC8-99D4821032EA} {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} = {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} {48804216-2A0E-4168-A6D8-9CD068D14227} = {48804216-2A0E-4168-A6D8-9CD068D14227} {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} = {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} = {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} {655C9AF2-18D3-4DA6-80E4-85504A7722BA} = {655C9AF2-18D3-4DA6-80E4-85504A7722BA} {69E1EE8D-143A-4060-9129-4658ACF14AAF} = {69E1EE8D-143A-4060-9129-4658ACF14AAF} {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} = {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} = {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} {AF2349B8-E5B6-4004-9502-687C1C7730B1} = {AF2349B8-E5B6-4004-9502-687C1C7730B1} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {B25AC7A5-FB9F-4789-B392-D5C85E948670} {BA58206B-1493-4C75-BFEA-A85768A1E156} = {BA58206B-1493-4C75-BFEA-A85768A1E156} {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D} = {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D} {D940E07F-532C-4FF3-883F-790DA014F19A} = {D940E07F-532C-4FF3-883F-790DA014F19A} {DA425894-6E13-404F-8DCB-78584EC0557A} = {DA425894-6E13-404F-8DCB-78584EC0557A} {E364F67B-BB12-4E91-B639-355866EBCD8B} = {E364F67B-BB12-4E91-B639-355866EBCD8B} {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "modules", "modules", "{4574FDD0-F61D-4376-98BF-E5A1262C11EC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "interface", "interface", "{3BB8493E-D18E-4485-A320-CB40F90F55AE}" ProjectSection(SolutionItems) = preProject src\modules\interface\powertoy_module_interface.h = src\modules\interface\powertoy_module_interface.h EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "fancyzones", "fancyzones", "{D1D6BC88-09AE-4FB4-AD24-5DED46A791DD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZonesLib", "src\modules\fancyzones\FancyZonesLib\FancyZonesLib.vcxproj", "{F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnitTests-FancyZones", "src\modules\fancyzones\FancyZonesTests\UnitTests\UnitTests.vcxproj", "{9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}" ProjectSection(ProjectDependencies) = postProject {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "common", "common", "{1AFB6476-670D-4E80-A464-657E01DFF482}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnitTests-CommonLib", "src\common\UnitTests-CommonLib\UnitTests-CommonLib.vcxproj", "{1A066C63-64B3-45F8-92FE-664E1CCE8077}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FancyZonesEditor", "src\modules\fancyzones\editor\FancyZonesEditor\FancyZonesEditor.csproj", "{5CCC8468-DEC8-4D36-99D4-5C891BEBD481}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "powerrename", "powerrename", "{89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameExt", "src\modules\powerrename\dll\PowerRenameExt.vcxproj", "{B25AC7A5-FB9F-4789-B392-D5C85E948670}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameLib", "src\modules\powerrename\lib\PowerRenameLib.vcxproj", "{51920F1F-C28C-4ADF-8660-4238766796C2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameTest", "src\modules\powerrename\testapp\PowerRenameTest.vcxproj", "{A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameUnitTests", "src\modules\powerrename\unittests\PowerRenameLibUnitTests.vcxproj", "{2151F984-E006-4A9F-92EF-C6DDE3DC8413}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {B25AC7A5-FB9F-4789-B392-D5C85E948670} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ModuleTemplateCompileTest", "tools\project_template\ModuleTemplate\ModuleTemplateCompileTest.vcxproj", "{64A80062-4D8B-4229-8A38-DFA1D7497749}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManager", "src\modules\keyboardmanager\dll\KeyboardManager.vcxproj", "{89F34AF7-1C34-4A72-AA6E-534BCF972BD9}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "imageresizer", "imageresizer", "{6C7F47CC-2151-44A3-A546-41C70025132C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageResizerUI", "src\modules\imageresizer\ui\ImageResizerUI.csproj", "{2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerExt", "src\modules\imageresizer\dll\ImageResizerExt.vcxproj", "{0B43679E-EDFA-4DA0-AD30-F4628B308B1B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageResizerUITest", "src\modules\imageresizer\tests\ImageResizerUITest.csproj", "{E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.ActionRunner", "src\ActionRunner\ActionRunner.vcxproj", "{D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}" ProjectSection(ProjectDependencies) = postProject {17DA04DF-E393-4397-9CF0-84DABE11032E} = {17DA04DF-E393-4397-9CF0-84DABE11032E} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ApplicationUpdate", "src\common\updating\updating.vcxproj", "{17DA04DF-E393-4397-9CF0-84DABE11032E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "keyboardmanager", "keyboardmanager", "{38BDB927-829B-4C65-9CD9-93FB05D66D65}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerCommon", "src\modules\keyboardmanager\common\KeyboardManagerCommon.vcxproj", "{8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "launcher", "launcher", "{C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Infrastructure", "src\modules\launcher\Wox.Infrastructure\Wox.Infrastructure.csproj", "{4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin", "src\modules\launcher\Wox.Plugin\Wox.Plugin.csproj", "{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Test", "src\modules\launcher\Wox.Test\Wox.Test.csproj", "{FF742965-9A80-41A5-B042-D6C7D3A21708}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{4AFC9975-2456-4C70-94A4-84073C1CED93}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Calculator", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Calculator\Microsoft.PowerToys.Run.Plugin.Calculator.csproj", "{59BD9891-3837-438A-958D-ADC7F91F6F7E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.VSCodeWorkspaces", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.VSCodeWorkspaces\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.csproj", "{4D971245-7A70-41D5-BAA0-DDB5684CAF51}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowWalker", "src\modules\launcher\Plugins\Microsoft.Plugin.WindowWalker\Microsoft.Plugin.WindowWalker.csproj", "{74F1B9ED-F59C-4FE7-B473-7B453E30837E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Program", "src\modules\launcher\Plugins\Microsoft.Plugin.Program\Microsoft.Plugin.Program.csproj", "{FDB3555B-58EF-4AE6-B5F1-904719637AB4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Shell", "src\modules\launcher\Plugins\Microsoft.Plugin.Shell\Microsoft.Plugin.Shell.csproj", "{C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Indexer", "src\modules\launcher\Plugins\Microsoft.Plugin.Indexer\Microsoft.Plugin.Indexer.csproj", "{F8B870EB-D5F5-45BA-9CF7-A5C459818820}" ProjectSection(ProjectDependencies) = postProject {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} = {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.Launcher", "src\modules\launcher\Microsoft.Launcher\Microsoft.Launcher.vcxproj", "{E364F67B-BB12-4E91-B639-355866EBCD8B}" ProjectSection(ProjectDependencies) = postProject {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} = {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerLauncher", "src\modules\launcher\PowerLauncher\PowerLauncher.csproj", "{F97E5003-F263-4D4A-A964-0F1F3C82DEF2}" ProjectSection(ProjectDependencies) = postProject {03276A39-D4E9-417C-8FFD-200B0EE5E871} = {03276A39-D4E9-417C-8FFD-200B0EE5E871} {0351ADA4-0C32-4652-9BA0-41F7B602372B} = {0351ADA4-0C32-4652-9BA0-41F7B602372B} {4BABF3FE-3451-42FD-873F-3C332E18DCEF} = {4BABF3FE-3451-42FD-873F-3C332E18DCEF} {4D971245-7A70-41D5-BAA0-DDB5684CAF51} = {4D971245-7A70-41D5-BAA0-DDB5684CAF51} {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} = {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {5043CECE-E6A7-4867-9CBE-02D27D83747A} {59BD9891-3837-438A-958D-ADC7F91F6F7E} = {59BD9891-3837-438A-958D-ADC7F91F6F7E} {5A1DB2F0-0715-4B3B-98E6-79BC41540045} = {5A1DB2F0-0715-4B3B-98E6-79BC41540045} {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} = {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} {74F1B9ED-F59C-4FE7-B473-7B453E30837E} = {74F1B9ED-F59C-4FE7-B473-7B453E30837E} {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} = {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} {9F94B303-5E21-4364-9362-64426F8DB932} = {9F94B303-5E21-4364-9362-64426F8DB932} {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} = {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} = {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} = {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} {D095BE44-1F2E-463E-A494-121892A75EA2} = {D095BE44-1F2E-463E-A494-121892A75EA2} {F8B870EB-D5F5-45BA-9CF7-A5C459818820} = {F8B870EB-D5F5-45BA-9CF7-A5C459818820} {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} = {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {FDB3555B-58EF-4AE6-B5F1-904719637AB4} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{E775CC2C-24CB-48D6-9C3A-BE4CCE0DB17A}" ProjectSection(SolutionItems) = preProject src\tests\win-app-driver\README.md = src\tests\win-app-driver\README.md EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "previewpane", "previewpane", "{2F305555-C296-497E-AC20-5FA1B237996A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PreviewHandlerCommon", "src\modules\previewpane\Common\PreviewHandlerCommon.csproj", "{AF2349B8-E5B6-4004-9502-687C1C7730B1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MarkdownPreviewHandler", "src\modules\previewpane\MarkdownPreviewHandler\MarkdownPreviewHandler.csproj", "{6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-MarkdownPreviewHandler", "src\modules\previewpane\UnitTests-MarkdownPreviewHandler\UnitTests-MarkdownPreviewHandler.csproj", "{A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SvgPreviewHandler", "src\modules\previewpane\SvgPreviewHandler\SvgPreviewHandler.csproj", "{DA425894-6E13-404F-8DCB-78584EC0557A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-SvgPreviewHandler", "src\modules\previewpane\UnitTests-SvgPreviewHandler\UnitTests-SvgPreviewHandler.csproj", "{060D75DA-2D1C-48E6-A4A1-6F0718B64661}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PreviewHandlerCommon", "src\modules\previewpane\UnitTests-PreviewHandlerCommon\UnitTests-PreviewHandlerCommon.csproj", "{748417CA-F17E-487F-9411-CAFB6D3F4877}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "powerpreview", "src\modules\previewpane\powerpreview\powerpreview.vcxproj", "{217DF501-135C-4E38-BFC8-99D4821032EA}" ProjectSection(ProjectDependencies) = postProject {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "settings-ui", "settings-ui", "{C3081D9A-1586-441A-B5F4-ED815B3719C1}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4981CCD1-4CD9-4A49-B240-00AA46493FF8}" ProjectSection(SolutionItems) = preProject src\.editorconfig = src\.editorconfig .vsconfig = .vsconfig Directory.Build.props = Directory.Build.props Directory.Build.targets = Directory.Build.targets Directory.Packages.props = Directory.Packages.props Solution.props = Solution.props EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Settings.UI.Library", "src\settings-ui\Settings.UI.Library\Settings.UI.Library.csproj", "{B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.Interop", "src\common\interop\PowerToys.Interop.vcxproj", "{F055103B-F80B-4D0C-BF48-057C55620033}" ProjectSection(ProjectDependencies) = postProject {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Folder", "src\modules\launcher\Plugins\Microsoft.Plugin.Folder\Microsoft.Plugin.Folder.csproj", "{787B8AA6-CA93-4C84-96FE-DF31110AD1C4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerLauncher.Telemetry", "src\modules\launcher\PowerLauncher.Telemetry\PowerLauncher.Telemetry.csproj", "{08C8C05F-0362-41BC-818C-724572DF8B06}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedTelemetry", "src\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj", "{5D00D290-4016-4CFE-9E41-1E7C724509BA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedCommon", "src\common\ManagedCommon\ManagedCommon.csproj", "{4AED67B6-55FD-486F-B917-E543DEE2CB3C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Program.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Program.UnitTests\Microsoft.Plugin.Program.UnitTests.csproj", "{42851751-CBC8-45A6-97F5-7A0753F7B4D1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-SvgThumbnailProvider", "src\modules\previewpane\UnitTests-SvgThumbnailProvider\UnitTests-SvgThumbnailProvider.csproj", "{1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SvgThumbnailProvider", "src\modules\previewpane\SvgThumbnailProvider\SvgThumbnailProvider.csproj", "{8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ColorPicker", "src\modules\colorPicker\ColorPicker\ColorPicker.vcxproj", "{655C9AF2-18D3-4DA6-80E4-85504A7722BA}" ProjectSection(ProjectDependencies) = postProject {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} = {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ColorPickerUI", "src\modules\colorPicker\ColorPickerUI\ColorPickerUI.csproj", "{BA58206B-1493-4C75-BFEA-A85768A1E156}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "colorpicker", "colorpicker", "{1D78B84B-CA39-406C-98F4-71F7EC266CC0}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Uri", "src\modules\launcher\Plugins\Microsoft.Plugin.Uri\Microsoft.Plugin.Uri.csproj", "{03276A39-D4E9-417C-8FFD-200B0EE5E871}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Uri.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Uri.UnitTests\Microsoft.Plugin.Uri.UnitTests.csproj", "{B81FB7B6-D30E-428F-908A-41422EFC1172}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Settings.UI.UnitTests", "src\settings-ui\Settings.UI.UnitTests\Settings.UI.UnitTests.csproj", "{0F85E674-34AE-443D-954C-8321EB8B93B1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.csproj", "{632BBE62-5421-49EA-835A-7FFA4F499BD6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Folder.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Folder.UnitTests\Microsoft.Plugin.Folder.UnitTests.csproj", "{4FA206A5-F69F-4193-BF8F-F6EEB496734C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTest-ColorPickerUI", "src\modules\colorPicker\UnitTest-ColorPickerUI\UnitTest-ColorPickerUI.csproj", "{090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "spdlog", "src\logging\logging.vcxproj", "{7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.System", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.System\Microsoft.PowerToys.Run.Plugin.System.csproj", "{FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.System.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.System.UnitTests\Microsoft.PowerToys.Run.Plugin.System.UnitTests.csproj", "{DA5A6FE9-0040-40CC-83CC-764AE5306590}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Service", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Service\Microsoft.PowerToys.Run.Plugin.Service.csproj", "{0351ADA4-0C32-4652-9BA0-41F7B602372B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "logger", "src\common\logger\logger.vcxproj", "{D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}" ProjectSection(ProjectDependencies) = postProject {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} = {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SettingsAPI", "src\common\SettingsAPI\SettingsAPI.vcxproj", "{6955446D-23F7-4023-9BB3-8657F904AF99}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Interop.Tests", "src\common\interop\interop-tests\Microsoft.Interop.Tests.csproj", "{58736667-1027-4AD7-BFDF-7A3A6474103A}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "notifications", "notifications", "{D92131D6-7610-4D60-A7DB-1C169783F83B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Notifications", "src\common\notifications\notifications.vcxproj", "{1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BackgroundActivatorDLL", "src\common\notifications\BackgroundActivatorDLL\BackgroundActivatorDLL.vcxproj", "{031AC72E-FA28-4AB7-B690-6F7B9C28AA73}" ProjectSection(ProjectDependencies) = postProject {0B593A6C-4143-4337-860E-DB5710FB87DB} = {0B593A6C-4143-4337-860E-DB5710FB87DB} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BackgroundActivator", "src\common\notifications\BackgroundActivator\BackgroundActivator.vcxproj", "{0B593A6C-4143-4337-860E-DB5710FB87DB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Version", "src\common\version\version.vcxproj", "{CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "interop", "interop", "{5A7818A8-109C-4E1C-850D-1A654E234B0E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "log", "log", "{E4E03FE0-94FD-47C7-88C5-F17D0AA549D3}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "COMUtils", "src\common\COMUtils\COMUtils.vcxproj", "{7319089E-46D6-4400-BC65-E39BDF1416EE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Display", "src\common\Display\Display.vcxproj", "{CABA8DFB-823B-4BF2-93AC-3F31984150D9}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Themes", "src\common\Themes\Themes.vcxproj", "{98537082-0FDB-40DE-ABD8-0DC5A4269BAB}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "utils", "utils", "{B39DC643-4663-475E-B329-03F0C9918D48}" ProjectSection(SolutionItems) = preProject src\common\utils\appMutex.h = src\common\utils\appMutex.h src\common\utils\color.h = src\common\utils\color.h src\common\utils\com_object_factory.h = src\common\utils\com_object_factory.h src\common\utils\elevation.h = src\common\utils\elevation.h src\common\utils\EventLocker.h = src\common\utils\EventLocker.h src\common\utils\EventWaiter.h = src\common\utils\EventWaiter.h src\common\utils\excluded_apps.h = src\common\utils\excluded_apps.h src\common\utils\exec.h = src\common\utils\exec.h src\common\utils\game_mode.h = src\common\utils\game_mode.h src\common\utils\gpo.h = src\common\utils\gpo.h src\common\utils\HDropIterator.h = src\common\utils\HDropIterator.h src\common\utils\HttpClient.h = src\common\utils\HttpClient.h src\common\utils\json.h = src\common\utils\json.h src\common\utils\logger_helper.h = src\common\utils\logger_helper.h src\common\utils\modulesRegistry.h = src\common\utils\modulesRegistry.h src\common\utils\MsiUtils.h = src\common\utils\MsiUtils.h src\common\utils\MsWindowsSettings.h = src\common\utils\MsWindowsSettings.h src\common\utils\os-detect.h = src\common\utils\os-detect.h src\common\utils\package.h = src\common\utils\package.h src\common\utils\ProcessWaiter.h = src\common\utils\ProcessWaiter.h src\common\utils\process_path.h = src\common\utils\process_path.h src\common\utils\registry.h = src\common\utils\registry.h src\common\utils\resources.h = src\common\utils\resources.h src\common\utils\serialized.h = src\common\utils\serialized.h src\common\utils\string_utils.h = src\common\utils\string_utils.h src\common\utils\timeutil.h = src\common\utils\timeutil.h src\common\utils\UnhandledExceptionHandler.h = src\common\utils\UnhandledExceptionHandler.h src\common\utils\winapi_error.h = src\common\utils\winapi_error.h src\common\utils\window.h = src\common\utils\window.h EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Telemetry", "Telemetry", "{8F62026A-294B-41C6-8839-87463613F216}" ProjectSection(SolutionItems) = preProject src\common\Telemetry\ProjectTelemetry.h = src\common\Telemetry\ProjectTelemetry.h src\common\Telemetry\TelemetryBase.cs = src\common\Telemetry\TelemetryBase.cs src\common\Telemetry\TraceLoggingDefines.h = src\common\Telemetry\TraceLoggingDefines.h EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common.UI", "src\common\Common.UI\Common.UI.csproj", "{C3A17DCA-217B-462C-BB0C-BE086AF80081}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PdfPreviewHandler", "src\modules\previewpane\PdfPreviewHandler\PdfPreviewHandler.csproj", "{69E1EE8D-143A-4060-9129-4658ACF14AAF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PdfPreviewHandler", "src\modules\previewpane\UnitTests-PdfPreviewHandler\UnitTests-PdfPreviewHandler.csproj", "{ECC20689-002A-4354-95A6-B58DF089C6FF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Registry", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Registry\Microsoft.PowerToys.Run.Plugin.Registry.csproj", "{4BABF3FE-3451-42FD-873F-3C332E18DCEF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Registry.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Registry.UnitTest\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.csproj", "{0648DF05-5DDA-4BE1-B5F2-584926EBDB65}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngine", "src\modules\keyboardmanager\KeyboardManagerEngine\KeyboardManagerEngine.vcxproj", "{BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngineLibrary", "src\modules\keyboardmanager\KeyboardManagerEngineLibrary\KeyboardManagerEngineLibrary.vcxproj", "{E496B7FC-1E99-4BAB-849B-0E8367040B02}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngineTest", "src\modules\keyboardmanager\KeyboardManagerEngineTest\KeyboardManagerEngineTest.vcxproj", "{7F4B3A60-BC27-45A7-8000-68B0B6EA7466}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditor", "src\modules\keyboardmanager\KeyboardManagerEditor\KeyboardManagerEditor.vcxproj", "{8DF78B53-200E-451F-9328-01EB907193AE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditorLibrary", "src\modules\keyboardmanager\KeyboardManagerEditorLibrary\KeyboardManagerEditorLibrary.vcxproj", "{23D2070D-E4AD-4ADD-85A7-083D9C76AD49}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditorTest", "src\modules\keyboardmanager\KeyboardManagerEditorTest\KeyboardManagerEditorTest.vcxproj", "{62173D9A-6724-4C00-A1C8-FB646480A9EC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "awake", "awake", "{127F38E0-40AA-4594-B955-5616BF206882}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AwakeModuleInterface", "src\modules\awake\AwakeModuleInterface\AwakeModuleInterface.vcxproj", "{5E7360A8-D048-4ED3-8F09-0BFD64C5529A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Awake", "src\modules\awake\Awake\Awake.csproj", "{D940E07F-532C-4FF3-883F-790DA014F19A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.UnitConverter", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.UnitConverter\Community.PowerToys.Run.Plugin.UnitConverter.csproj", "{BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.UnitConverter.UnitTest", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.csproj", "{3E424AD2-19E5-4AE6-B833-F53963EB5FC1}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "shortcutguide", "shortcutguide", "{106CBECA-0701-4FC3-838C-9DF816A19AE2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShortcutGuideModuleInterface", "src\modules\ShortcutGuide\ShortcutGuideModuleInterface\ShortcutGuideModuleInterface.vcxproj", "{2D604C07-51FC-46BB-9EB7-75AECC7F5E81}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShortcutGuide", "src\modules\ShortcutGuide\ShortcutGuide\ShortcutGuide.vcxproj", "{2EDB3EB4-FA92-4BFF-B2D8-566584837231}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZonesModuleInterface", "src\modules\fancyzones\FancyZonesModuleInterface\FancyZonesModuleInterface.vcxproj", "{48804216-2A0E-4168-A6D8-9CD068D14227}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZones", "src\modules\fancyzones\FancyZones\FancyZones.vcxproj", "{FF1D7936-842A-4BBB-8BEA-E9FE796DE700}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.Update", "src\Update\PowerToys.Update.vcxproj", "{44CE9AE1-4390-42C5-BACC-0FD6B40AA203}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.WindowsSettings", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsSettings\Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj", "{5043CECE-E6A7-4867-9CBE-02D27D83747A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceShared", "src\modules\videoconference\VideoConferenceShared\VideoConferenceShared.vcxproj", "{459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceModule", "src\modules\videoconference\VideoConferenceModule\VideoConference.vcxproj", "{5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceProxyFilter", "src\modules\videoconference\VideoConferenceProxyFilter\VideoConferenceProxyFilter.vcxproj", "{AC2857B4-103D-4D6D-9740-926EBF785042}" ProjectSection(ProjectDependencies) = postProject {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} = {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VideoConference", "VideoConference", "{470FBAF9-E1F8-4F3E-8786-198A1C81C8A8}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PdfThumbnailProvider", "src\modules\previewpane\PdfThumbnailProvider\PdfThumbnailProvider.csproj", "{11491FD8-F921-48BF-880C-7FEA185B80A1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PdfThumbnailProvider", "src\modules\previewpane\UnitTests-PdfThumbnailProvider\UnitTests-PdfThumbnailProvider.csproj", "{F40C3397-1834-4530-B2D9-8F8B8456BCDF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.WindowsTerminal", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsTerminal\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.csproj", "{A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowsTerminal.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.UnitTests\Microsoft.Plugin.WindowsTerminal.UnitTests.csproj", "{4ED320BC-BA04-4D42-8D15-CBE62151F08B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MouseUtils", "MouseUtils", "{322566EF-20DC-43A6-B9F8-616AF942579A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FindMyMouse", "src\modules\MouseUtils\FindMyMouse\FindMyMouse.vcxproj", "{E94FD11C-0591-456F-899F-EFC0CA548336}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseHighlighter", "src\modules\MouseUtils\MouseHighlighter\MouseHighlighter.vcxproj", "{782A61BE-9D85-4081-B35C-1CCC9DCC1E88}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GcodeThumbnailProvider", "src\modules\previewpane\GcodeThumbnailProvider\GcodeThumbnailProvider.csproj", "{809AA252-E17A-4FA2-B0A1-0450976B763F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-GcodeThumbnailProvider", "src\modules\previewpane\UnitTests-GcodeThumbnailProvider\UnitTests-GcodeThumbnailProvider.csproj", "{133281D8-1BCE-4D07-B31E-796612A9609E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GcodePreviewHandler", "src\modules\previewpane\GcodePreviewHandler\GcodePreviewHandler.csproj", "{805306FF-A562-4415-8DEF-E493BDC45918}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-GcodePreviewHandler", "src\modules\previewpane\UnitTests-GcodePreviewHandler\UnitTests-GcodePreviewHandler.csproj", "{FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AlwaysOnTop", "AlwaysOnTop", "{60CD2D4F-C3B9-4897-9821-FCA5098B41CE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlwaysOnTop", "src\modules\alwaysontop\AlwaysOnTop\AlwaysOnTop.vcxproj", "{1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlwaysOnTopModuleInterface", "src\modules\alwaysontop\AlwaysOnTopModuleInterface\AlwaysOnTopModuleInterface.vcxproj", "{48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.WebSearch", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.WebSearch\Community.PowerToys.Run.Plugin.WebSearch.csproj", "{9F94B303-5E21-4364-9362-64426F8DB932}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MousePointerCrosshairs", "src\modules\MouseUtils\MousePointerCrosshairs\MousePointerCrosshairs.vcxproj", "{EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StlThumbnailProvider", "src\modules\previewpane\StlThumbnailProvider\StlThumbnailProvider.csproj", "{F7C8C0F1-5431-4347-89D0-8E5354F93CF2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-StlThumbnailProvider", "src\modules\previewpane\UnitTests-StlThumbnailProvider\UnitTests-StlThumbnailProvider.csproj", "{F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MonacoPreviewHandler", "src\modules\previewpane\MonacoPreviewHandler\MonacoPreviewHandler.csproj", "{04B193D7-3E21-46B8-A958-89B63A8A69DE}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.TimeDate", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.TimeDate\Microsoft.PowerToys.Run.Plugin.TimeDate.csproj", "{5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.csproj", "{FD464B4C-2F68-4D06-91E7-4208146C41F5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowWalker.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.WindowWalker.UnitTests\Microsoft.Plugin.WindowWalker.UnitTests.csproj", "{8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerToys.Settings", "src\settings-ui\Settings.UI\PowerToys.Settings.csproj", "{020A7474-3601-4160-A159-D7B70B77B15F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameUI", "src\modules\powerrename\PowerRenameUILib\PowerRenameUI.vcxproj", "{27718999-C175-450A-861C-89F911E16A88}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameContextMenu", "src\modules\powerrename\PowerRenameContextMenu\PowerRenameContextMenu.vcxproj", "{1DBBB112-4BB1-444B-8EBB-E66555C76BA6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.OneNote", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.OneNote\Microsoft.PowerToys.Run.Plugin.OneNote.csproj", "{5A1DB2F0-0715-4B3B-98E6-79BC41540045}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerContextMenu", "src\modules\imageresizer\ImageResizerContextMenu\ImageResizerContextMenu.vcxproj", "{93B72A06-C8BD-484F-A6F7-C9F280B150BF}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerLib", "src\modules\imageresizer\ImageResizerLib\ImageResizerLib.vcxproj", "{18B3DB45-4FFE-4D01-97D6-5223FEEE1853}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PowerAccent", "PowerAccent", "{0F14491C-6369-4C45-AAA8-135814E66E6B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerAccentModuleInterface", "src\modules\poweraccent\PowerAccentModuleInterface\PowerAccentModuleInterface.vcxproj", "{34A354C5-23C7-4343-916C-C52DAF4FC39D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerAccent.Core", "src\modules\poweraccent\PowerAccent.Core\PowerAccent.Core.csproj", "{3264DF53-C805-4B0C-867C-FCEAF7AEF762}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerAccent.UI", "src\modules\poweraccent\PowerAccent.UI\PowerAccent.UI.csproj", "{31CAD28E-778A-441C-85BC-40AB3EAA2A10}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PowerOCR", "PowerOCR", "{A50C70A6-2DA0-4027-B90E-B1A40755A8A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerOCR", "src\modules\PowerOCR\PowerOCR\PowerOCR.csproj", "{25C91A4E-BA4E-467A-85CD-8B62545BF674}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerOCRModuleInterface", "src\modules\PowerOCR\PowerOCRModuleInterface\PowerOCRModuleInterface.vcxproj", "{6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.History", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.History\Microsoft.PowerToys.Run.Plugin.History.csproj", "{212AD910-8488-4036-BE20-326931B75FB2}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MeasureTool", "MeasureTool", "{7AC943C9-52E8-44CF-9083-744D8049667B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.MeasureToolCore", "src\modules\MeasureTool\MeasureToolCore\PowerToys.MeasureToolCore.vcxproj", "{54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}" ProjectSection(ProjectDependencies) = postProject {6955446D-23F7-4023-9BB3-8657F904AF99} = {6955446D-23F7-4023-9BB3-8657F904AF99} {CABA8DFB-823B-4BF2-93AC-3F31984150D9} = {CABA8DFB-823B-4BF2-93AC-3F31984150D9} {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MeasureToolModuleInterface", "src\modules\MeasureTool\MeasureToolModuleInterface\MeasureToolModuleInterface.vcxproj", "{92C39820-9F84-4529-BC7D-22AAE514D63B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MeasureToolUI", "src\modules\MeasureTool\MeasureToolUI\MeasureToolUI.csproj", "{515554D1-D004-4F7F-A107-2211FC0F6B2C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerAccentKeyboardService", "src\modules\poweraccent\PowerAccentKeyboardService\PowerAccentKeyboardService.vcxproj", "{C97D9A5D-206C-454E-997E-009E227D7F02}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hosts", "src\modules\Hosts\Hosts\Hosts.csproj", "{31D1C81D-765F-4446-AA62-E743F6325049}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Hosts", "Hosts", "{F05E590D-AD46-42BE-9C25-6A63ADD2E3EA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hosts.Tests", "src\modules\Hosts\Hosts.Tests\Hosts.Tests.csproj", "{E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HostsModuleInterface", "src\modules\Hosts\HostsModuleInterface\HostsModuleInterface.vcxproj", "{B41B888C-7DB8-4747-B262-4062E05A230D}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "FileLocksmith", "FileLocksmith", "{AB82E5DD-C32D-4F28-9746-2C780846188E}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileLocksmithExt", "src\modules\FileLocksmith\FileLocksmithExt\FileLocksmithExt.vcxproj", "{57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileLocksmithUI", "src\modules\FileLocksmith\FileLocksmithUI\FileLocksmithUI.csproj", "{E69B044A-2F8A-45AA-AD0B-256C59421807}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileLocksmithLibInterop", "src\modules\FileLocksmith\FileLocksmithLibInterop\FileLocksmithLibInterop.vcxproj", "{C604B37E-9D0E-4484-8778-E8B31B0E1B3A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GPOWrapper", "src\common\GPOWrapper\GPOWrapper.vcxproj", "{E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GPOWrapperProjection", "src\common\GPOWrapperProjection\GPOWrapperProjection.csproj", "{00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Peek", "Peek", "{17B4FA70-001E-4D33-BBBB-0D142DBC2E20}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Peek", "src\modules\peek\peek\peek.vcxproj", "{A1425B53-3D61-4679-8623-E64A0D3D0A48}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.UI", "src\modules\peek\Peek.UI\Peek.UI.csproj", "{9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.Common", "src\modules\peek\Peek.Common\Peek.Common.csproj", "{17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.FilePreviewer", "src\modules\peek\Peek.FilePreviewer\Peek.FilePreviewer.csproj", "{AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MarkdownPreviewHandlerCpp", "src\modules\previewpane\MarkdownPreviewHandlerCpp\MarkdownPreviewHandlerCpp.vcxproj", "{ED9A1AC6-AEB0-4569-A6E9-E1696182B545}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GcodePreviewHandlerCpp", "src\modules\previewpane\GcodePreviewHandlerCpp\GcodePreviewHandlerCpp.vcxproj", "{5A5DD09D-723A-44D3-8F2B-293584C3D731}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MonacoPreviewHandlerCpp", "src\modules\previewpane\MonacoPreviewHandlerCpp\MonacoPreviewHandlerCpp.vcxproj", "{B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PdfPreviewHandlerCpp", "src\modules\previewpane\PdfPreviewHandlerCpp\PdfPreviewHandlerCpp.vcxproj", "{54F7C616-FD41-4E62-BFF9-015686914F4D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SvgPreviewHandlerCpp", "src\modules\previewpane\SvgPreviewHandlerCpp\SvgPreviewHandlerCpp.vcxproj", "{143F13E3-D2E3-4D83-B035-356612D99956}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GcodeThumbnailProviderCpp", "src\modules\previewpane\GcodeThumbnailProviderCpp\GcodeThumbnailProviderCpp.vcxproj", "{56CC2F10-6E41-453D-BE16-C593A5E58482}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PdfThumbnailProviderCpp", "src\modules\previewpane\PdfThumbnailProviderCpp\PdfThumbnailProviderCpp.vcxproj", "{CA5518ED-0458-4B09-8F53-4122B9888655}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StlThumbnailProviderCpp", "src\modules\previewpane\StlThumbnailProviderCpp\StlThumbnailProviderCpp.vcxproj", "{D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SvgThumbnailProviderCpp", "src\modules\previewpane\SvgThumbnailProviderCpp\SvgThumbnailProviderCpp.vcxproj", "{2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MouseWithoutBorders", "MouseWithoutBorders", "{B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseWithoutBordersModuleInterface", "src\modules\MouseWithoutBorders\ModuleInterface\MouseWithoutBordersModuleInterface.vcxproj", "{2833C9C6-AB32-4048-A5C7-A70898337B57}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBorders", "src\modules\MouseWithoutBorders\App\MouseWithoutBorders.csproj", "{50B82783-242F-42D2-BC03-B3430BF01354}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBordersService", "src\modules\MouseWithoutBorders\App\Service\MouseWithoutBordersService.csproj", "{B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBordersHelper", "src\modules\MouseWithoutBorders\App\Helper\MouseWithoutBordersHelper.csproj", "{A663E672-B26D-4EC0-BEAB-FE2E424AC46F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseJump", "src\modules\MouseUtils\MouseJump\MouseJump.vcxproj", "{8A08D663-4995-40E3-B42C-3F910625F284}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseJumpUI", "src\modules\MouseUtils\MouseJumpUI\MouseJumpUI.csproj", "{D962A009-834F-4EEC-AABB-430DF8F98E39}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseJumpUI.UnitTests", "src\modules\MouseUtils\MouseJumpUI.UnitTests\MouseJumpUI.UnitTests.csproj", "{D9C5DE64-6849-4278-91AD-9660AECF2876}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "pasteplain", "pasteplain", "{9873BA05-4C41-4819-9283-CF45D795431B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PastePlainModuleInterface", "src\modules\pasteplain\PastePlainModuleInterface\PastePlainModuleInterface.vcxproj", "{FC373B24-3293-453C-AAF5-CF2909DCEE6A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AllExperiments", "src\common\AllExperiments\AllExperiments.csproj", "{9CE59ED5-7087-4353-88EB-788038A73CEC}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RegistryPreviewUI", "src\modules\registrypreview\RegistryPreviewUI\RegistryPreviewUI.csproj", "{FD86C06A-FB54-4D5E-9831-1CDADF60D45F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RegistryPreviewExt", "src\modules\registrypreview\RegistryPreviewExt\RegistryPreviewExt.vcxproj", "{697C6AF9-0A48-49A9-866C-67DA12384015}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RegistryPreview", "RegistryPreview", "{929C1324-22E8-4412-A9A8-80E85F3985A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FilePreviewCommon", "src\common\FilePreviewCommon\FilePreviewCommon.csproj", "{9EBAA524-0EDA-470B-95D4-39383285CBB2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.PowerToys", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.PowerToys\Microsoft.PowerToys.Run.Plugin.PowerToys.csproj", "{500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.ValueGenerator", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.ValueGenerator\Community.PowerToys.Run.Plugin.ValueGenerator.csproj", "{D095BE44-1F2E-463E-A494-121892A75EA2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.csproj", "{90F9FA90-2C20-4004-96E6-F3B78151F5A5}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CropAndLock", "CropAndLock", "{3B227528-4BA6-4CAF-B44A-A10C78A64849}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CropAndLock", "src\modules\CropAndLock\CropAndLock\CropAndLock.vcxproj", "{F5E1146E-B7B3-4E11-85FD-270A500BD78C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CropAndLockModuleInterface", "src\modules\CropAndLock\CropAndLockModuleInterface\CropAndLockModuleInterface.vcxproj", "{3157FA75-86CF-4EE2-8F62-C43F776493C6}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests-FancyZonesEditor", "src\modules\fancyzones\UnitTests-FancyZonesEditor\UnitTests-FancyZonesEditor.csproj", "{FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "EnvironmentVariables", "EnvironmentVariables", "{538ED0BB-B863-4B20-98CC-BCDF7FA0B68A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EnvironmentVariables", "src\modules\EnvironmentVariables\EnvironmentVariables\EnvironmentVariables.csproj", "{51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EnvironmentVariablesModuleInterface", "src\modules\EnvironmentVariables\EnvironmentVariablesModuleInterface\EnvironmentVariablesModuleInterface.vcxproj", "{B9420661-B0E4-4241-ABD4-4A27A1F64250}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|ARM64 = Debug|ARM64 Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 Release|ARM64 = Release|ARM64 Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|ARM64.Build.0 = Debug|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x64.ActiveCfg = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x64.Build.0 = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x86.ActiveCfg = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|ARM64.ActiveCfg = Release|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|ARM64.Build.0 = Release|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x64.ActiveCfg = Release|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x64.Build.0 = Release|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x86.ActiveCfg = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|ARM64.Build.0 = Debug|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x64.ActiveCfg = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x64.Build.0 = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x86.ActiveCfg = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|ARM64.ActiveCfg = Release|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|ARM64.Build.0 = Release|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x64.ActiveCfg = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x64.Build.0 = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x86.ActiveCfg = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|ARM64.Build.0 = Debug|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x64.ActiveCfg = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x64.Build.0 = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x86.ActiveCfg = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|ARM64.ActiveCfg = Release|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|ARM64.Build.0 = Release|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x64.ActiveCfg = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x64.Build.0 = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x86.ActiveCfg = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|ARM64.Build.0 = Debug|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x64.ActiveCfg = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x64.Build.0 = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x86.ActiveCfg = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|ARM64.ActiveCfg = Release|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|ARM64.Build.0 = Release|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x64.ActiveCfg = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x64.Build.0 = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x86.ActiveCfg = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|ARM64.Build.0 = Debug|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x64.ActiveCfg = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x64.Build.0 = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x86.ActiveCfg = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|ARM64.ActiveCfg = Release|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|ARM64.Build.0 = Release|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x64.ActiveCfg = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x64.Build.0 = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x86.ActiveCfg = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|ARM64.Build.0 = Debug|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x64.ActiveCfg = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x64.Build.0 = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x86.ActiveCfg = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|ARM64.ActiveCfg = Release|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|ARM64.Build.0 = Release|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x64.ActiveCfg = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x64.Build.0 = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x86.ActiveCfg = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|ARM64.Build.0 = Debug|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x64.ActiveCfg = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x64.Build.0 = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x86.ActiveCfg = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|ARM64.ActiveCfg = Release|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|ARM64.Build.0 = Release|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x64.ActiveCfg = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x64.Build.0 = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x86.ActiveCfg = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|ARM64.Build.0 = Debug|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x64.ActiveCfg = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x64.Build.0 = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x86.ActiveCfg = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|ARM64.ActiveCfg = Release|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|ARM64.Build.0 = Release|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x64.ActiveCfg = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x64.Build.0 = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x86.ActiveCfg = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|ARM64.Build.0 = Debug|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x64.ActiveCfg = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x64.Build.0 = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x86.ActiveCfg = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|ARM64.ActiveCfg = Release|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|ARM64.Build.0 = Release|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x64.ActiveCfg = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x64.Build.0 = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x86.ActiveCfg = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|ARM64.ActiveCfg = Debug|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|ARM64.Build.0 = Debug|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x64.ActiveCfg = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x64.Build.0 = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x86.ActiveCfg = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|ARM64.ActiveCfg = Release|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|ARM64.Build.0 = Release|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x64.ActiveCfg = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x64.Build.0 = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x86.ActiveCfg = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|ARM64.Build.0 = Debug|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x64.ActiveCfg = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x64.Build.0 = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x86.ActiveCfg = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|ARM64.ActiveCfg = Release|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|ARM64.Build.0 = Release|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x64.ActiveCfg = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x64.Build.0 = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x86.ActiveCfg = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|ARM64.Build.0 = Debug|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x64.ActiveCfg = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x64.Build.0 = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x86.ActiveCfg = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|ARM64.ActiveCfg = Release|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|ARM64.Build.0 = Release|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x64.ActiveCfg = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x64.Build.0 = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x86.ActiveCfg = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|ARM64.Build.0 = Debug|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x64.ActiveCfg = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x64.Build.0 = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x86.ActiveCfg = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|ARM64.ActiveCfg = Release|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|ARM64.Build.0 = Release|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x64.ActiveCfg = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x64.Build.0 = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x86.ActiveCfg = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|ARM64.Build.0 = Debug|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x64.ActiveCfg = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x64.Build.0 = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x86.ActiveCfg = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|ARM64.ActiveCfg = Release|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|ARM64.Build.0 = Release|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x64.ActiveCfg = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x64.Build.0 = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x86.ActiveCfg = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|ARM64.Build.0 = Debug|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x64.ActiveCfg = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x64.Build.0 = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x86.ActiveCfg = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|ARM64.ActiveCfg = Release|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|ARM64.Build.0 = Release|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x64.ActiveCfg = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x64.Build.0 = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x86.ActiveCfg = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|ARM64.Build.0 = Debug|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x64.ActiveCfg = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x64.Build.0 = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x86.ActiveCfg = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|ARM64.ActiveCfg = Release|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|ARM64.Build.0 = Release|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x64.ActiveCfg = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x64.Build.0 = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x86.ActiveCfg = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|ARM64.Build.0 = Debug|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x64.ActiveCfg = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x64.Build.0 = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x86.ActiveCfg = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|ARM64.ActiveCfg = Release|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|ARM64.Build.0 = Release|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x64.ActiveCfg = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x64.Build.0 = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x86.ActiveCfg = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|ARM64.Build.0 = Debug|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x64.ActiveCfg = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x64.Build.0 = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x86.ActiveCfg = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|ARM64.ActiveCfg = Release|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|ARM64.Build.0 = Release|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x64.ActiveCfg = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x64.Build.0 = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x86.ActiveCfg = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|ARM64.Build.0 = Debug|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x64.ActiveCfg = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x64.Build.0 = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x86.ActiveCfg = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|ARM64.ActiveCfg = Release|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|ARM64.Build.0 = Release|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x64.ActiveCfg = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x64.Build.0 = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x86.ActiveCfg = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|ARM64.Build.0 = Debug|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x64.ActiveCfg = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x64.Build.0 = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x86.ActiveCfg = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|ARM64.ActiveCfg = Release|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|ARM64.Build.0 = Release|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x64.ActiveCfg = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x64.Build.0 = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x86.ActiveCfg = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|ARM64.Build.0 = Debug|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x64.ActiveCfg = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x64.Build.0 = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x86.ActiveCfg = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|ARM64.ActiveCfg = Release|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|ARM64.Build.0 = Release|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x64.ActiveCfg = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x64.Build.0 = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x86.ActiveCfg = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|ARM64.Build.0 = Debug|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x64.ActiveCfg = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x64.Build.0 = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x86.ActiveCfg = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|ARM64.ActiveCfg = Release|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|ARM64.Build.0 = Release|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x64.ActiveCfg = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x64.Build.0 = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x86.ActiveCfg = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|ARM64.Build.0 = Debug|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x64.ActiveCfg = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x64.Build.0 = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x86.ActiveCfg = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|ARM64.ActiveCfg = Release|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|ARM64.Build.0 = Release|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x64.ActiveCfg = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x64.Build.0 = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x86.ActiveCfg = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|ARM64.Build.0 = Debug|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x64.ActiveCfg = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x64.Build.0 = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x86.ActiveCfg = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|ARM64.ActiveCfg = Release|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|ARM64.Build.0 = Release|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x64.ActiveCfg = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x64.Build.0 = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x86.ActiveCfg = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|ARM64.Build.0 = Debug|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x64.ActiveCfg = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x64.Build.0 = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x86.ActiveCfg = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|ARM64.ActiveCfg = Release|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|ARM64.Build.0 = Release|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x64.ActiveCfg = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x64.Build.0 = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x86.ActiveCfg = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|ARM64.Build.0 = Debug|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x64.ActiveCfg = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x64.Build.0 = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x86.ActiveCfg = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|ARM64.ActiveCfg = Release|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|ARM64.Build.0 = Release|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x64.ActiveCfg = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x64.Build.0 = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x86.ActiveCfg = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|ARM64.Build.0 = Debug|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x64.ActiveCfg = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x64.Build.0 = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x86.ActiveCfg = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|ARM64.ActiveCfg = Release|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|ARM64.Build.0 = Release|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x64.ActiveCfg = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x64.Build.0 = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x86.ActiveCfg = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|ARM64.Build.0 = Debug|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x64.ActiveCfg = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x64.Build.0 = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x86.ActiveCfg = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|ARM64.ActiveCfg = Release|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|ARM64.Build.0 = Release|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x64.ActiveCfg = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x64.Build.0 = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x86.ActiveCfg = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|ARM64.Build.0 = Debug|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x64.ActiveCfg = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x64.Build.0 = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x86.ActiveCfg = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|ARM64.ActiveCfg = Release|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|ARM64.Build.0 = Release|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x64.ActiveCfg = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x64.Build.0 = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x86.ActiveCfg = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|ARM64.Build.0 = Debug|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x64.ActiveCfg = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x64.Build.0 = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x86.ActiveCfg = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|ARM64.ActiveCfg = Release|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|ARM64.Build.0 = Release|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x64.ActiveCfg = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x64.Build.0 = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x86.ActiveCfg = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|ARM64.Build.0 = Debug|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x64.ActiveCfg = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x64.Build.0 = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x86.ActiveCfg = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|ARM64.ActiveCfg = Release|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|ARM64.Build.0 = Release|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x64.ActiveCfg = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x64.Build.0 = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x86.ActiveCfg = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|ARM64.Build.0 = Debug|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x64.ActiveCfg = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x64.Build.0 = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x86.ActiveCfg = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|ARM64.ActiveCfg = Release|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|ARM64.Build.0 = Release|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x64.ActiveCfg = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x64.Build.0 = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x86.ActiveCfg = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|ARM64.ActiveCfg = Debug|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|ARM64.Build.0 = Debug|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x64.ActiveCfg = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x64.Build.0 = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x86.ActiveCfg = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|ARM64.ActiveCfg = Release|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|ARM64.Build.0 = Release|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x64.ActiveCfg = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x64.Build.0 = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x86.ActiveCfg = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|ARM64.ActiveCfg = Debug|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|ARM64.Build.0 = Debug|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x64.ActiveCfg = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x64.Build.0 = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x86.ActiveCfg = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|ARM64.ActiveCfg = Release|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|ARM64.Build.0 = Release|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x64.ActiveCfg = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x64.Build.0 = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x86.ActiveCfg = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|ARM64.Build.0 = Debug|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x64.ActiveCfg = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x64.Build.0 = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x86.ActiveCfg = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|ARM64.ActiveCfg = Release|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|ARM64.Build.0 = Release|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x64.ActiveCfg = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x64.Build.0 = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x86.ActiveCfg = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|ARM64.Build.0 = Debug|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.ActiveCfg = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.Build.0 = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x86.ActiveCfg = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|ARM64.ActiveCfg = Release|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|ARM64.Build.0 = Release|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x64.ActiveCfg = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x64.Build.0 = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x86.ActiveCfg = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|ARM64.Build.0 = Debug|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x64.ActiveCfg = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x64.Build.0 = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x86.ActiveCfg = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|ARM64.ActiveCfg = Release|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|ARM64.Build.0 = Release|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x64.ActiveCfg = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x64.Build.0 = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x86.ActiveCfg = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|ARM64.Build.0 = Debug|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x64.ActiveCfg = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x64.Build.0 = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x86.ActiveCfg = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|ARM64.ActiveCfg = Release|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|ARM64.Build.0 = Release|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x64.ActiveCfg = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x64.Build.0 = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x86.ActiveCfg = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|ARM64.ActiveCfg = Debug|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|ARM64.Build.0 = Debug|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x64.ActiveCfg = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x64.Build.0 = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x86.ActiveCfg = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|ARM64.ActiveCfg = Release|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|ARM64.Build.0 = Release|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x64.ActiveCfg = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x64.Build.0 = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x86.ActiveCfg = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|ARM64.Build.0 = Debug|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x64.ActiveCfg = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x64.Build.0 = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x86.ActiveCfg = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|ARM64.ActiveCfg = Release|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|ARM64.Build.0 = Release|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x64.ActiveCfg = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x64.Build.0 = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x86.ActiveCfg = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|ARM64.Build.0 = Debug|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x64.ActiveCfg = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x64.Build.0 = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x86.ActiveCfg = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|ARM64.ActiveCfg = Release|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|ARM64.Build.0 = Release|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x64.ActiveCfg = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x64.Build.0 = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x86.ActiveCfg = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|ARM64.Build.0 = Debug|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x64.ActiveCfg = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x64.Build.0 = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x86.ActiveCfg = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|ARM64.ActiveCfg = Release|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|ARM64.Build.0 = Release|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x64.ActiveCfg = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x64.Build.0 = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x86.ActiveCfg = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|ARM64.Build.0 = Debug|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x64.ActiveCfg = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x64.Build.0 = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x86.ActiveCfg = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|ARM64.ActiveCfg = Release|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|ARM64.Build.0 = Release|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x64.ActiveCfg = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x64.Build.0 = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x86.ActiveCfg = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|ARM64.Build.0 = Debug|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x64.ActiveCfg = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x64.Build.0 = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x86.ActiveCfg = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|ARM64.ActiveCfg = Release|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|ARM64.Build.0 = Release|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x64.ActiveCfg = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x64.Build.0 = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x86.ActiveCfg = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|ARM64.Build.0 = Debug|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x64.ActiveCfg = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x64.Build.0 = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x86.ActiveCfg = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|ARM64.ActiveCfg = Release|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|ARM64.Build.0 = Release|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x64.ActiveCfg = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x64.Build.0 = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x86.ActiveCfg = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|ARM64.Build.0 = Debug|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x64.ActiveCfg = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x64.Build.0 = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x86.ActiveCfg = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|ARM64.ActiveCfg = Release|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|ARM64.Build.0 = Release|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x64.ActiveCfg = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x64.Build.0 = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x86.ActiveCfg = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|ARM64.ActiveCfg = Debug|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|ARM64.Build.0 = Debug|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x64.ActiveCfg = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x64.Build.0 = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x86.ActiveCfg = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|ARM64.ActiveCfg = Release|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|ARM64.Build.0 = Release|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x64.ActiveCfg = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x64.Build.0 = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x86.ActiveCfg = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|ARM64.Build.0 = Debug|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x64.ActiveCfg = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x64.Build.0 = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x86.ActiveCfg = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|ARM64.ActiveCfg = Release|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|ARM64.Build.0 = Release|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x64.ActiveCfg = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x64.Build.0 = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x86.ActiveCfg = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|ARM64.Build.0 = Debug|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x64.ActiveCfg = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x64.Build.0 = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x86.ActiveCfg = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|ARM64.ActiveCfg = Release|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|ARM64.Build.0 = Release|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x64.ActiveCfg = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x64.Build.0 = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x86.ActiveCfg = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|ARM64.Build.0 = Debug|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x64.ActiveCfg = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x64.Build.0 = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x86.ActiveCfg = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|ARM64.ActiveCfg = Release|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|ARM64.Build.0 = Release|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x64.ActiveCfg = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x64.Build.0 = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x86.ActiveCfg = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|ARM64.Build.0 = Debug|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x64.ActiveCfg = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x64.Build.0 = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x86.ActiveCfg = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|ARM64.ActiveCfg = Release|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|ARM64.Build.0 = Release|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x64.ActiveCfg = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x64.Build.0 = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x86.ActiveCfg = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|ARM64.Build.0 = Debug|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x64.ActiveCfg = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x64.Build.0 = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x86.ActiveCfg = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|ARM64.ActiveCfg = Release|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|ARM64.Build.0 = Release|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x64.ActiveCfg = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x64.Build.0 = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x86.ActiveCfg = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|ARM64.Build.0 = Debug|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x64.ActiveCfg = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x64.Build.0 = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x86.ActiveCfg = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|ARM64.ActiveCfg = Release|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|ARM64.Build.0 = Release|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x64.ActiveCfg = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x64.Build.0 = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x86.ActiveCfg = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|ARM64.Build.0 = Debug|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x64.ActiveCfg = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x64.Build.0 = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x86.ActiveCfg = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|ARM64.ActiveCfg = Release|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|ARM64.Build.0 = Release|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x64.ActiveCfg = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x64.Build.0 = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x86.ActiveCfg = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|ARM64.ActiveCfg = Debug|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|ARM64.Build.0 = Debug|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x64.ActiveCfg = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x64.Build.0 = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x86.ActiveCfg = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|ARM64.ActiveCfg = Release|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|ARM64.Build.0 = Release|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x64.ActiveCfg = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x64.Build.0 = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x86.ActiveCfg = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|ARM64.Build.0 = Debug|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x64.ActiveCfg = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x64.Build.0 = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x86.ActiveCfg = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|ARM64.ActiveCfg = Release|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|ARM64.Build.0 = Release|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x64.ActiveCfg = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x64.Build.0 = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x86.ActiveCfg = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|ARM64.Build.0 = Debug|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x64.ActiveCfg = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x64.Build.0 = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x86.ActiveCfg = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|ARM64.ActiveCfg = Release|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|ARM64.Build.0 = Release|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x64.ActiveCfg = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x64.Build.0 = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x86.ActiveCfg = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|ARM64.Build.0 = Debug|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x64.ActiveCfg = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x64.Build.0 = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x86.ActiveCfg = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|ARM64.ActiveCfg = Release|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|ARM64.Build.0 = Release|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x64.ActiveCfg = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x64.Build.0 = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x86.ActiveCfg = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|ARM64.Build.0 = Debug|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x64.ActiveCfg = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x64.Build.0 = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x86.ActiveCfg = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|ARM64.ActiveCfg = Release|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|ARM64.Build.0 = Release|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x64.ActiveCfg = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x64.Build.0 = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x86.ActiveCfg = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|ARM64.Build.0 = Debug|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x64.ActiveCfg = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x64.Build.0 = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x86.ActiveCfg = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|ARM64.ActiveCfg = Release|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|ARM64.Build.0 = Release|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x64.ActiveCfg = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x64.Build.0 = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x86.ActiveCfg = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|ARM64.ActiveCfg = Debug|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|ARM64.Build.0 = Debug|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x64.ActiveCfg = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x64.Build.0 = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x86.ActiveCfg = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|ARM64.ActiveCfg = Release|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|ARM64.Build.0 = Release|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x64.ActiveCfg = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x64.Build.0 = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x86.ActiveCfg = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|ARM64.Build.0 = Debug|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x64.ActiveCfg = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x64.Build.0 = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x86.ActiveCfg = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|ARM64.ActiveCfg = Release|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|ARM64.Build.0 = Release|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x64.ActiveCfg = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x64.Build.0 = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x86.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|ARM64.Build.0 = Debug|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.Build.0 = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x86.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|ARM64.ActiveCfg = Release|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|ARM64.Build.0 = Release|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.Build.0 = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x86.ActiveCfg = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|ARM64.Build.0 = Debug|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x64.ActiveCfg = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x64.Build.0 = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x86.ActiveCfg = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|ARM64.ActiveCfg = Release|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|ARM64.Build.0 = Release|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x64.ActiveCfg = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x64.Build.0 = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x86.ActiveCfg = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|ARM64.Build.0 = Debug|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x64.ActiveCfg = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x64.Build.0 = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x86.ActiveCfg = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|ARM64.ActiveCfg = Release|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|ARM64.Build.0 = Release|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x64.ActiveCfg = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x64.Build.0 = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x86.ActiveCfg = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|ARM64.Build.0 = Debug|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x64.ActiveCfg = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x64.Build.0 = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x86.ActiveCfg = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|ARM64.ActiveCfg = Release|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|ARM64.Build.0 = Release|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x64.ActiveCfg = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x64.Build.0 = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x86.ActiveCfg = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|ARM64.Build.0 = Debug|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x64.ActiveCfg = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x64.Build.0 = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x86.ActiveCfg = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|ARM64.ActiveCfg = Release|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|ARM64.Build.0 = Release|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x64.ActiveCfg = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x64.Build.0 = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x86.ActiveCfg = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|ARM64.Build.0 = Debug|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x64.ActiveCfg = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x64.Build.0 = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x86.ActiveCfg = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|ARM64.ActiveCfg = Release|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|ARM64.Build.0 = Release|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x64.ActiveCfg = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x64.Build.0 = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x86.ActiveCfg = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|ARM64.Build.0 = Debug|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x64.ActiveCfg = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x64.Build.0 = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x86.ActiveCfg = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|ARM64.ActiveCfg = Release|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|ARM64.Build.0 = Release|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x64.ActiveCfg = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x64.Build.0 = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x86.ActiveCfg = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|ARM64.Build.0 = Debug|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x64.ActiveCfg = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x64.Build.0 = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x86.ActiveCfg = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|ARM64.ActiveCfg = Release|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|ARM64.Build.0 = Release|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x64.ActiveCfg = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x64.Build.0 = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x86.ActiveCfg = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|ARM64.Build.0 = Debug|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x64.ActiveCfg = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x64.Build.0 = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x86.ActiveCfg = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|ARM64.ActiveCfg = Release|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|ARM64.Build.0 = Release|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x64.ActiveCfg = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x64.Build.0 = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x86.ActiveCfg = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|ARM64.Build.0 = Debug|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x64.ActiveCfg = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x64.Build.0 = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x86.ActiveCfg = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|ARM64.ActiveCfg = Release|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|ARM64.Build.0 = Release|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x64.ActiveCfg = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x64.Build.0 = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x86.ActiveCfg = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|ARM64.Build.0 = Debug|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x64.ActiveCfg = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x64.Build.0 = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x86.ActiveCfg = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|ARM64.ActiveCfg = Release|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|ARM64.Build.0 = Release|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x64.ActiveCfg = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x64.Build.0 = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x86.ActiveCfg = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|ARM64.Build.0 = Debug|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x64.ActiveCfg = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x64.Build.0 = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x86.ActiveCfg = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|ARM64.ActiveCfg = Release|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|ARM64.Build.0 = Release|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x64.ActiveCfg = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x64.Build.0 = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x86.ActiveCfg = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|ARM64.Build.0 = Debug|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x64.ActiveCfg = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x64.Build.0 = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x86.ActiveCfg = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|ARM64.ActiveCfg = Release|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|ARM64.Build.0 = Release|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x64.ActiveCfg = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x64.Build.0 = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x86.ActiveCfg = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|ARM64.ActiveCfg = Debug|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|ARM64.Build.0 = Debug|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x64.ActiveCfg = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x64.Build.0 = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x86.ActiveCfg = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|ARM64.ActiveCfg = Release|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|ARM64.Build.0 = Release|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x64.ActiveCfg = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x64.Build.0 = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x86.ActiveCfg = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|ARM64.Build.0 = Debug|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x64.ActiveCfg = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x64.Build.0 = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x86.ActiveCfg = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|ARM64.ActiveCfg = Release|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|ARM64.Build.0 = Release|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x64.ActiveCfg = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x64.Build.0 = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x86.ActiveCfg = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|ARM64.Build.0 = Debug|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x64.ActiveCfg = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x64.Build.0 = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x86.ActiveCfg = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|ARM64.ActiveCfg = Release|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|ARM64.Build.0 = Release|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x64.ActiveCfg = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x64.Build.0 = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x86.ActiveCfg = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|ARM64.Build.0 = Debug|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x64.ActiveCfg = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x64.Build.0 = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x86.ActiveCfg = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|ARM64.ActiveCfg = Release|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|ARM64.Build.0 = Release|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x64.ActiveCfg = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x64.Build.0 = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x86.ActiveCfg = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|ARM64.Build.0 = Debug|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x64.ActiveCfg = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x64.Build.0 = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x86.ActiveCfg = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|ARM64.ActiveCfg = Release|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|ARM64.Build.0 = Release|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x64.ActiveCfg = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x64.Build.0 = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x86.ActiveCfg = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|ARM64.Build.0 = Debug|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x64.ActiveCfg = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x64.Build.0 = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x86.ActiveCfg = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|ARM64.ActiveCfg = Release|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|ARM64.Build.0 = Release|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x64.ActiveCfg = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x64.Build.0 = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x86.ActiveCfg = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|ARM64.Build.0 = Debug|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x64.ActiveCfg = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x64.Build.0 = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x86.ActiveCfg = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|ARM64.ActiveCfg = Release|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|ARM64.Build.0 = Release|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x64.ActiveCfg = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x64.Build.0 = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x86.ActiveCfg = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|ARM64.Build.0 = Debug|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x64.ActiveCfg = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x64.Build.0 = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x86.ActiveCfg = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|ARM64.ActiveCfg = Release|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|ARM64.Build.0 = Release|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x64.ActiveCfg = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x64.Build.0 = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x86.ActiveCfg = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|ARM64.ActiveCfg = Debug|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|ARM64.Build.0 = Debug|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x64.ActiveCfg = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x64.Build.0 = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x86.ActiveCfg = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|ARM64.ActiveCfg = Release|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|ARM64.Build.0 = Release|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x64.ActiveCfg = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x64.Build.0 = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x86.ActiveCfg = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|ARM64.Build.0 = Debug|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x64.ActiveCfg = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x64.Build.0 = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x86.ActiveCfg = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|ARM64.ActiveCfg = Release|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|ARM64.Build.0 = Release|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x64.ActiveCfg = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x64.Build.0 = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x86.ActiveCfg = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|ARM64.ActiveCfg = Debug|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|ARM64.Build.0 = Debug|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x64.ActiveCfg = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x64.Build.0 = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x86.ActiveCfg = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|ARM64.ActiveCfg = Release|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|ARM64.Build.0 = Release|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x64.ActiveCfg = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x64.Build.0 = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x86.ActiveCfg = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|ARM64.Build.0 = Debug|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.ActiveCfg = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.Build.0 = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x86.ActiveCfg = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|ARM64.ActiveCfg = Release|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|ARM64.Build.0 = Release|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.ActiveCfg = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.Build.0 = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x86.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|ARM64.Build.0 = Debug|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.ActiveCfg = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.Build.0 = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x86.ActiveCfg = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x86.Build.0 = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|ARM64.ActiveCfg = Release|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|ARM64.Build.0 = Release|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.Build.0 = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x86.ActiveCfg = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x86.Build.0 = Release|Win32 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|ARM64.Build.0 = Debug|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x64.ActiveCfg = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x64.Build.0 = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x86.ActiveCfg = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|ARM64.ActiveCfg = Release|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|ARM64.Build.0 = Release|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x64.ActiveCfg = Release|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x64.Build.0 = Release|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x86.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|ARM64.Build.0 = Debug|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.ActiveCfg = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.Build.0 = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x86.ActiveCfg = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x86.Build.0 = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|ARM64.ActiveCfg = Release|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|ARM64.Build.0 = Release|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.Build.0 = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x86.ActiveCfg = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x86.Build.0 = Release|Win32 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|ARM64.Build.0 = Debug|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x64.ActiveCfg = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x64.Build.0 = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x86.ActiveCfg = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|ARM64.ActiveCfg = Release|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|ARM64.Build.0 = Release|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x64.ActiveCfg = Release|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x64.Build.0 = Release|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x86.ActiveCfg = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|ARM64.Build.0 = Debug|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x64.ActiveCfg = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x64.Build.0 = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x86.ActiveCfg = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|ARM64.ActiveCfg = Release|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|ARM64.Build.0 = Release|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x64.ActiveCfg = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x64.Build.0 = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x86.ActiveCfg = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|ARM64.Build.0 = Debug|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x64.ActiveCfg = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x64.Build.0 = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x86.ActiveCfg = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|ARM64.ActiveCfg = Release|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|ARM64.Build.0 = Release|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x64.ActiveCfg = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x64.Build.0 = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x86.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|ARM64.Build.0 = Debug|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x64.ActiveCfg = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x64.Build.0 = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x86.ActiveCfg = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|ARM64.ActiveCfg = Release|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|ARM64.Build.0 = Release|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x64.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x64.Build.0 = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x86.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x86.Build.0 = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|ARM64.Build.0 = Debug|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x64.ActiveCfg = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x64.Build.0 = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x86.ActiveCfg = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|ARM64.ActiveCfg = Release|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|ARM64.Build.0 = Release|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x64.ActiveCfg = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x64.Build.0 = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x86.ActiveCfg = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|ARM64.ActiveCfg = Debug|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|ARM64.Build.0 = Debug|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x64.ActiveCfg = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x64.Build.0 = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x86.ActiveCfg = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|ARM64.ActiveCfg = Release|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|ARM64.Build.0 = Release|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x64.ActiveCfg = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x64.Build.0 = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x86.ActiveCfg = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|ARM64.Build.0 = Debug|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x64.ActiveCfg = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x64.Build.0 = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x86.ActiveCfg = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|ARM64.ActiveCfg = Release|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|ARM64.Build.0 = Release|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x64.ActiveCfg = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x64.Build.0 = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x86.ActiveCfg = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|ARM64.Build.0 = Debug|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x64.ActiveCfg = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x64.Build.0 = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x86.ActiveCfg = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|ARM64.ActiveCfg = Release|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|ARM64.Build.0 = Release|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x64.ActiveCfg = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x64.Build.0 = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x86.ActiveCfg = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|ARM64.ActiveCfg = Debug|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|ARM64.Build.0 = Debug|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x64.ActiveCfg = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x64.Build.0 = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x86.ActiveCfg = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|ARM64.ActiveCfg = Release|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|ARM64.Build.0 = Release|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x64.ActiveCfg = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x64.Build.0 = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x86.ActiveCfg = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|ARM64.Build.0 = Debug|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x64.ActiveCfg = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x64.Build.0 = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x86.ActiveCfg = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|ARM64.ActiveCfg = Release|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|ARM64.Build.0 = Release|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x64.ActiveCfg = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x64.Build.0 = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x86.ActiveCfg = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|ARM64.Build.0 = Debug|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x64.ActiveCfg = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x64.Build.0 = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x86.ActiveCfg = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|ARM64.ActiveCfg = Release|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|ARM64.Build.0 = Release|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x64.ActiveCfg = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x64.Build.0 = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x86.ActiveCfg = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|ARM64.Build.0 = Debug|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x64.ActiveCfg = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x64.Build.0 = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x86.ActiveCfg = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|ARM64.ActiveCfg = Release|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|ARM64.Build.0 = Release|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x64.ActiveCfg = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x64.Build.0 = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x86.ActiveCfg = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|ARM64.Build.0 = Debug|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x64.ActiveCfg = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x64.Build.0 = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x86.ActiveCfg = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|ARM64.ActiveCfg = Release|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|ARM64.Build.0 = Release|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x64.ActiveCfg = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x64.Build.0 = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x86.ActiveCfg = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|ARM64.Build.0 = Debug|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x64.ActiveCfg = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x64.Build.0 = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x86.ActiveCfg = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|ARM64.ActiveCfg = Release|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|ARM64.Build.0 = Release|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x64.ActiveCfg = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x64.Build.0 = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x86.ActiveCfg = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|ARM64.Build.0 = Debug|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x64.ActiveCfg = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x64.Build.0 = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x86.ActiveCfg = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|ARM64.ActiveCfg = Release|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|ARM64.Build.0 = Release|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x64.ActiveCfg = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x64.Build.0 = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x86.ActiveCfg = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|ARM64.Build.0 = Debug|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x64.ActiveCfg = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x64.Build.0 = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x86.ActiveCfg = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|ARM64.ActiveCfg = Release|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|ARM64.Build.0 = Release|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x64.ActiveCfg = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x64.Build.0 = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x86.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|ARM64.Build.0 = Debug|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x64.ActiveCfg = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x64.Build.0 = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x86.ActiveCfg = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x86.Build.0 = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|ARM64.ActiveCfg = Release|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|ARM64.Build.0 = Release|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x64.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x64.Build.0 = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x86.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x86.Build.0 = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|ARM64.Build.0 = Debug|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x64.ActiveCfg = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x64.Build.0 = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x86.ActiveCfg = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|ARM64.ActiveCfg = Release|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|ARM64.Build.0 = Release|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x64.ActiveCfg = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x64.Build.0 = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x86.ActiveCfg = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x86.Build.0 = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|ARM64.Build.0 = Debug|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x64.ActiveCfg = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x64.Build.0 = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x86.ActiveCfg = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x86.Build.0 = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|ARM64.ActiveCfg = Release|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|ARM64.Build.0 = Release|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x64.ActiveCfg = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x64.Build.0 = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x86.ActiveCfg = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x86.Build.0 = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|ARM64.Build.0 = Debug|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x64.ActiveCfg = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x64.Build.0 = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x86.ActiveCfg = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x86.Build.0 = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|ARM64.ActiveCfg = Release|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|ARM64.Build.0 = Release|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x64.ActiveCfg = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x64.Build.0 = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x86.ActiveCfg = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x86.Build.0 = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|ARM64.Build.0 = Debug|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x64.ActiveCfg = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x64.Build.0 = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x86.ActiveCfg = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x86.Build.0 = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|ARM64.ActiveCfg = Release|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|ARM64.Build.0 = Release|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x64.ActiveCfg = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x64.Build.0 = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x86.ActiveCfg = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x86.Build.0 = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|ARM64.ActiveCfg = Debug|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Debug|ARM64.Build.0 = Debug|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x64.ActiveCfg = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x64.Build.0 = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x86.ActiveCfg = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x86.Build.0 = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|ARM64.ActiveCfg = Release|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Release|ARM64.Build.0 = Release|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Release|x64.ActiveCfg = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x64.Build.0 = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x86.ActiveCfg = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x86.Build.0 = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|ARM64.Build.0 = Debug|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x64.ActiveCfg = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x64.Build.0 = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x86.ActiveCfg = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x86.Build.0 = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|ARM64.ActiveCfg = Release|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|ARM64.Build.0 = Release|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x64.ActiveCfg = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x64.Build.0 = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x86.ActiveCfg = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x86.Build.0 = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|ARM64.Build.0 = Debug|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x64.ActiveCfg = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x64.Build.0 = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x86.ActiveCfg = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x86.Build.0 = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|ARM64.ActiveCfg = Release|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|ARM64.Build.0 = Release|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x64.ActiveCfg = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x64.Build.0 = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x86.ActiveCfg = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x86.Build.0 = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|ARM64.Build.0 = Debug|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x64.ActiveCfg = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x64.Build.0 = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x86.ActiveCfg = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x86.Build.0 = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|ARM64.ActiveCfg = Release|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|ARM64.Build.0 = Release|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x64.ActiveCfg = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x64.Build.0 = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x86.ActiveCfg = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x86.Build.0 = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|ARM64.ActiveCfg = Debug|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|ARM64.Build.0 = Debug|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x64.ActiveCfg = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x64.Build.0 = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x86.ActiveCfg = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x86.Build.0 = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|ARM64.ActiveCfg = Release|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|ARM64.Build.0 = Release|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x64.ActiveCfg = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x64.Build.0 = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x86.ActiveCfg = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x86.Build.0 = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|ARM64.Build.0 = Debug|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x64.ActiveCfg = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x64.Build.0 = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x86.ActiveCfg = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x86.Build.0 = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|ARM64.ActiveCfg = Release|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|ARM64.Build.0 = Release|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x64.ActiveCfg = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x64.Build.0 = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x86.ActiveCfg = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x86.Build.0 = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|ARM64.Build.0 = Debug|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x64.ActiveCfg = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x64.Build.0 = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x86.ActiveCfg = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x86.Build.0 = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|ARM64.ActiveCfg = Release|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|ARM64.Build.0 = Release|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x64.ActiveCfg = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x64.Build.0 = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x86.ActiveCfg = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x86.Build.0 = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|ARM64.ActiveCfg = Debug|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|ARM64.Build.0 = Debug|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x64.ActiveCfg = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x64.Build.0 = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x86.ActiveCfg = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x86.Build.0 = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|ARM64.ActiveCfg = Release|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|ARM64.Build.0 = Release|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x64.ActiveCfg = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x64.Build.0 = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x86.ActiveCfg = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x86.Build.0 = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|ARM64.ActiveCfg = Debug|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|ARM64.Build.0 = Debug|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x64.ActiveCfg = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x64.Build.0 = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x86.ActiveCfg = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x86.Build.0 = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|ARM64.ActiveCfg = Release|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|ARM64.Build.0 = Release|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x64.ActiveCfg = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x64.Build.0 = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x86.ActiveCfg = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x86.Build.0 = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|ARM64.Build.0 = Debug|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x64.ActiveCfg = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x64.Build.0 = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x86.ActiveCfg = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x86.Build.0 = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|ARM64.ActiveCfg = Release|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|ARM64.Build.0 = Release|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x64.ActiveCfg = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x64.Build.0 = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x86.ActiveCfg = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x86.Build.0 = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|ARM64.Build.0 = Debug|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x64.ActiveCfg = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x64.Build.0 = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x86.ActiveCfg = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x86.Build.0 = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|ARM64.ActiveCfg = Release|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|ARM64.Build.0 = Release|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x64.ActiveCfg = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x64.Build.0 = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x86.ActiveCfg = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x86.Build.0 = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|ARM64.Build.0 = Debug|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x64.ActiveCfg = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x64.Build.0 = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x86.ActiveCfg = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x86.Build.0 = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|ARM64.ActiveCfg = Release|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|ARM64.Build.0 = Release|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x64.ActiveCfg = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x64.Build.0 = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x86.ActiveCfg = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x86.Build.0 = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|ARM64.Build.0 = Debug|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x64.ActiveCfg = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x64.Build.0 = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x86.ActiveCfg = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x86.Build.0 = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|ARM64.ActiveCfg = Release|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|ARM64.Build.0 = Release|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x64.ActiveCfg = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x64.Build.0 = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x86.ActiveCfg = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x86.Build.0 = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|ARM64.Build.0 = Debug|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x64.ActiveCfg = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x64.Build.0 = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x86.ActiveCfg = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x86.Build.0 = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|ARM64.ActiveCfg = Release|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|ARM64.Build.0 = Release|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x64.ActiveCfg = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x64.Build.0 = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x86.ActiveCfg = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x86.Build.0 = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|ARM64.Build.0 = Debug|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x64.ActiveCfg = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x64.Build.0 = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x86.ActiveCfg = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x86.Build.0 = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|ARM64.ActiveCfg = Release|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|ARM64.Build.0 = Release|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x64.ActiveCfg = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x64.Build.0 = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x86.ActiveCfg = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x86.Build.0 = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|ARM64.ActiveCfg = Debug|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|ARM64.Build.0 = Debug|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x64.ActiveCfg = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x64.Build.0 = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x86.ActiveCfg = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x86.Build.0 = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|ARM64.ActiveCfg = Release|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|ARM64.Build.0 = Release|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x64.ActiveCfg = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x64.Build.0 = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x86.ActiveCfg = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x86.Build.0 = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|ARM64.Build.0 = Debug|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x64.ActiveCfg = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x64.Build.0 = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x86.ActiveCfg = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x86.Build.0 = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|ARM64.ActiveCfg = Release|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|ARM64.Build.0 = Release|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x64.ActiveCfg = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x64.Build.0 = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x86.ActiveCfg = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x86.Build.0 = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|ARM64.Build.0 = Debug|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x64.ActiveCfg = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x64.Build.0 = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x86.ActiveCfg = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x86.Build.0 = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|ARM64.ActiveCfg = Release|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|ARM64.Build.0 = Release|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x64.ActiveCfg = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x64.Build.0 = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x86.ActiveCfg = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x86.Build.0 = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|ARM64.Build.0 = Debug|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x64.ActiveCfg = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x64.Build.0 = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x86.ActiveCfg = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|ARM64.ActiveCfg = Release|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|ARM64.Build.0 = Release|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x64.ActiveCfg = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x64.Build.0 = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x86.ActiveCfg = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|ARM64.Build.0 = Debug|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x64.ActiveCfg = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x64.Build.0 = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x86.ActiveCfg = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|ARM64.ActiveCfg = Release|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|ARM64.Build.0 = Release|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x64.ActiveCfg = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x64.Build.0 = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x86.ActiveCfg = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|ARM64.Build.0 = Debug|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x64.ActiveCfg = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x64.Build.0 = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x86.ActiveCfg = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|ARM64.ActiveCfg = Release|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|ARM64.Build.0 = Release|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x64.ActiveCfg = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x64.Build.0 = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x86.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|ARM64.Build.0 = Debug|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x64.ActiveCfg = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x64.Build.0 = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x86.ActiveCfg = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x86.Build.0 = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|ARM64.ActiveCfg = Release|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|ARM64.Build.0 = Release|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x64.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x64.Build.0 = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x86.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x86.Build.0 = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|ARM64.ActiveCfg = Debug|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|ARM64.Build.0 = Debug|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x64.ActiveCfg = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x64.Build.0 = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x86.ActiveCfg = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x86.Build.0 = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|ARM64.ActiveCfg = Release|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|ARM64.Build.0 = Release|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x64.ActiveCfg = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x64.Build.0 = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x86.ActiveCfg = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x86.Build.0 = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|ARM64.Build.0 = Debug|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x64.ActiveCfg = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x64.Build.0 = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x86.ActiveCfg = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x86.Build.0 = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|ARM64.ActiveCfg = Release|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|ARM64.Build.0 = Release|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x64.ActiveCfg = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x64.Build.0 = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x86.ActiveCfg = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x86.Build.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.Build.0 = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.Deploy.0 = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.ActiveCfg = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.Build.0 = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.Deploy.0 = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.ActiveCfg = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.Build.0 = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.Deploy.0 = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.ActiveCfg = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.Build.0 = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.Deploy.0 = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.ActiveCfg = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.Build.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.Deploy.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.ActiveCfg = Release|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.Build.0 = Release|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.Deploy.0 = Release|x86 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|ARM64.Build.0 = Debug|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x64.ActiveCfg = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x64.Build.0 = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x86.ActiveCfg = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x86.Build.0 = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|ARM64.ActiveCfg = Release|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|ARM64.Build.0 = Release|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x64.ActiveCfg = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x64.Build.0 = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x86.ActiveCfg = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x86.Build.0 = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|ARM64.Build.0 = Debug|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x64.ActiveCfg = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x64.Build.0 = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x86.ActiveCfg = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x86.Build.0 = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|ARM64.ActiveCfg = Release|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|ARM64.Build.0 = Release|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x64.ActiveCfg = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x64.Build.0 = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x86.ActiveCfg = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x86.Build.0 = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|ARM64.ActiveCfg = Debug|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|ARM64.Build.0 = Debug|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x64.ActiveCfg = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x64.Build.0 = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x86.ActiveCfg = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x86.Build.0 = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|ARM64.ActiveCfg = Release|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|ARM64.Build.0 = Release|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x64.ActiveCfg = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x64.Build.0 = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x86.ActiveCfg = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x86.Build.0 = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|ARM64.Build.0 = Debug|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x64.ActiveCfg = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x64.Build.0 = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x86.ActiveCfg = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x86.Build.0 = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|ARM64.ActiveCfg = Release|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|ARM64.Build.0 = Release|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x64.ActiveCfg = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x64.Build.0 = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x86.ActiveCfg = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x86.Build.0 = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|ARM64.Build.0 = Debug|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x64.ActiveCfg = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x64.Build.0 = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x86.ActiveCfg = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x86.Build.0 = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|ARM64.ActiveCfg = Release|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|ARM64.Build.0 = Release|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x64.ActiveCfg = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x64.Build.0 = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x86.ActiveCfg = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x86.Build.0 = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|ARM64.Build.0 = Debug|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x64.ActiveCfg = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x64.Build.0 = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x86.ActiveCfg = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x86.Build.0 = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|ARM64.ActiveCfg = Release|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|ARM64.Build.0 = Release|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x64.ActiveCfg = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x64.Build.0 = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x86.ActiveCfg = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x86.Build.0 = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|ARM64.ActiveCfg = Debug|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|ARM64.Build.0 = Debug|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x64.ActiveCfg = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x64.Build.0 = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x86.ActiveCfg = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x86.Build.0 = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|ARM64.ActiveCfg = Release|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|ARM64.Build.0 = Release|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x64.ActiveCfg = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x64.Build.0 = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x86.ActiveCfg = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x86.Build.0 = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|ARM64.ActiveCfg = Debug|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|ARM64.Build.0 = Debug|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x64.ActiveCfg = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x64.Build.0 = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x86.ActiveCfg = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x86.Build.0 = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|ARM64.ActiveCfg = Release|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|ARM64.Build.0 = Release|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x64.ActiveCfg = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x64.Build.0 = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x86.ActiveCfg = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x86.Build.0 = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|ARM64.Build.0 = Debug|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x64.ActiveCfg = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x64.Build.0 = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x86.ActiveCfg = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x86.Build.0 = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|ARM64.ActiveCfg = Release|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|ARM64.Build.0 = Release|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x64.ActiveCfg = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x64.Build.0 = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x86.ActiveCfg = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x86.Build.0 = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|ARM64.Build.0 = Debug|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x64.ActiveCfg = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x64.Build.0 = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x86.ActiveCfg = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x86.Build.0 = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|ARM64.ActiveCfg = Release|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|ARM64.Build.0 = Release|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x64.ActiveCfg = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x64.Build.0 = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x86.ActiveCfg = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x86.Build.0 = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|ARM64.Build.0 = Debug|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x64.ActiveCfg = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x64.Build.0 = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x86.ActiveCfg = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x86.Build.0 = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|ARM64.ActiveCfg = Release|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|ARM64.Build.0 = Release|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x64.ActiveCfg = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x64.Build.0 = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x86.ActiveCfg = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x86.Build.0 = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|ARM64.Build.0 = Debug|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x64.ActiveCfg = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x64.Build.0 = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x86.ActiveCfg = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x86.Build.0 = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|ARM64.ActiveCfg = Release|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|ARM64.Build.0 = Release|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x64.ActiveCfg = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x64.Build.0 = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x86.ActiveCfg = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x86.Build.0 = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|ARM64.ActiveCfg = Debug|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|ARM64.Build.0 = Debug|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x64.ActiveCfg = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x64.Build.0 = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x86.ActiveCfg = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x86.Build.0 = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|ARM64.ActiveCfg = Release|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|ARM64.Build.0 = Release|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x64.ActiveCfg = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x64.Build.0 = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x86.ActiveCfg = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x86.Build.0 = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|ARM64.Build.0 = Debug|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x64.ActiveCfg = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x64.Build.0 = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x86.ActiveCfg = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x86.Build.0 = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|ARM64.ActiveCfg = Release|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|ARM64.Build.0 = Release|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x64.ActiveCfg = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x64.Build.0 = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x86.ActiveCfg = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x86.Build.0 = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|ARM64.Build.0 = Debug|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x64.ActiveCfg = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x64.Build.0 = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x86.ActiveCfg = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x86.Build.0 = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|ARM64.ActiveCfg = Release|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|ARM64.Build.0 = Release|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x64.ActiveCfg = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x64.Build.0 = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x86.ActiveCfg = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x86.Build.0 = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|ARM64.Build.0 = Debug|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x64.ActiveCfg = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x64.Build.0 = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x86.ActiveCfg = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x86.Build.0 = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|ARM64.ActiveCfg = Release|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|ARM64.Build.0 = Release|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x64.ActiveCfg = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x64.Build.0 = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.ActiveCfg = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.Build.0 = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.Build.0 = Debug|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x64.ActiveCfg = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x64.Build.0 = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x86.ActiveCfg = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x86.Build.0 = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|ARM64.ActiveCfg = Release|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|ARM64.Build.0 = Release|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x64.ActiveCfg = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x64.Build.0 = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x86.ActiveCfg = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x86.Build.0 = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|ARM64.Build.0 = Debug|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x64.ActiveCfg = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x64.Build.0 = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x86.ActiveCfg = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x86.Build.0 = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|ARM64.ActiveCfg = Release|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|ARM64.Build.0 = Release|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x64.ActiveCfg = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x64.Build.0 = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x86.ActiveCfg = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x86.Build.0 = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|ARM64.Build.0 = Debug|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x64.ActiveCfg = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x64.Build.0 = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x86.ActiveCfg = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x86.Build.0 = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|ARM64.ActiveCfg = Release|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|ARM64.Build.0 = Release|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x64.ActiveCfg = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x64.Build.0 = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x86.ActiveCfg = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x86.Build.0 = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|ARM64.Build.0 = Debug|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x64.ActiveCfg = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x64.Build.0 = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x86.ActiveCfg = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x86.Build.0 = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|ARM64.ActiveCfg = Release|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|ARM64.Build.0 = Release|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x64.ActiveCfg = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x64.Build.0 = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x86.ActiveCfg = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x86.Build.0 = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|ARM64.Build.0 = Debug|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x64.ActiveCfg = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x64.Build.0 = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x86.ActiveCfg = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x86.Build.0 = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|ARM64.ActiveCfg = Release|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|ARM64.Build.0 = Release|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x64.ActiveCfg = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x64.Build.0 = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x86.ActiveCfg = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x86.Build.0 = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|ARM64.ActiveCfg = Debug|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|ARM64.Build.0 = Debug|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x64.ActiveCfg = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x64.Build.0 = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x86.ActiveCfg = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x86.Build.0 = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|ARM64.ActiveCfg = Release|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|ARM64.Build.0 = Release|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x64.ActiveCfg = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x64.Build.0 = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x86.ActiveCfg = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x86.Build.0 = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|ARM64.Build.0 = Debug|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x64.ActiveCfg = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x64.Build.0 = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x86.ActiveCfg = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x86.Build.0 = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|ARM64.ActiveCfg = Release|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|ARM64.Build.0 = Release|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x64.ActiveCfg = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x64.Build.0 = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x86.ActiveCfg = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x86.Build.0 = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|ARM64.Build.0 = Debug|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x64.ActiveCfg = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x64.Build.0 = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x86.ActiveCfg = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x86.Build.0 = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|ARM64.ActiveCfg = Release|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|ARM64.Build.0 = Release|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x64.ActiveCfg = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x64.Build.0 = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x86.ActiveCfg = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x86.Build.0 = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|ARM64.Build.0 = Debug|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x64.ActiveCfg = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x64.Build.0 = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x86.ActiveCfg = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x86.Build.0 = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|ARM64.ActiveCfg = Release|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|ARM64.Build.0 = Release|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x64.ActiveCfg = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x64.Build.0 = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x86.ActiveCfg = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x86.Build.0 = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|ARM64.Build.0 = Debug|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x64.ActiveCfg = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x64.Build.0 = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x86.ActiveCfg = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x86.Build.0 = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|ARM64.ActiveCfg = Release|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|ARM64.Build.0 = Release|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x64.ActiveCfg = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x64.Build.0 = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x86.ActiveCfg = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x86.Build.0 = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|ARM64.Build.0 = Debug|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x64.ActiveCfg = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x64.Build.0 = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x86.ActiveCfg = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x86.Build.0 = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|ARM64.ActiveCfg = Release|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|ARM64.Build.0 = Release|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x64.ActiveCfg = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x64.Build.0 = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x86.ActiveCfg = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x86.Build.0 = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|ARM64.Build.0 = Debug|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x64.ActiveCfg = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x64.Build.0 = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x86.ActiveCfg = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x86.Build.0 = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|ARM64.ActiveCfg = Release|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|ARM64.Build.0 = Release|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x64.ActiveCfg = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x64.Build.0 = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x86.ActiveCfg = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x86.Build.0 = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|ARM64.Build.0 = Debug|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x64.ActiveCfg = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x64.Build.0 = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x86.ActiveCfg = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x86.Build.0 = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|ARM64.ActiveCfg = Release|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|ARM64.Build.0 = Release|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x64.ActiveCfg = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x64.Build.0 = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x86.ActiveCfg = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x86.Build.0 = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|ARM64.Build.0 = Debug|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x64.ActiveCfg = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x64.Build.0 = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x86.ActiveCfg = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x86.Build.0 = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|ARM64.ActiveCfg = Release|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|ARM64.Build.0 = Release|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x64.ActiveCfg = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x64.Build.0 = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x86.ActiveCfg = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x86.Build.0 = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|ARM64.Build.0 = Debug|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x64.ActiveCfg = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x64.Build.0 = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x86.ActiveCfg = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x86.Build.0 = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|ARM64.ActiveCfg = Release|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|ARM64.Build.0 = Release|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x64.ActiveCfg = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x64.Build.0 = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x86.ActiveCfg = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x86.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {3BB8493E-D18E-4485-A320-CB40F90F55AE} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {1A066C63-64B3-45F8-92FE-664E1CCE8077} = {1AFB6476-670D-4E80-A464-657E01DFF482} {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {51920F1F-C28C-4ADF-8660-4238766796C2} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {2151F984-E006-4A9F-92EF-C6DDE3DC8413} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {6C7F47CC-2151-44A3-A546-41C70025132C} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} = {6C7F47CC-2151-44A3-A546-41C70025132C} {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} = {6C7F47CC-2151-44A3-A546-41C70025132C} {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8} = {6C7F47CC-2151-44A3-A546-41C70025132C} {17DA04DF-E393-4397-9CF0-84DABE11032E} = {1AFB6476-670D-4E80-A464-657E01DFF482} {38BDB927-829B-4C65-9CD9-93FB05D66D65} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {FF742965-9A80-41A5-B042-D6C7D3A21708} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {4AFC9975-2456-4C70-94A4-84073C1CED93} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {59BD9891-3837-438A-958D-ADC7F91F6F7E} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4D971245-7A70-41D5-BAA0-DDB5684CAF51} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {74F1B9ED-F59C-4FE7-B473-7B453E30837E} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {F8B870EB-D5F5-45BA-9CF7-A5C459818820} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {E364F67B-BB12-4E91-B639-355866EBCD8B} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {2F305555-C296-497E-AC20-5FA1B237996A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {AF2349B8-E5B6-4004-9502-687C1C7730B1} = {2F305555-C296-497E-AC20-5FA1B237996A} {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} = {2F305555-C296-497E-AC20-5FA1B237996A} {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A} = {2F305555-C296-497E-AC20-5FA1B237996A} {DA425894-6E13-404F-8DCB-78584EC0557A} = {2F305555-C296-497E-AC20-5FA1B237996A} {060D75DA-2D1C-48E6-A4A1-6F0718B64661} = {2F305555-C296-497E-AC20-5FA1B237996A} {748417CA-F17E-487F-9411-CAFB6D3F4877} = {2F305555-C296-497E-AC20-5FA1B237996A} {217DF501-135C-4E38-BFC8-99D4821032EA} = {2F305555-C296-497E-AC20-5FA1B237996A} {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {F055103B-F80B-4D0C-BF48-057C55620033} = {5A7818A8-109C-4E1C-850D-1A654E234B0E} {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {08C8C05F-0362-41BC-818C-724572DF8B06} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {5D00D290-4016-4CFE-9E41-1E7C724509BA} = {1AFB6476-670D-4E80-A464-657E01DFF482} {4AED67B6-55FD-486F-B917-E543DEE2CB3C} = {1AFB6476-670D-4E80-A464-657E01DFF482} {42851751-CBC8-45A6-97F5-7A0753F7B4D1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E} = {2F305555-C296-497E-AC20-5FA1B237996A} {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD} = {2F305555-C296-497E-AC20-5FA1B237996A} {655C9AF2-18D3-4DA6-80E4-85504A7722BA} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {BA58206B-1493-4C75-BFEA-A85768A1E156} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {1D78B84B-CA39-406C-98F4-71F7EC266CC0} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {03276A39-D4E9-417C-8FFD-200B0EE5E871} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {B81FB7B6-D30E-428F-908A-41422EFC1172} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0F85E674-34AE-443D-954C-8321EB8B93B1} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {632BBE62-5421-49EA-835A-7FFA4F499BD6} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4FA206A5-F69F-4193-BF8F-F6EEB496734C} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} = {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {DA5A6FE9-0040-40CC-83CC-764AE5306590} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0351ADA4-0C32-4652-9BA0-41F7B602372B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} = {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} {6955446D-23F7-4023-9BB3-8657F904AF99} = {1AFB6476-670D-4E80-A464-657E01DFF482} {58736667-1027-4AD7-BFDF-7A3A6474103A} = {5A7818A8-109C-4E1C-850D-1A654E234B0E} {D92131D6-7610-4D60-A7DB-1C169783F83B} = {1AFB6476-670D-4E80-A464-657E01DFF482} {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {0B593A6C-4143-4337-860E-DB5710FB87DB} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {1AFB6476-670D-4E80-A464-657E01DFF482} {5A7818A8-109C-4E1C-850D-1A654E234B0E} = {1AFB6476-670D-4E80-A464-657E01DFF482} {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} = {1AFB6476-670D-4E80-A464-657E01DFF482} {7319089E-46D6-4400-BC65-E39BDF1416EE} = {1AFB6476-670D-4E80-A464-657E01DFF482} {CABA8DFB-823B-4BF2-93AC-3F31984150D9} = {1AFB6476-670D-4E80-A464-657E01DFF482} {98537082-0FDB-40DE-ABD8-0DC5A4269BAB} = {1AFB6476-670D-4E80-A464-657E01DFF482} {B39DC643-4663-475E-B329-03F0C9918D48} = {1AFB6476-670D-4E80-A464-657E01DFF482} {8F62026A-294B-41C6-8839-87463613F216} = {1AFB6476-670D-4E80-A464-657E01DFF482} {C3A17DCA-217B-462C-BB0C-BE086AF80081} = {1AFB6476-670D-4E80-A464-657E01DFF482} {69E1EE8D-143A-4060-9129-4658ACF14AAF} = {2F305555-C296-497E-AC20-5FA1B237996A} {ECC20689-002A-4354-95A6-B58DF089C6FF} = {2F305555-C296-497E-AC20-5FA1B237996A} {4BABF3FE-3451-42FD-873F-3C332E18DCEF} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0648DF05-5DDA-4BE1-B5F2-584926EBDB65} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {E496B7FC-1E99-4BAB-849B-0E8367040B02} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {7F4B3A60-BC27-45A7-8000-68B0B6EA7466} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {8DF78B53-200E-451F-9328-01EB907193AE} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {23D2070D-E4AD-4ADD-85A7-083D9C76AD49} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {62173D9A-6724-4C00-A1C8-FB646480A9EC} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {127F38E0-40AA-4594-B955-5616BF206882} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} = {127F38E0-40AA-4594-B955-5616BF206882} {D940E07F-532C-4FF3-883F-790DA014F19A} = {127F38E0-40AA-4594-B955-5616BF206882} {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {3E424AD2-19E5-4AE6-B833-F53963EB5FC1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {106CBECA-0701-4FC3-838C-9DF816A19AE2} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2D604C07-51FC-46BB-9EB7-75AECC7F5E81} = {106CBECA-0701-4FC3-838C-9DF816A19AE2} {2EDB3EB4-FA92-4BFF-B2D8-566584837231} = {106CBECA-0701-4FC3-838C-9DF816A19AE2} {48804216-2A0E-4168-A6D8-9CD068D14227} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {FF1D7936-842A-4BBB-8BEA-E9FE796DE700} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {AC2857B4-103D-4D6D-9740-926EBF785042} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {11491FD8-F921-48BF-880C-7FEA185B80A1} = {2F305555-C296-497E-AC20-5FA1B237996A} {F40C3397-1834-4530-B2D9-8F8B8456BCDF} = {2F305555-C296-497E-AC20-5FA1B237996A} {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4ED320BC-BA04-4D42-8D15-CBE62151F08B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {322566EF-20DC-43A6-B9F8-616AF942579A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {E94FD11C-0591-456F-899F-EFC0CA548336} = {322566EF-20DC-43A6-B9F8-616AF942579A} {782A61BE-9D85-4081-B35C-1CCC9DCC1E88} = {322566EF-20DC-43A6-B9F8-616AF942579A} {809AA252-E17A-4FA2-B0A1-0450976B763F} = {2F305555-C296-497E-AC20-5FA1B237996A} {133281D8-1BCE-4D07-B31E-796612A9609E} = {2F305555-C296-497E-AC20-5FA1B237996A} {805306FF-A562-4415-8DEF-E493BDC45918} = {2F305555-C296-497E-AC20-5FA1B237996A} {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3} = {2F305555-C296-497E-AC20-5FA1B237996A} {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2} = {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9} = {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} {9F94B303-5E21-4364-9362-64426F8DB932} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E} = {322566EF-20DC-43A6-B9F8-616AF942579A} {F7C8C0F1-5431-4347-89D0-8E5354F93CF2} = {2F305555-C296-497E-AC20-5FA1B237996A} {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC} = {2F305555-C296-497E-AC20-5FA1B237996A} {04B193D7-3E21-46B8-A958-89B63A8A69DE} = {2F305555-C296-497E-AC20-5FA1B237996A} {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {FD464B4C-2F68-4D06-91E7-4208146C41F5} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {020A7474-3601-4160-A159-D7B70B77B15F} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {27718999-C175-450A-861C-89F911E16A88} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {1DBBB112-4BB1-444B-8EBB-E66555C76BA6} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {5A1DB2F0-0715-4B3B-98E6-79BC41540045} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {93B72A06-C8BD-484F-A6F7-C9F280B150BF} = {6C7F47CC-2151-44A3-A546-41C70025132C} {18B3DB45-4FFE-4D01-97D6-5223FEEE1853} = {6C7F47CC-2151-44A3-A546-41C70025132C} {0F14491C-6369-4C45-AAA8-135814E66E6B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {34A354C5-23C7-4343-916C-C52DAF4FC39D} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {3264DF53-C805-4B0C-867C-FCEAF7AEF762} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {31CAD28E-778A-441C-85BC-40AB3EAA2A10} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {25C91A4E-BA4E-467A-85CD-8B62545BF674} = {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1} = {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} {212AD910-8488-4036-BE20-326931B75FB2} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {7AC943C9-52E8-44CF-9083-744D8049667B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A} = {7AC943C9-52E8-44CF-9083-744D8049667B} {92C39820-9F84-4529-BC7D-22AAE514D63B} = {7AC943C9-52E8-44CF-9083-744D8049667B} {515554D1-D004-4F7F-A107-2211FC0F6B2C} = {7AC943C9-52E8-44CF-9083-744D8049667B} {C97D9A5D-206C-454E-997E-009E227D7F02} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {31D1C81D-765F-4446-AA62-E743F6325049} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {B41B888C-7DB8-4747-B262-4062E05A230D} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {AB82E5DD-C32D-4F28-9746-2C780846188E} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {E69B044A-2F8A-45AA-AD0B-256C59421807} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {C604B37E-9D0E-4484-8778-E8B31B0E1B3A} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788} = {1AFB6476-670D-4E80-A464-657E01DFF482} {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97} = {1AFB6476-670D-4E80-A464-657E01DFF482} {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {A1425B53-3D61-4679-8623-E64A0D3D0A48} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {ED9A1AC6-AEB0-4569-A6E9-E1696182B545} = {2F305555-C296-497E-AC20-5FA1B237996A} {5A5DD09D-723A-44D3-8F2B-293584C3D731} = {2F305555-C296-497E-AC20-5FA1B237996A} {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9} = {2F305555-C296-497E-AC20-5FA1B237996A} {54F7C616-FD41-4E62-BFF9-015686914F4D} = {2F305555-C296-497E-AC20-5FA1B237996A} {143F13E3-D2E3-4D83-B035-356612D99956} = {2F305555-C296-497E-AC20-5FA1B237996A} {56CC2F10-6E41-453D-BE16-C593A5E58482} = {2F305555-C296-497E-AC20-5FA1B237996A} {CA5518ED-0458-4B09-8F53-4122B9888655} = {2F305555-C296-497E-AC20-5FA1B237996A} {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D} = {2F305555-C296-497E-AC20-5FA1B237996A} {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA} = {2F305555-C296-497E-AC20-5FA1B237996A} {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2833C9C6-AB32-4048-A5C7-A70898337B57} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {50B82783-242F-42D2-BC03-B3430BF01354} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {A663E672-B26D-4EC0-BEAB-FE2E424AC46F} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {8A08D663-4995-40E3-B42C-3F910625F284} = {322566EF-20DC-43A6-B9F8-616AF942579A} {D962A009-834F-4EEC-AABB-430DF8F98E39} = {322566EF-20DC-43A6-B9F8-616AF942579A} {D9C5DE64-6849-4278-91AD-9660AECF2876} = {322566EF-20DC-43A6-B9F8-616AF942579A} {9873BA05-4C41-4819-9283-CF45D795431B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {FC373B24-3293-453C-AAF5-CF2909DCEE6A} = {9873BA05-4C41-4819-9283-CF45D795431B} {9CE59ED5-7087-4353-88EB-788038A73CEC} = {1AFB6476-670D-4E80-A464-657E01DFF482} {FD86C06A-FB54-4D5E-9831-1CDADF60D45F} = {929C1324-22E8-4412-A9A8-80E85F3985A5} {697C6AF9-0A48-49A9-866C-67DA12384015} = {929C1324-22E8-4412-A9A8-80E85F3985A5} {929C1324-22E8-4412-A9A8-80E85F3985A5} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {9EBAA524-0EDA-470B-95D4-39383285CBB2} = {1AFB6476-670D-4E80-A464-657E01DFF482} {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {D095BE44-1F2E-463E-A494-121892A75EA2} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {90F9FA90-2C20-4004-96E6-F3B78151F5A5} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {3B227528-4BA6-4CAF-B44A-A10C78A64849} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {F5E1146E-B7B3-4E11-85FD-270A500BD78C} = {3B227528-4BA6-4CAF-B44A-A10C78A64849} {3157FA75-86CF-4EE2-8F62-C43F776493C6} = {3B227528-4BA6-4CAF-B44A-A10C78A64849} {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA} = {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} {B9420661-B0E4-4241-ABD4-4A27A1F64250} = {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {C3A2F9D1-7930-4EF4-A6FC-7EE0A99821D0} EndGlobalSection EndGlobal
Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.32014.148 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "runner", "src\runner\runner.vcxproj", "{9412D5C6-2CF2-4FC2-A601-B55508EA9B27}" ProjectSection(ProjectDependencies) = postProject {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} = {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} = {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} {0B593A6C-4143-4337-860E-DB5710FB87DB} = {0B593A6C-4143-4337-860E-DB5710FB87DB} {17DA04DF-E393-4397-9CF0-84DABE11032E} = {17DA04DF-E393-4397-9CF0-84DABE11032E} {217DF501-135C-4E38-BFC8-99D4821032EA} = {217DF501-135C-4E38-BFC8-99D4821032EA} {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} = {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} {48804216-2A0E-4168-A6D8-9CD068D14227} = {48804216-2A0E-4168-A6D8-9CD068D14227} {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} = {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} = {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} {655C9AF2-18D3-4DA6-80E4-85504A7722BA} = {655C9AF2-18D3-4DA6-80E4-85504A7722BA} {69E1EE8D-143A-4060-9129-4658ACF14AAF} = {69E1EE8D-143A-4060-9129-4658ACF14AAF} {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} = {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} = {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} {AF2349B8-E5B6-4004-9502-687C1C7730B1} = {AF2349B8-E5B6-4004-9502-687C1C7730B1} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {B25AC7A5-FB9F-4789-B392-D5C85E948670} {BA58206B-1493-4C75-BFEA-A85768A1E156} = {BA58206B-1493-4C75-BFEA-A85768A1E156} {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D} = {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D} {D940E07F-532C-4FF3-883F-790DA014F19A} = {D940E07F-532C-4FF3-883F-790DA014F19A} {DA425894-6E13-404F-8DCB-78584EC0557A} = {DA425894-6E13-404F-8DCB-78584EC0557A} {E364F67B-BB12-4E91-B639-355866EBCD8B} = {E364F67B-BB12-4E91-B639-355866EBCD8B} {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "modules", "modules", "{4574FDD0-F61D-4376-98BF-E5A1262C11EC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "interface", "interface", "{3BB8493E-D18E-4485-A320-CB40F90F55AE}" ProjectSection(SolutionItems) = preProject src\modules\interface\powertoy_module_interface.h = src\modules\interface\powertoy_module_interface.h EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "fancyzones", "fancyzones", "{D1D6BC88-09AE-4FB4-AD24-5DED46A791DD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZonesLib", "src\modules\fancyzones\FancyZonesLib\FancyZonesLib.vcxproj", "{F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnitTests-FancyZones", "src\modules\fancyzones\FancyZonesTests\UnitTests\UnitTests.vcxproj", "{9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}" ProjectSection(ProjectDependencies) = postProject {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "common", "common", "{1AFB6476-670D-4E80-A464-657E01DFF482}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnitTests-CommonLib", "src\common\UnitTests-CommonLib\UnitTests-CommonLib.vcxproj", "{1A066C63-64B3-45F8-92FE-664E1CCE8077}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FancyZonesEditor", "src\modules\fancyzones\editor\FancyZonesEditor\FancyZonesEditor.csproj", "{5CCC8468-DEC8-4D36-99D4-5C891BEBD481}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "powerrename", "powerrename", "{89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameExt", "src\modules\powerrename\dll\PowerRenameExt.vcxproj", "{B25AC7A5-FB9F-4789-B392-D5C85E948670}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameLib", "src\modules\powerrename\lib\PowerRenameLib.vcxproj", "{51920F1F-C28C-4ADF-8660-4238766796C2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameTest", "src\modules\powerrename\testapp\PowerRenameTest.vcxproj", "{A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameUnitTests", "src\modules\powerrename\unittests\PowerRenameLibUnitTests.vcxproj", "{2151F984-E006-4A9F-92EF-C6DDE3DC8413}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {B25AC7A5-FB9F-4789-B392-D5C85E948670} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ModuleTemplateCompileTest", "tools\project_template\ModuleTemplate\ModuleTemplateCompileTest.vcxproj", "{64A80062-4D8B-4229-8A38-DFA1D7497749}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManager", "src\modules\keyboardmanager\dll\KeyboardManager.vcxproj", "{89F34AF7-1C34-4A72-AA6E-534BCF972BD9}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "imageresizer", "imageresizer", "{6C7F47CC-2151-44A3-A546-41C70025132C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageResizerUI", "src\modules\imageresizer\ui\ImageResizerUI.csproj", "{2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerExt", "src\modules\imageresizer\dll\ImageResizerExt.vcxproj", "{0B43679E-EDFA-4DA0-AD30-F4628B308B1B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageResizerUITest", "src\modules\imageresizer\tests\ImageResizerUITest.csproj", "{E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.ActionRunner", "src\ActionRunner\ActionRunner.vcxproj", "{D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}" ProjectSection(ProjectDependencies) = postProject {17DA04DF-E393-4397-9CF0-84DABE11032E} = {17DA04DF-E393-4397-9CF0-84DABE11032E} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ApplicationUpdate", "src\common\updating\updating.vcxproj", "{17DA04DF-E393-4397-9CF0-84DABE11032E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "keyboardmanager", "keyboardmanager", "{38BDB927-829B-4C65-9CD9-93FB05D66D65}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerCommon", "src\modules\keyboardmanager\common\KeyboardManagerCommon.vcxproj", "{8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "launcher", "launcher", "{C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Infrastructure", "src\modules\launcher\Wox.Infrastructure\Wox.Infrastructure.csproj", "{4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin", "src\modules\launcher\Wox.Plugin\Wox.Plugin.csproj", "{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Test", "src\modules\launcher\Wox.Test\Wox.Test.csproj", "{FF742965-9A80-41A5-B042-D6C7D3A21708}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{4AFC9975-2456-4C70-94A4-84073C1CED93}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Calculator", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Calculator\Microsoft.PowerToys.Run.Plugin.Calculator.csproj", "{59BD9891-3837-438A-958D-ADC7F91F6F7E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.VSCodeWorkspaces", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.VSCodeWorkspaces\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.csproj", "{4D971245-7A70-41D5-BAA0-DDB5684CAF51}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowWalker", "src\modules\launcher\Plugins\Microsoft.Plugin.WindowWalker\Microsoft.Plugin.WindowWalker.csproj", "{74F1B9ED-F59C-4FE7-B473-7B453E30837E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Program", "src\modules\launcher\Plugins\Microsoft.Plugin.Program\Microsoft.Plugin.Program.csproj", "{FDB3555B-58EF-4AE6-B5F1-904719637AB4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Shell", "src\modules\launcher\Plugins\Microsoft.Plugin.Shell\Microsoft.Plugin.Shell.csproj", "{C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Indexer", "src\modules\launcher\Plugins\Microsoft.Plugin.Indexer\Microsoft.Plugin.Indexer.csproj", "{F8B870EB-D5F5-45BA-9CF7-A5C459818820}" ProjectSection(ProjectDependencies) = postProject {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} = {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.Launcher", "src\modules\launcher\Microsoft.Launcher\Microsoft.Launcher.vcxproj", "{E364F67B-BB12-4E91-B639-355866EBCD8B}" ProjectSection(ProjectDependencies) = postProject {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} = {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerLauncher", "src\modules\launcher\PowerLauncher\PowerLauncher.csproj", "{F97E5003-F263-4D4A-A964-0F1F3C82DEF2}" ProjectSection(ProjectDependencies) = postProject {03276A39-D4E9-417C-8FFD-200B0EE5E871} = {03276A39-D4E9-417C-8FFD-200B0EE5E871} {0351ADA4-0C32-4652-9BA0-41F7B602372B} = {0351ADA4-0C32-4652-9BA0-41F7B602372B} {4BABF3FE-3451-42FD-873F-3C332E18DCEF} = {4BABF3FE-3451-42FD-873F-3C332E18DCEF} {4D971245-7A70-41D5-BAA0-DDB5684CAF51} = {4D971245-7A70-41D5-BAA0-DDB5684CAF51} {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} = {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {5043CECE-E6A7-4867-9CBE-02D27D83747A} {59BD9891-3837-438A-958D-ADC7F91F6F7E} = {59BD9891-3837-438A-958D-ADC7F91F6F7E} {5A1DB2F0-0715-4B3B-98E6-79BC41540045} = {5A1DB2F0-0715-4B3B-98E6-79BC41540045} {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} = {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} {74F1B9ED-F59C-4FE7-B473-7B453E30837E} = {74F1B9ED-F59C-4FE7-B473-7B453E30837E} {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} = {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} {9F94B303-5E21-4364-9362-64426F8DB932} = {9F94B303-5E21-4364-9362-64426F8DB932} {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} = {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} = {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} = {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} {D095BE44-1F2E-463E-A494-121892A75EA2} = {D095BE44-1F2E-463E-A494-121892A75EA2} {F8B870EB-D5F5-45BA-9CF7-A5C459818820} = {F8B870EB-D5F5-45BA-9CF7-A5C459818820} {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} = {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {FDB3555B-58EF-4AE6-B5F1-904719637AB4} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{E775CC2C-24CB-48D6-9C3A-BE4CCE0DB17A}" ProjectSection(SolutionItems) = preProject src\tests\win-app-driver\README.md = src\tests\win-app-driver\README.md EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "previewpane", "previewpane", "{2F305555-C296-497E-AC20-5FA1B237996A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PreviewHandlerCommon", "src\modules\previewpane\Common\PreviewHandlerCommon.csproj", "{AF2349B8-E5B6-4004-9502-687C1C7730B1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MarkdownPreviewHandler", "src\modules\previewpane\MarkdownPreviewHandler\MarkdownPreviewHandler.csproj", "{6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-MarkdownPreviewHandler", "src\modules\previewpane\UnitTests-MarkdownPreviewHandler\UnitTests-MarkdownPreviewHandler.csproj", "{A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SvgPreviewHandler", "src\modules\previewpane\SvgPreviewHandler\SvgPreviewHandler.csproj", "{DA425894-6E13-404F-8DCB-78584EC0557A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-SvgPreviewHandler", "src\modules\previewpane\UnitTests-SvgPreviewHandler\UnitTests-SvgPreviewHandler.csproj", "{060D75DA-2D1C-48E6-A4A1-6F0718B64661}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PreviewHandlerCommon", "src\modules\previewpane\UnitTests-PreviewHandlerCommon\UnitTests-PreviewHandlerCommon.csproj", "{748417CA-F17E-487F-9411-CAFB6D3F4877}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "powerpreview", "src\modules\previewpane\powerpreview\powerpreview.vcxproj", "{217DF501-135C-4E38-BFC8-99D4821032EA}" ProjectSection(ProjectDependencies) = postProject {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "settings-ui", "settings-ui", "{C3081D9A-1586-441A-B5F4-ED815B3719C1}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4981CCD1-4CD9-4A49-B240-00AA46493FF8}" ProjectSection(SolutionItems) = preProject src\.editorconfig = src\.editorconfig .vsconfig = .vsconfig Directory.Build.props = Directory.Build.props Directory.Build.targets = Directory.Build.targets Directory.Packages.props = Directory.Packages.props Solution.props = Solution.props EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Settings.UI.Library", "src\settings-ui\Settings.UI.Library\Settings.UI.Library.csproj", "{B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.Interop", "src\common\interop\PowerToys.Interop.vcxproj", "{F055103B-F80B-4D0C-BF48-057C55620033}" ProjectSection(ProjectDependencies) = postProject {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Folder", "src\modules\launcher\Plugins\Microsoft.Plugin.Folder\Microsoft.Plugin.Folder.csproj", "{787B8AA6-CA93-4C84-96FE-DF31110AD1C4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerLauncher.Telemetry", "src\modules\launcher\PowerLauncher.Telemetry\PowerLauncher.Telemetry.csproj", "{08C8C05F-0362-41BC-818C-724572DF8B06}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedTelemetry", "src\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj", "{5D00D290-4016-4CFE-9E41-1E7C724509BA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedCommon", "src\common\ManagedCommon\ManagedCommon.csproj", "{4AED67B6-55FD-486F-B917-E543DEE2CB3C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Program.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Program.UnitTests\Microsoft.Plugin.Program.UnitTests.csproj", "{42851751-CBC8-45A6-97F5-7A0753F7B4D1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-SvgThumbnailProvider", "src\modules\previewpane\UnitTests-SvgThumbnailProvider\UnitTests-SvgThumbnailProvider.csproj", "{1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SvgThumbnailProvider", "src\modules\previewpane\SvgThumbnailProvider\SvgThumbnailProvider.csproj", "{8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ColorPicker", "src\modules\colorPicker\ColorPicker\ColorPicker.vcxproj", "{655C9AF2-18D3-4DA6-80E4-85504A7722BA}" ProjectSection(ProjectDependencies) = postProject {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} = {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ColorPickerUI", "src\modules\colorPicker\ColorPickerUI\ColorPickerUI.csproj", "{BA58206B-1493-4C75-BFEA-A85768A1E156}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "colorpicker", "colorpicker", "{1D78B84B-CA39-406C-98F4-71F7EC266CC0}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Uri", "src\modules\launcher\Plugins\Microsoft.Plugin.Uri\Microsoft.Plugin.Uri.csproj", "{03276A39-D4E9-417C-8FFD-200B0EE5E871}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Uri.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Uri.UnitTests\Microsoft.Plugin.Uri.UnitTests.csproj", "{B81FB7B6-D30E-428F-908A-41422EFC1172}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Settings.UI.UnitTests", "src\settings-ui\Settings.UI.UnitTests\Settings.UI.UnitTests.csproj", "{0F85E674-34AE-443D-954C-8321EB8B93B1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.csproj", "{632BBE62-5421-49EA-835A-7FFA4F499BD6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Folder.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Folder.UnitTests\Microsoft.Plugin.Folder.UnitTests.csproj", "{4FA206A5-F69F-4193-BF8F-F6EEB496734C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTest-ColorPickerUI", "src\modules\colorPicker\UnitTest-ColorPickerUI\UnitTest-ColorPickerUI.csproj", "{090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "spdlog", "src\logging\logging.vcxproj", "{7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.System", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.System\Microsoft.PowerToys.Run.Plugin.System.csproj", "{FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.System.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.System.UnitTests\Microsoft.PowerToys.Run.Plugin.System.UnitTests.csproj", "{DA5A6FE9-0040-40CC-83CC-764AE5306590}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Service", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Service\Microsoft.PowerToys.Run.Plugin.Service.csproj", "{0351ADA4-0C32-4652-9BA0-41F7B602372B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "logger", "src\common\logger\logger.vcxproj", "{D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}" ProjectSection(ProjectDependencies) = postProject {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} = {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SettingsAPI", "src\common\SettingsAPI\SettingsAPI.vcxproj", "{6955446D-23F7-4023-9BB3-8657F904AF99}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Interop.Tests", "src\common\interop\interop-tests\Microsoft.Interop.Tests.csproj", "{58736667-1027-4AD7-BFDF-7A3A6474103A}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "notifications", "notifications", "{D92131D6-7610-4D60-A7DB-1C169783F83B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Notifications", "src\common\notifications\notifications.vcxproj", "{1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BackgroundActivatorDLL", "src\common\notifications\BackgroundActivatorDLL\BackgroundActivatorDLL.vcxproj", "{031AC72E-FA28-4AB7-B690-6F7B9C28AA73}" ProjectSection(ProjectDependencies) = postProject {0B593A6C-4143-4337-860E-DB5710FB87DB} = {0B593A6C-4143-4337-860E-DB5710FB87DB} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BackgroundActivator", "src\common\notifications\BackgroundActivator\BackgroundActivator.vcxproj", "{0B593A6C-4143-4337-860E-DB5710FB87DB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Version", "src\common\version\version.vcxproj", "{CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "interop", "interop", "{5A7818A8-109C-4E1C-850D-1A654E234B0E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "log", "log", "{E4E03FE0-94FD-47C7-88C5-F17D0AA549D3}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "COMUtils", "src\common\COMUtils\COMUtils.vcxproj", "{7319089E-46D6-4400-BC65-E39BDF1416EE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Display", "src\common\Display\Display.vcxproj", "{CABA8DFB-823B-4BF2-93AC-3F31984150D9}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Themes", "src\common\Themes\Themes.vcxproj", "{98537082-0FDB-40DE-ABD8-0DC5A4269BAB}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "utils", "utils", "{B39DC643-4663-475E-B329-03F0C9918D48}" ProjectSection(SolutionItems) = preProject src\common\utils\appMutex.h = src\common\utils\appMutex.h src\common\utils\color.h = src\common\utils\color.h src\common\utils\com_object_factory.h = src\common\utils\com_object_factory.h src\common\utils\elevation.h = src\common\utils\elevation.h src\common\utils\EventLocker.h = src\common\utils\EventLocker.h src\common\utils\EventWaiter.h = src\common\utils\EventWaiter.h src\common\utils\excluded_apps.h = src\common\utils\excluded_apps.h src\common\utils\exec.h = src\common\utils\exec.h src\common\utils\game_mode.h = src\common\utils\game_mode.h src\common\utils\gpo.h = src\common\utils\gpo.h src\common\utils\HDropIterator.h = src\common\utils\HDropIterator.h src\common\utils\HttpClient.h = src\common\utils\HttpClient.h src\common\utils\json.h = src\common\utils\json.h src\common\utils\logger_helper.h = src\common\utils\logger_helper.h src\common\utils\modulesRegistry.h = src\common\utils\modulesRegistry.h src\common\utils\MsiUtils.h = src\common\utils\MsiUtils.h src\common\utils\MsWindowsSettings.h = src\common\utils\MsWindowsSettings.h src\common\utils\os-detect.h = src\common\utils\os-detect.h src\common\utils\package.h = src\common\utils\package.h src\common\utils\ProcessWaiter.h = src\common\utils\ProcessWaiter.h src\common\utils\process_path.h = src\common\utils\process_path.h src\common\utils\registry.h = src\common\utils\registry.h src\common\utils\resources.h = src\common\utils\resources.h src\common\utils\serialized.h = src\common\utils\serialized.h src\common\utils\string_utils.h = src\common\utils\string_utils.h src\common\utils\timeutil.h = src\common\utils\timeutil.h src\common\utils\UnhandledExceptionHandler.h = src\common\utils\UnhandledExceptionHandler.h src\common\utils\winapi_error.h = src\common\utils\winapi_error.h src\common\utils\window.h = src\common\utils\window.h EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Telemetry", "Telemetry", "{8F62026A-294B-41C6-8839-87463613F216}" ProjectSection(SolutionItems) = preProject src\common\Telemetry\ProjectTelemetry.h = src\common\Telemetry\ProjectTelemetry.h src\common\Telemetry\TelemetryBase.cs = src\common\Telemetry\TelemetryBase.cs src\common\Telemetry\TraceLoggingDefines.h = src\common\Telemetry\TraceLoggingDefines.h EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common.UI", "src\common\Common.UI\Common.UI.csproj", "{C3A17DCA-217B-462C-BB0C-BE086AF80081}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PdfPreviewHandler", "src\modules\previewpane\PdfPreviewHandler\PdfPreviewHandler.csproj", "{69E1EE8D-143A-4060-9129-4658ACF14AAF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PdfPreviewHandler", "src\modules\previewpane\UnitTests-PdfPreviewHandler\UnitTests-PdfPreviewHandler.csproj", "{ECC20689-002A-4354-95A6-B58DF089C6FF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Registry", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Registry\Microsoft.PowerToys.Run.Plugin.Registry.csproj", "{4BABF3FE-3451-42FD-873F-3C332E18DCEF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Registry.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Registry.UnitTest\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.csproj", "{0648DF05-5DDA-4BE1-B5F2-584926EBDB65}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngine", "src\modules\keyboardmanager\KeyboardManagerEngine\KeyboardManagerEngine.vcxproj", "{BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngineLibrary", "src\modules\keyboardmanager\KeyboardManagerEngineLibrary\KeyboardManagerEngineLibrary.vcxproj", "{E496B7FC-1E99-4BAB-849B-0E8367040B02}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngineTest", "src\modules\keyboardmanager\KeyboardManagerEngineTest\KeyboardManagerEngineTest.vcxproj", "{7F4B3A60-BC27-45A7-8000-68B0B6EA7466}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditor", "src\modules\keyboardmanager\KeyboardManagerEditor\KeyboardManagerEditor.vcxproj", "{8DF78B53-200E-451F-9328-01EB907193AE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditorLibrary", "src\modules\keyboardmanager\KeyboardManagerEditorLibrary\KeyboardManagerEditorLibrary.vcxproj", "{23D2070D-E4AD-4ADD-85A7-083D9C76AD49}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditorTest", "src\modules\keyboardmanager\KeyboardManagerEditorTest\KeyboardManagerEditorTest.vcxproj", "{62173D9A-6724-4C00-A1C8-FB646480A9EC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "awake", "awake", "{127F38E0-40AA-4594-B955-5616BF206882}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AwakeModuleInterface", "src\modules\awake\AwakeModuleInterface\AwakeModuleInterface.vcxproj", "{5E7360A8-D048-4ED3-8F09-0BFD64C5529A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Awake", "src\modules\awake\Awake\Awake.csproj", "{D940E07F-532C-4FF3-883F-790DA014F19A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.UnitConverter", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.UnitConverter\Community.PowerToys.Run.Plugin.UnitConverter.csproj", "{BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.UnitConverter.UnitTest", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.csproj", "{3E424AD2-19E5-4AE6-B833-F53963EB5FC1}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "shortcutguide", "shortcutguide", "{106CBECA-0701-4FC3-838C-9DF816A19AE2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShortcutGuideModuleInterface", "src\modules\ShortcutGuide\ShortcutGuideModuleInterface\ShortcutGuideModuleInterface.vcxproj", "{2D604C07-51FC-46BB-9EB7-75AECC7F5E81}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShortcutGuide", "src\modules\ShortcutGuide\ShortcutGuide\ShortcutGuide.vcxproj", "{2EDB3EB4-FA92-4BFF-B2D8-566584837231}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZonesModuleInterface", "src\modules\fancyzones\FancyZonesModuleInterface\FancyZonesModuleInterface.vcxproj", "{48804216-2A0E-4168-A6D8-9CD068D14227}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZones", "src\modules\fancyzones\FancyZones\FancyZones.vcxproj", "{FF1D7936-842A-4BBB-8BEA-E9FE796DE700}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.Update", "src\Update\PowerToys.Update.vcxproj", "{44CE9AE1-4390-42C5-BACC-0FD6B40AA203}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.WindowsSettings", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsSettings\Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj", "{5043CECE-E6A7-4867-9CBE-02D27D83747A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceShared", "src\modules\videoconference\VideoConferenceShared\VideoConferenceShared.vcxproj", "{459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceModule", "src\modules\videoconference\VideoConferenceModule\VideoConference.vcxproj", "{5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceProxyFilter", "src\modules\videoconference\VideoConferenceProxyFilter\VideoConferenceProxyFilter.vcxproj", "{AC2857B4-103D-4D6D-9740-926EBF785042}" ProjectSection(ProjectDependencies) = postProject {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} = {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VideoConference", "VideoConference", "{470FBAF9-E1F8-4F3E-8786-198A1C81C8A8}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PdfThumbnailProvider", "src\modules\previewpane\PdfThumbnailProvider\PdfThumbnailProvider.csproj", "{11491FD8-F921-48BF-880C-7FEA185B80A1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PdfThumbnailProvider", "src\modules\previewpane\UnitTests-PdfThumbnailProvider\UnitTests-PdfThumbnailProvider.csproj", "{F40C3397-1834-4530-B2D9-8F8B8456BCDF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.WindowsTerminal", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsTerminal\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.csproj", "{A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowsTerminal.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.UnitTests\Microsoft.Plugin.WindowsTerminal.UnitTests.csproj", "{4ED320BC-BA04-4D42-8D15-CBE62151F08B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MouseUtils", "MouseUtils", "{322566EF-20DC-43A6-B9F8-616AF942579A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FindMyMouse", "src\modules\MouseUtils\FindMyMouse\FindMyMouse.vcxproj", "{E94FD11C-0591-456F-899F-EFC0CA548336}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseHighlighter", "src\modules\MouseUtils\MouseHighlighter\MouseHighlighter.vcxproj", "{782A61BE-9D85-4081-B35C-1CCC9DCC1E88}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GcodeThumbnailProvider", "src\modules\previewpane\GcodeThumbnailProvider\GcodeThumbnailProvider.csproj", "{809AA252-E17A-4FA2-B0A1-0450976B763F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-GcodeThumbnailProvider", "src\modules\previewpane\UnitTests-GcodeThumbnailProvider\UnitTests-GcodeThumbnailProvider.csproj", "{133281D8-1BCE-4D07-B31E-796612A9609E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GcodePreviewHandler", "src\modules\previewpane\GcodePreviewHandler\GcodePreviewHandler.csproj", "{805306FF-A562-4415-8DEF-E493BDC45918}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-GcodePreviewHandler", "src\modules\previewpane\UnitTests-GcodePreviewHandler\UnitTests-GcodePreviewHandler.csproj", "{FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AlwaysOnTop", "AlwaysOnTop", "{60CD2D4F-C3B9-4897-9821-FCA5098B41CE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlwaysOnTop", "src\modules\alwaysontop\AlwaysOnTop\AlwaysOnTop.vcxproj", "{1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlwaysOnTopModuleInterface", "src\modules\alwaysontop\AlwaysOnTopModuleInterface\AlwaysOnTopModuleInterface.vcxproj", "{48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.WebSearch", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.WebSearch\Community.PowerToys.Run.Plugin.WebSearch.csproj", "{9F94B303-5E21-4364-9362-64426F8DB932}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MousePointerCrosshairs", "src\modules\MouseUtils\MousePointerCrosshairs\MousePointerCrosshairs.vcxproj", "{EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StlThumbnailProvider", "src\modules\previewpane\StlThumbnailProvider\StlThumbnailProvider.csproj", "{F7C8C0F1-5431-4347-89D0-8E5354F93CF2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-StlThumbnailProvider", "src\modules\previewpane\UnitTests-StlThumbnailProvider\UnitTests-StlThumbnailProvider.csproj", "{F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MonacoPreviewHandler", "src\modules\previewpane\MonacoPreviewHandler\MonacoPreviewHandler.csproj", "{04B193D7-3E21-46B8-A958-89B63A8A69DE}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.TimeDate", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.TimeDate\Microsoft.PowerToys.Run.Plugin.TimeDate.csproj", "{5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.csproj", "{FD464B4C-2F68-4D06-91E7-4208146C41F5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowWalker.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.WindowWalker.UnitTests\Microsoft.Plugin.WindowWalker.UnitTests.csproj", "{8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerToys.Settings", "src\settings-ui\Settings.UI\PowerToys.Settings.csproj", "{020A7474-3601-4160-A159-D7B70B77B15F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameUI", "src\modules\powerrename\PowerRenameUILib\PowerRenameUI.vcxproj", "{27718999-C175-450A-861C-89F911E16A88}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameContextMenu", "src\modules\powerrename\PowerRenameContextMenu\PowerRenameContextMenu.vcxproj", "{1DBBB112-4BB1-444B-8EBB-E66555C76BA6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.OneNote", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.OneNote\Microsoft.PowerToys.Run.Plugin.OneNote.csproj", "{5A1DB2F0-0715-4B3B-98E6-79BC41540045}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerContextMenu", "src\modules\imageresizer\ImageResizerContextMenu\ImageResizerContextMenu.vcxproj", "{93B72A06-C8BD-484F-A6F7-C9F280B150BF}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerLib", "src\modules\imageresizer\ImageResizerLib\ImageResizerLib.vcxproj", "{18B3DB45-4FFE-4D01-97D6-5223FEEE1853}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PowerAccent", "PowerAccent", "{0F14491C-6369-4C45-AAA8-135814E66E6B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerAccentModuleInterface", "src\modules\poweraccent\PowerAccentModuleInterface\PowerAccentModuleInterface.vcxproj", "{34A354C5-23C7-4343-916C-C52DAF4FC39D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerAccent.Core", "src\modules\poweraccent\PowerAccent.Core\PowerAccent.Core.csproj", "{3264DF53-C805-4B0C-867C-FCEAF7AEF762}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerAccent.UI", "src\modules\poweraccent\PowerAccent.UI\PowerAccent.UI.csproj", "{31CAD28E-778A-441C-85BC-40AB3EAA2A10}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PowerOCR", "PowerOCR", "{A50C70A6-2DA0-4027-B90E-B1A40755A8A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerOCR", "src\modules\PowerOCR\PowerOCR\PowerOCR.csproj", "{25C91A4E-BA4E-467A-85CD-8B62545BF674}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerOCRModuleInterface", "src\modules\PowerOCR\PowerOCRModuleInterface\PowerOCRModuleInterface.vcxproj", "{6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.History", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.History\Microsoft.PowerToys.Run.Plugin.History.csproj", "{212AD910-8488-4036-BE20-326931B75FB2}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MeasureTool", "MeasureTool", "{7AC943C9-52E8-44CF-9083-744D8049667B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.MeasureToolCore", "src\modules\MeasureTool\MeasureToolCore\PowerToys.MeasureToolCore.vcxproj", "{54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}" ProjectSection(ProjectDependencies) = postProject {6955446D-23F7-4023-9BB3-8657F904AF99} = {6955446D-23F7-4023-9BB3-8657F904AF99} {CABA8DFB-823B-4BF2-93AC-3F31984150D9} = {CABA8DFB-823B-4BF2-93AC-3F31984150D9} {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MeasureToolModuleInterface", "src\modules\MeasureTool\MeasureToolModuleInterface\MeasureToolModuleInterface.vcxproj", "{92C39820-9F84-4529-BC7D-22AAE514D63B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MeasureToolUI", "src\modules\MeasureTool\MeasureToolUI\MeasureToolUI.csproj", "{515554D1-D004-4F7F-A107-2211FC0F6B2C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerAccentKeyboardService", "src\modules\poweraccent\PowerAccentKeyboardService\PowerAccentKeyboardService.vcxproj", "{C97D9A5D-206C-454E-997E-009E227D7F02}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hosts", "src\modules\Hosts\Hosts\Hosts.csproj", "{31D1C81D-765F-4446-AA62-E743F6325049}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Hosts", "Hosts", "{F05E590D-AD46-42BE-9C25-6A63ADD2E3EA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hosts.Tests", "src\modules\Hosts\Hosts.Tests\Hosts.Tests.csproj", "{E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HostsModuleInterface", "src\modules\Hosts\HostsModuleInterface\HostsModuleInterface.vcxproj", "{B41B888C-7DB8-4747-B262-4062E05A230D}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "FileLocksmith", "FileLocksmith", "{AB82E5DD-C32D-4F28-9746-2C780846188E}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileLocksmithExt", "src\modules\FileLocksmith\FileLocksmithExt\FileLocksmithExt.vcxproj", "{57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileLocksmithUI", "src\modules\FileLocksmith\FileLocksmithUI\FileLocksmithUI.csproj", "{E69B044A-2F8A-45AA-AD0B-256C59421807}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileLocksmithLibInterop", "src\modules\FileLocksmith\FileLocksmithLibInterop\FileLocksmithLibInterop.vcxproj", "{C604B37E-9D0E-4484-8778-E8B31B0E1B3A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GPOWrapper", "src\common\GPOWrapper\GPOWrapper.vcxproj", "{E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GPOWrapperProjection", "src\common\GPOWrapperProjection\GPOWrapperProjection.csproj", "{00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Peek", "Peek", "{17B4FA70-001E-4D33-BBBB-0D142DBC2E20}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Peek", "src\modules\peek\peek\peek.vcxproj", "{A1425B53-3D61-4679-8623-E64A0D3D0A48}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.UI", "src\modules\peek\Peek.UI\Peek.UI.csproj", "{9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.Common", "src\modules\peek\Peek.Common\Peek.Common.csproj", "{17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.FilePreviewer", "src\modules\peek\Peek.FilePreviewer\Peek.FilePreviewer.csproj", "{AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MarkdownPreviewHandlerCpp", "src\modules\previewpane\MarkdownPreviewHandlerCpp\MarkdownPreviewHandlerCpp.vcxproj", "{ED9A1AC6-AEB0-4569-A6E9-E1696182B545}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GcodePreviewHandlerCpp", "src\modules\previewpane\GcodePreviewHandlerCpp\GcodePreviewHandlerCpp.vcxproj", "{5A5DD09D-723A-44D3-8F2B-293584C3D731}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MonacoPreviewHandlerCpp", "src\modules\previewpane\MonacoPreviewHandlerCpp\MonacoPreviewHandlerCpp.vcxproj", "{B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PdfPreviewHandlerCpp", "src\modules\previewpane\PdfPreviewHandlerCpp\PdfPreviewHandlerCpp.vcxproj", "{54F7C616-FD41-4E62-BFF9-015686914F4D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SvgPreviewHandlerCpp", "src\modules\previewpane\SvgPreviewHandlerCpp\SvgPreviewHandlerCpp.vcxproj", "{143F13E3-D2E3-4D83-B035-356612D99956}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GcodeThumbnailProviderCpp", "src\modules\previewpane\GcodeThumbnailProviderCpp\GcodeThumbnailProviderCpp.vcxproj", "{56CC2F10-6E41-453D-BE16-C593A5E58482}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PdfThumbnailProviderCpp", "src\modules\previewpane\PdfThumbnailProviderCpp\PdfThumbnailProviderCpp.vcxproj", "{CA5518ED-0458-4B09-8F53-4122B9888655}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StlThumbnailProviderCpp", "src\modules\previewpane\StlThumbnailProviderCpp\StlThumbnailProviderCpp.vcxproj", "{D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SvgThumbnailProviderCpp", "src\modules\previewpane\SvgThumbnailProviderCpp\SvgThumbnailProviderCpp.vcxproj", "{2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MouseWithoutBorders", "MouseWithoutBorders", "{B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseWithoutBordersModuleInterface", "src\modules\MouseWithoutBorders\ModuleInterface\MouseWithoutBordersModuleInterface.vcxproj", "{2833C9C6-AB32-4048-A5C7-A70898337B57}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBorders", "src\modules\MouseWithoutBorders\App\MouseWithoutBorders.csproj", "{50B82783-242F-42D2-BC03-B3430BF01354}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBordersService", "src\modules\MouseWithoutBorders\App\Service\MouseWithoutBordersService.csproj", "{B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBordersHelper", "src\modules\MouseWithoutBorders\App\Helper\MouseWithoutBordersHelper.csproj", "{A663E672-B26D-4EC0-BEAB-FE2E424AC46F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseJump", "src\modules\MouseUtils\MouseJump\MouseJump.vcxproj", "{8A08D663-4995-40E3-B42C-3F910625F284}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseJumpUI", "src\modules\MouseUtils\MouseJumpUI\MouseJumpUI.csproj", "{D962A009-834F-4EEC-AABB-430DF8F98E39}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseJumpUI.UnitTests", "src\modules\MouseUtils\MouseJumpUI.UnitTests\MouseJumpUI.UnitTests.csproj", "{D9C5DE64-6849-4278-91AD-9660AECF2876}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "pasteplain", "pasteplain", "{9873BA05-4C41-4819-9283-CF45D795431B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PastePlainModuleInterface", "src\modules\pasteplain\PastePlainModuleInterface\PastePlainModuleInterface.vcxproj", "{FC373B24-3293-453C-AAF5-CF2909DCEE6A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AllExperiments", "src\common\AllExperiments\AllExperiments.csproj", "{9CE59ED5-7087-4353-88EB-788038A73CEC}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RegistryPreviewUI", "src\modules\registrypreview\RegistryPreviewUI\RegistryPreviewUI.csproj", "{FD86C06A-FB54-4D5E-9831-1CDADF60D45F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RegistryPreviewExt", "src\modules\registrypreview\RegistryPreviewExt\RegistryPreviewExt.vcxproj", "{697C6AF9-0A48-49A9-866C-67DA12384015}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RegistryPreview", "RegistryPreview", "{929C1324-22E8-4412-A9A8-80E85F3985A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FilePreviewCommon", "src\common\FilePreviewCommon\FilePreviewCommon.csproj", "{9EBAA524-0EDA-470B-95D4-39383285CBB2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.PowerToys", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.PowerToys\Microsoft.PowerToys.Run.Plugin.PowerToys.csproj", "{500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.ValueGenerator", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.ValueGenerator\Community.PowerToys.Run.Plugin.ValueGenerator.csproj", "{D095BE44-1F2E-463E-A494-121892A75EA2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.csproj", "{90F9FA90-2C20-4004-96E6-F3B78151F5A5}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CropAndLock", "CropAndLock", "{3B227528-4BA6-4CAF-B44A-A10C78A64849}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CropAndLock", "src\modules\CropAndLock\CropAndLock\CropAndLock.vcxproj", "{F5E1146E-B7B3-4E11-85FD-270A500BD78C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CropAndLockModuleInterface", "src\modules\CropAndLock\CropAndLockModuleInterface\CropAndLockModuleInterface.vcxproj", "{3157FA75-86CF-4EE2-8F62-C43F776493C6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-FancyZonesEditor", "src\modules\fancyzones\UnitTests-FancyZonesEditor\UnitTests-FancyZonesEditor.csproj", "{FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "EnvironmentVariables", "EnvironmentVariables", "{538ED0BB-B863-4B20-98CC-BCDF7FA0B68A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EnvironmentVariables", "src\modules\EnvironmentVariables\EnvironmentVariables\EnvironmentVariables.csproj", "{51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EnvironmentVariablesModuleInterface", "src\modules\EnvironmentVariables\EnvironmentVariablesModuleInterface\EnvironmentVariablesModuleInterface.vcxproj", "{B9420661-B0E4-4241-ABD4-4A27A1F64250}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "QoiThumbnailProviderCpp", "src\modules\previewpane\QoiThumbnailProviderCpp\QoiThumbnailProviderCpp.vcxproj", "{CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QoiThumbnailProvider", "src\modules\previewpane\QoiThumbnailProvider\QoiThumbnailProvider.csproj", "{D949EC7D-48A9-4279-95D5-078E7FD1F048}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "QoiPreviewHandlerCpp", "src\modules\previewpane\QoiPreviewHandlerCpp\QoiPreviewHandlerCpp.vcxproj", "{3BAF9C81-A194-4925-A035-5E24A5D1E542}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QoiPreviewHandler", "src\modules\previewpane\QoiPreviewHandler\QoiPreviewHandler.csproj", "{6B04803D-B418-4833-A67E-B0FC966636A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-QoiPreviewHandler", "src\modules\previewpane\UnitTests-QoiPreviewHandler\UnitTests-QoiPreviewHandler.csproj", "{3940AD4D-F748-4BE4-9083-85769CD553EF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-QoiThumbnailProvider", "src\modules\previewpane\UnitTests-QoiThumbnailProvider\UnitTests-QoiThumbnailProvider.csproj", "{F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|ARM64 = Debug|ARM64 Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 Release|ARM64 = Release|ARM64 Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|ARM64.Build.0 = Debug|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x64.ActiveCfg = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x64.Build.0 = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x86.ActiveCfg = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|ARM64.ActiveCfg = Release|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|ARM64.Build.0 = Release|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x64.ActiveCfg = Release|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x64.Build.0 = Release|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x86.ActiveCfg = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|ARM64.Build.0 = Debug|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x64.ActiveCfg = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x64.Build.0 = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x86.ActiveCfg = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|ARM64.ActiveCfg = Release|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|ARM64.Build.0 = Release|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x64.ActiveCfg = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x64.Build.0 = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x86.ActiveCfg = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|ARM64.Build.0 = Debug|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x64.ActiveCfg = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x64.Build.0 = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x86.ActiveCfg = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|ARM64.ActiveCfg = Release|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|ARM64.Build.0 = Release|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x64.ActiveCfg = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x64.Build.0 = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x86.ActiveCfg = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|ARM64.Build.0 = Debug|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x64.ActiveCfg = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x64.Build.0 = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x86.ActiveCfg = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|ARM64.ActiveCfg = Release|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|ARM64.Build.0 = Release|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x64.ActiveCfg = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x64.Build.0 = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x86.ActiveCfg = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|ARM64.Build.0 = Debug|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x64.ActiveCfg = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x64.Build.0 = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x86.ActiveCfg = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|ARM64.ActiveCfg = Release|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|ARM64.Build.0 = Release|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x64.ActiveCfg = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x64.Build.0 = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x86.ActiveCfg = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|ARM64.Build.0 = Debug|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x64.ActiveCfg = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x64.Build.0 = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x86.ActiveCfg = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|ARM64.ActiveCfg = Release|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|ARM64.Build.0 = Release|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x64.ActiveCfg = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x64.Build.0 = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x86.ActiveCfg = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|ARM64.Build.0 = Debug|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x64.ActiveCfg = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x64.Build.0 = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x86.ActiveCfg = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|ARM64.ActiveCfg = Release|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|ARM64.Build.0 = Release|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x64.ActiveCfg = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x64.Build.0 = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x86.ActiveCfg = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|ARM64.Build.0 = Debug|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x64.ActiveCfg = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x64.Build.0 = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x86.ActiveCfg = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|ARM64.ActiveCfg = Release|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|ARM64.Build.0 = Release|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x64.ActiveCfg = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x64.Build.0 = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x86.ActiveCfg = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|ARM64.Build.0 = Debug|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x64.ActiveCfg = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x64.Build.0 = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x86.ActiveCfg = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|ARM64.ActiveCfg = Release|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|ARM64.Build.0 = Release|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x64.ActiveCfg = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x64.Build.0 = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x86.ActiveCfg = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|ARM64.ActiveCfg = Debug|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|ARM64.Build.0 = Debug|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x64.ActiveCfg = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x64.Build.0 = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x86.ActiveCfg = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|ARM64.ActiveCfg = Release|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|ARM64.Build.0 = Release|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x64.ActiveCfg = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x64.Build.0 = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x86.ActiveCfg = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|ARM64.Build.0 = Debug|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x64.ActiveCfg = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x64.Build.0 = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x86.ActiveCfg = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|ARM64.ActiveCfg = Release|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|ARM64.Build.0 = Release|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x64.ActiveCfg = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x64.Build.0 = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x86.ActiveCfg = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|ARM64.Build.0 = Debug|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x64.ActiveCfg = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x64.Build.0 = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x86.ActiveCfg = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|ARM64.ActiveCfg = Release|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|ARM64.Build.0 = Release|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x64.ActiveCfg = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x64.Build.0 = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x86.ActiveCfg = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|ARM64.Build.0 = Debug|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x64.ActiveCfg = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x64.Build.0 = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x86.ActiveCfg = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|ARM64.ActiveCfg = Release|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|ARM64.Build.0 = Release|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x64.ActiveCfg = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x64.Build.0 = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x86.ActiveCfg = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|ARM64.Build.0 = Debug|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x64.ActiveCfg = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x64.Build.0 = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x86.ActiveCfg = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|ARM64.ActiveCfg = Release|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|ARM64.Build.0 = Release|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x64.ActiveCfg = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x64.Build.0 = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x86.ActiveCfg = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|ARM64.Build.0 = Debug|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x64.ActiveCfg = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x64.Build.0 = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x86.ActiveCfg = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|ARM64.ActiveCfg = Release|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|ARM64.Build.0 = Release|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x64.ActiveCfg = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x64.Build.0 = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x86.ActiveCfg = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|ARM64.Build.0 = Debug|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x64.ActiveCfg = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x64.Build.0 = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x86.ActiveCfg = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|ARM64.ActiveCfg = Release|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|ARM64.Build.0 = Release|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x64.ActiveCfg = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x64.Build.0 = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x86.ActiveCfg = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|ARM64.Build.0 = Debug|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x64.ActiveCfg = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x64.Build.0 = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x86.ActiveCfg = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|ARM64.ActiveCfg = Release|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|ARM64.Build.0 = Release|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x64.ActiveCfg = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x64.Build.0 = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x86.ActiveCfg = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|ARM64.Build.0 = Debug|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x64.ActiveCfg = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x64.Build.0 = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x86.ActiveCfg = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|ARM64.ActiveCfg = Release|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|ARM64.Build.0 = Release|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x64.ActiveCfg = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x64.Build.0 = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x86.ActiveCfg = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|ARM64.Build.0 = Debug|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x64.ActiveCfg = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x64.Build.0 = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x86.ActiveCfg = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|ARM64.ActiveCfg = Release|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|ARM64.Build.0 = Release|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x64.ActiveCfg = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x64.Build.0 = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x86.ActiveCfg = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|ARM64.Build.0 = Debug|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x64.ActiveCfg = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x64.Build.0 = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x86.ActiveCfg = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|ARM64.ActiveCfg = Release|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|ARM64.Build.0 = Release|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x64.ActiveCfg = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x64.Build.0 = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x86.ActiveCfg = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|ARM64.Build.0 = Debug|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x64.ActiveCfg = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x64.Build.0 = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x86.ActiveCfg = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|ARM64.ActiveCfg = Release|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|ARM64.Build.0 = Release|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x64.ActiveCfg = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x64.Build.0 = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x86.ActiveCfg = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|ARM64.Build.0 = Debug|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x64.ActiveCfg = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x64.Build.0 = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x86.ActiveCfg = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|ARM64.ActiveCfg = Release|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|ARM64.Build.0 = Release|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x64.ActiveCfg = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x64.Build.0 = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x86.ActiveCfg = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|ARM64.Build.0 = Debug|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x64.ActiveCfg = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x64.Build.0 = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x86.ActiveCfg = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|ARM64.ActiveCfg = Release|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|ARM64.Build.0 = Release|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x64.ActiveCfg = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x64.Build.0 = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x86.ActiveCfg = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|ARM64.Build.0 = Debug|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x64.ActiveCfg = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x64.Build.0 = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x86.ActiveCfg = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|ARM64.ActiveCfg = Release|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|ARM64.Build.0 = Release|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x64.ActiveCfg = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x64.Build.0 = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x86.ActiveCfg = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|ARM64.Build.0 = Debug|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x64.ActiveCfg = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x64.Build.0 = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x86.ActiveCfg = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|ARM64.ActiveCfg = Release|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|ARM64.Build.0 = Release|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x64.ActiveCfg = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x64.Build.0 = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x86.ActiveCfg = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|ARM64.Build.0 = Debug|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x64.ActiveCfg = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x64.Build.0 = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x86.ActiveCfg = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|ARM64.ActiveCfg = Release|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|ARM64.Build.0 = Release|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x64.ActiveCfg = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x64.Build.0 = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x86.ActiveCfg = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|ARM64.Build.0 = Debug|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x64.ActiveCfg = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x64.Build.0 = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x86.ActiveCfg = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|ARM64.ActiveCfg = Release|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|ARM64.Build.0 = Release|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x64.ActiveCfg = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x64.Build.0 = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x86.ActiveCfg = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|ARM64.Build.0 = Debug|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x64.ActiveCfg = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x64.Build.0 = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x86.ActiveCfg = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|ARM64.ActiveCfg = Release|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|ARM64.Build.0 = Release|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x64.ActiveCfg = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x64.Build.0 = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x86.ActiveCfg = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|ARM64.Build.0 = Debug|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x64.ActiveCfg = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x64.Build.0 = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x86.ActiveCfg = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|ARM64.ActiveCfg = Release|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|ARM64.Build.0 = Release|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x64.ActiveCfg = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x64.Build.0 = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x86.ActiveCfg = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|ARM64.Build.0 = Debug|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x64.ActiveCfg = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x64.Build.0 = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x86.ActiveCfg = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|ARM64.ActiveCfg = Release|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|ARM64.Build.0 = Release|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x64.ActiveCfg = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x64.Build.0 = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x86.ActiveCfg = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|ARM64.Build.0 = Debug|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x64.ActiveCfg = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x64.Build.0 = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x86.ActiveCfg = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|ARM64.ActiveCfg = Release|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|ARM64.Build.0 = Release|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x64.ActiveCfg = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x64.Build.0 = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x86.ActiveCfg = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|ARM64.Build.0 = Debug|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x64.ActiveCfg = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x64.Build.0 = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x86.ActiveCfg = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|ARM64.ActiveCfg = Release|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|ARM64.Build.0 = Release|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x64.ActiveCfg = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x64.Build.0 = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x86.ActiveCfg = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|ARM64.ActiveCfg = Debug|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|ARM64.Build.0 = Debug|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x64.ActiveCfg = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x64.Build.0 = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x86.ActiveCfg = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|ARM64.ActiveCfg = Release|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|ARM64.Build.0 = Release|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x64.ActiveCfg = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x64.Build.0 = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x86.ActiveCfg = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|ARM64.ActiveCfg = Debug|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|ARM64.Build.0 = Debug|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x64.ActiveCfg = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x64.Build.0 = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x86.ActiveCfg = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|ARM64.ActiveCfg = Release|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|ARM64.Build.0 = Release|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x64.ActiveCfg = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x64.Build.0 = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x86.ActiveCfg = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|ARM64.Build.0 = Debug|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x64.ActiveCfg = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x64.Build.0 = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x86.ActiveCfg = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|ARM64.ActiveCfg = Release|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|ARM64.Build.0 = Release|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x64.ActiveCfg = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x64.Build.0 = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x86.ActiveCfg = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|ARM64.Build.0 = Debug|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.ActiveCfg = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.Build.0 = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x86.ActiveCfg = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|ARM64.ActiveCfg = Release|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|ARM64.Build.0 = Release|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x64.ActiveCfg = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x64.Build.0 = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x86.ActiveCfg = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|ARM64.Build.0 = Debug|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x64.ActiveCfg = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x64.Build.0 = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x86.ActiveCfg = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|ARM64.ActiveCfg = Release|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|ARM64.Build.0 = Release|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x64.ActiveCfg = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x64.Build.0 = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x86.ActiveCfg = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|ARM64.Build.0 = Debug|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x64.ActiveCfg = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x64.Build.0 = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x86.ActiveCfg = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|ARM64.ActiveCfg = Release|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|ARM64.Build.0 = Release|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x64.ActiveCfg = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x64.Build.0 = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x86.ActiveCfg = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|ARM64.ActiveCfg = Debug|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|ARM64.Build.0 = Debug|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x64.ActiveCfg = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x64.Build.0 = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x86.ActiveCfg = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|ARM64.ActiveCfg = Release|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|ARM64.Build.0 = Release|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x64.ActiveCfg = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x64.Build.0 = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x86.ActiveCfg = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|ARM64.Build.0 = Debug|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x64.ActiveCfg = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x64.Build.0 = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x86.ActiveCfg = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|ARM64.ActiveCfg = Release|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|ARM64.Build.0 = Release|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x64.ActiveCfg = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x64.Build.0 = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x86.ActiveCfg = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|ARM64.Build.0 = Debug|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x64.ActiveCfg = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x64.Build.0 = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x86.ActiveCfg = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|ARM64.ActiveCfg = Release|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|ARM64.Build.0 = Release|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x64.ActiveCfg = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x64.Build.0 = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x86.ActiveCfg = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|ARM64.Build.0 = Debug|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x64.ActiveCfg = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x64.Build.0 = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x86.ActiveCfg = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|ARM64.ActiveCfg = Release|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|ARM64.Build.0 = Release|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x64.ActiveCfg = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x64.Build.0 = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x86.ActiveCfg = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|ARM64.Build.0 = Debug|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x64.ActiveCfg = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x64.Build.0 = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x86.ActiveCfg = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|ARM64.ActiveCfg = Release|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|ARM64.Build.0 = Release|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x64.ActiveCfg = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x64.Build.0 = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x86.ActiveCfg = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|ARM64.Build.0 = Debug|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x64.ActiveCfg = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x64.Build.0 = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x86.ActiveCfg = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|ARM64.ActiveCfg = Release|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|ARM64.Build.0 = Release|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x64.ActiveCfg = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x64.Build.0 = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x86.ActiveCfg = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|ARM64.Build.0 = Debug|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x64.ActiveCfg = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x64.Build.0 = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x86.ActiveCfg = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|ARM64.ActiveCfg = Release|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|ARM64.Build.0 = Release|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x64.ActiveCfg = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x64.Build.0 = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x86.ActiveCfg = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|ARM64.Build.0 = Debug|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x64.ActiveCfg = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x64.Build.0 = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x86.ActiveCfg = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|ARM64.ActiveCfg = Release|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|ARM64.Build.0 = Release|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x64.ActiveCfg = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x64.Build.0 = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x86.ActiveCfg = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|ARM64.ActiveCfg = Debug|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|ARM64.Build.0 = Debug|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x64.ActiveCfg = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x64.Build.0 = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x86.ActiveCfg = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|ARM64.ActiveCfg = Release|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|ARM64.Build.0 = Release|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x64.ActiveCfg = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x64.Build.0 = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x86.ActiveCfg = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|ARM64.Build.0 = Debug|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x64.ActiveCfg = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x64.Build.0 = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x86.ActiveCfg = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|ARM64.ActiveCfg = Release|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|ARM64.Build.0 = Release|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x64.ActiveCfg = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x64.Build.0 = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x86.ActiveCfg = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|ARM64.Build.0 = Debug|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x64.ActiveCfg = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x64.Build.0 = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x86.ActiveCfg = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|ARM64.ActiveCfg = Release|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|ARM64.Build.0 = Release|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x64.ActiveCfg = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x64.Build.0 = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x86.ActiveCfg = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|ARM64.Build.0 = Debug|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x64.ActiveCfg = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x64.Build.0 = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x86.ActiveCfg = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|ARM64.ActiveCfg = Release|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|ARM64.Build.0 = Release|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x64.ActiveCfg = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x64.Build.0 = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x86.ActiveCfg = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|ARM64.Build.0 = Debug|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x64.ActiveCfg = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x64.Build.0 = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x86.ActiveCfg = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|ARM64.ActiveCfg = Release|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|ARM64.Build.0 = Release|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x64.ActiveCfg = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x64.Build.0 = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x86.ActiveCfg = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|ARM64.Build.0 = Debug|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x64.ActiveCfg = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x64.Build.0 = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x86.ActiveCfg = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|ARM64.ActiveCfg = Release|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|ARM64.Build.0 = Release|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x64.ActiveCfg = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x64.Build.0 = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x86.ActiveCfg = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|ARM64.Build.0 = Debug|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x64.ActiveCfg = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x64.Build.0 = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x86.ActiveCfg = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|ARM64.ActiveCfg = Release|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|ARM64.Build.0 = Release|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x64.ActiveCfg = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x64.Build.0 = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x86.ActiveCfg = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|ARM64.Build.0 = Debug|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x64.ActiveCfg = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x64.Build.0 = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x86.ActiveCfg = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|ARM64.ActiveCfg = Release|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|ARM64.Build.0 = Release|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x64.ActiveCfg = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x64.Build.0 = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x86.ActiveCfg = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|ARM64.ActiveCfg = Debug|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|ARM64.Build.0 = Debug|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x64.ActiveCfg = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x64.Build.0 = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x86.ActiveCfg = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|ARM64.ActiveCfg = Release|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|ARM64.Build.0 = Release|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x64.ActiveCfg = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x64.Build.0 = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x86.ActiveCfg = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|ARM64.Build.0 = Debug|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x64.ActiveCfg = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x64.Build.0 = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x86.ActiveCfg = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|ARM64.ActiveCfg = Release|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|ARM64.Build.0 = Release|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x64.ActiveCfg = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x64.Build.0 = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x86.ActiveCfg = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|ARM64.Build.0 = Debug|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x64.ActiveCfg = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x64.Build.0 = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x86.ActiveCfg = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|ARM64.ActiveCfg = Release|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|ARM64.Build.0 = Release|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x64.ActiveCfg = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x64.Build.0 = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x86.ActiveCfg = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|ARM64.Build.0 = Debug|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x64.ActiveCfg = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x64.Build.0 = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x86.ActiveCfg = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|ARM64.ActiveCfg = Release|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|ARM64.Build.0 = Release|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x64.ActiveCfg = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x64.Build.0 = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x86.ActiveCfg = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|ARM64.Build.0 = Debug|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x64.ActiveCfg = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x64.Build.0 = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x86.ActiveCfg = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|ARM64.ActiveCfg = Release|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|ARM64.Build.0 = Release|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x64.ActiveCfg = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x64.Build.0 = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x86.ActiveCfg = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|ARM64.Build.0 = Debug|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x64.ActiveCfg = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x64.Build.0 = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x86.ActiveCfg = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|ARM64.ActiveCfg = Release|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|ARM64.Build.0 = Release|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x64.ActiveCfg = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x64.Build.0 = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x86.ActiveCfg = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|ARM64.ActiveCfg = Debug|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|ARM64.Build.0 = Debug|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x64.ActiveCfg = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x64.Build.0 = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x86.ActiveCfg = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|ARM64.ActiveCfg = Release|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|ARM64.Build.0 = Release|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x64.ActiveCfg = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x64.Build.0 = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x86.ActiveCfg = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|ARM64.Build.0 = Debug|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x64.ActiveCfg = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x64.Build.0 = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x86.ActiveCfg = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|ARM64.ActiveCfg = Release|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|ARM64.Build.0 = Release|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x64.ActiveCfg = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x64.Build.0 = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x86.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|ARM64.Build.0 = Debug|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.Build.0 = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x86.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|ARM64.ActiveCfg = Release|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|ARM64.Build.0 = Release|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.Build.0 = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x86.ActiveCfg = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|ARM64.Build.0 = Debug|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x64.ActiveCfg = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x64.Build.0 = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x86.ActiveCfg = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|ARM64.ActiveCfg = Release|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|ARM64.Build.0 = Release|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x64.ActiveCfg = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x64.Build.0 = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x86.ActiveCfg = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|ARM64.Build.0 = Debug|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x64.ActiveCfg = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x64.Build.0 = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x86.ActiveCfg = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|ARM64.ActiveCfg = Release|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|ARM64.Build.0 = Release|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x64.ActiveCfg = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x64.Build.0 = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x86.ActiveCfg = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|ARM64.Build.0 = Debug|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x64.ActiveCfg = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x64.Build.0 = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x86.ActiveCfg = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|ARM64.ActiveCfg = Release|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|ARM64.Build.0 = Release|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x64.ActiveCfg = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x64.Build.0 = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x86.ActiveCfg = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|ARM64.Build.0 = Debug|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x64.ActiveCfg = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x64.Build.0 = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x86.ActiveCfg = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|ARM64.ActiveCfg = Release|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|ARM64.Build.0 = Release|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x64.ActiveCfg = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x64.Build.0 = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x86.ActiveCfg = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|ARM64.Build.0 = Debug|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x64.ActiveCfg = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x64.Build.0 = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x86.ActiveCfg = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|ARM64.ActiveCfg = Release|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|ARM64.Build.0 = Release|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x64.ActiveCfg = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x64.Build.0 = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x86.ActiveCfg = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|ARM64.Build.0 = Debug|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x64.ActiveCfg = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x64.Build.0 = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x86.ActiveCfg = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|ARM64.ActiveCfg = Release|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|ARM64.Build.0 = Release|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x64.ActiveCfg = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x64.Build.0 = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x86.ActiveCfg = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|ARM64.Build.0 = Debug|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x64.ActiveCfg = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x64.Build.0 = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x86.ActiveCfg = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|ARM64.ActiveCfg = Release|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|ARM64.Build.0 = Release|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x64.ActiveCfg = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x64.Build.0 = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x86.ActiveCfg = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|ARM64.Build.0 = Debug|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x64.ActiveCfg = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x64.Build.0 = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x86.ActiveCfg = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|ARM64.ActiveCfg = Release|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|ARM64.Build.0 = Release|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x64.ActiveCfg = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x64.Build.0 = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x86.ActiveCfg = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|ARM64.Build.0 = Debug|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x64.ActiveCfg = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x64.Build.0 = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x86.ActiveCfg = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|ARM64.ActiveCfg = Release|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|ARM64.Build.0 = Release|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x64.ActiveCfg = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x64.Build.0 = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x86.ActiveCfg = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|ARM64.Build.0 = Debug|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x64.ActiveCfg = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x64.Build.0 = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x86.ActiveCfg = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|ARM64.ActiveCfg = Release|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|ARM64.Build.0 = Release|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x64.ActiveCfg = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x64.Build.0 = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x86.ActiveCfg = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|ARM64.Build.0 = Debug|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x64.ActiveCfg = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x64.Build.0 = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x86.ActiveCfg = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|ARM64.ActiveCfg = Release|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|ARM64.Build.0 = Release|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x64.ActiveCfg = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x64.Build.0 = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x86.ActiveCfg = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|ARM64.Build.0 = Debug|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x64.ActiveCfg = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x64.Build.0 = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x86.ActiveCfg = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|ARM64.ActiveCfg = Release|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|ARM64.Build.0 = Release|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x64.ActiveCfg = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x64.Build.0 = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x86.ActiveCfg = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|ARM64.ActiveCfg = Debug|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|ARM64.Build.0 = Debug|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x64.ActiveCfg = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x64.Build.0 = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x86.ActiveCfg = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|ARM64.ActiveCfg = Release|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|ARM64.Build.0 = Release|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x64.ActiveCfg = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x64.Build.0 = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x86.ActiveCfg = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|ARM64.Build.0 = Debug|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x64.ActiveCfg = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x64.Build.0 = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x86.ActiveCfg = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|ARM64.ActiveCfg = Release|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|ARM64.Build.0 = Release|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x64.ActiveCfg = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x64.Build.0 = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x86.ActiveCfg = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|ARM64.Build.0 = Debug|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x64.ActiveCfg = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x64.Build.0 = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x86.ActiveCfg = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|ARM64.ActiveCfg = Release|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|ARM64.Build.0 = Release|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x64.ActiveCfg = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x64.Build.0 = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x86.ActiveCfg = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|ARM64.Build.0 = Debug|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x64.ActiveCfg = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x64.Build.0 = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x86.ActiveCfg = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|ARM64.ActiveCfg = Release|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|ARM64.Build.0 = Release|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x64.ActiveCfg = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x64.Build.0 = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x86.ActiveCfg = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|ARM64.Build.0 = Debug|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x64.ActiveCfg = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x64.Build.0 = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x86.ActiveCfg = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|ARM64.ActiveCfg = Release|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|ARM64.Build.0 = Release|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x64.ActiveCfg = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x64.Build.0 = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x86.ActiveCfg = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|ARM64.Build.0 = Debug|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x64.ActiveCfg = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x64.Build.0 = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x86.ActiveCfg = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|ARM64.ActiveCfg = Release|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|ARM64.Build.0 = Release|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x64.ActiveCfg = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x64.Build.0 = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x86.ActiveCfg = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|ARM64.Build.0 = Debug|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x64.ActiveCfg = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x64.Build.0 = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x86.ActiveCfg = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|ARM64.ActiveCfg = Release|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|ARM64.Build.0 = Release|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x64.ActiveCfg = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x64.Build.0 = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x86.ActiveCfg = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|ARM64.Build.0 = Debug|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x64.ActiveCfg = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x64.Build.0 = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x86.ActiveCfg = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|ARM64.ActiveCfg = Release|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|ARM64.Build.0 = Release|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x64.ActiveCfg = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x64.Build.0 = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x86.ActiveCfg = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|ARM64.ActiveCfg = Debug|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|ARM64.Build.0 = Debug|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x64.ActiveCfg = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x64.Build.0 = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x86.ActiveCfg = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|ARM64.ActiveCfg = Release|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|ARM64.Build.0 = Release|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x64.ActiveCfg = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x64.Build.0 = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x86.ActiveCfg = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|ARM64.Build.0 = Debug|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x64.ActiveCfg = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x64.Build.0 = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x86.ActiveCfg = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|ARM64.ActiveCfg = Release|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|ARM64.Build.0 = Release|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x64.ActiveCfg = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x64.Build.0 = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x86.ActiveCfg = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|ARM64.ActiveCfg = Debug|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|ARM64.Build.0 = Debug|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x64.ActiveCfg = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x64.Build.0 = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x86.ActiveCfg = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|ARM64.ActiveCfg = Release|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|ARM64.Build.0 = Release|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x64.ActiveCfg = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x64.Build.0 = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x86.ActiveCfg = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|ARM64.Build.0 = Debug|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.ActiveCfg = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.Build.0 = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x86.ActiveCfg = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|ARM64.ActiveCfg = Release|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|ARM64.Build.0 = Release|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.ActiveCfg = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.Build.0 = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x86.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|ARM64.Build.0 = Debug|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.ActiveCfg = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.Build.0 = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x86.ActiveCfg = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x86.Build.0 = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|ARM64.ActiveCfg = Release|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|ARM64.Build.0 = Release|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.Build.0 = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x86.ActiveCfg = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x86.Build.0 = Release|Win32 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|ARM64.Build.0 = Debug|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x64.ActiveCfg = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x64.Build.0 = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x86.ActiveCfg = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|ARM64.ActiveCfg = Release|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|ARM64.Build.0 = Release|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x64.ActiveCfg = Release|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x64.Build.0 = Release|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x86.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|ARM64.Build.0 = Debug|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.ActiveCfg = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.Build.0 = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x86.ActiveCfg = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x86.Build.0 = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|ARM64.ActiveCfg = Release|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|ARM64.Build.0 = Release|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.Build.0 = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x86.ActiveCfg = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x86.Build.0 = Release|Win32 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|ARM64.Build.0 = Debug|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x64.ActiveCfg = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x64.Build.0 = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x86.ActiveCfg = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|ARM64.ActiveCfg = Release|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|ARM64.Build.0 = Release|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x64.ActiveCfg = Release|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x64.Build.0 = Release|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x86.ActiveCfg = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|ARM64.Build.0 = Debug|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x64.ActiveCfg = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x64.Build.0 = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x86.ActiveCfg = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|ARM64.ActiveCfg = Release|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|ARM64.Build.0 = Release|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x64.ActiveCfg = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x64.Build.0 = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x86.ActiveCfg = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|ARM64.Build.0 = Debug|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x64.ActiveCfg = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x64.Build.0 = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x86.ActiveCfg = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|ARM64.ActiveCfg = Release|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|ARM64.Build.0 = Release|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x64.ActiveCfg = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x64.Build.0 = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x86.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|ARM64.Build.0 = Debug|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x64.ActiveCfg = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x64.Build.0 = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x86.ActiveCfg = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|ARM64.ActiveCfg = Release|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|ARM64.Build.0 = Release|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x64.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x64.Build.0 = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x86.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x86.Build.0 = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|ARM64.Build.0 = Debug|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x64.ActiveCfg = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x64.Build.0 = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x86.ActiveCfg = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|ARM64.ActiveCfg = Release|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|ARM64.Build.0 = Release|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x64.ActiveCfg = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x64.Build.0 = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x86.ActiveCfg = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|ARM64.ActiveCfg = Debug|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|ARM64.Build.0 = Debug|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x64.ActiveCfg = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x64.Build.0 = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x86.ActiveCfg = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|ARM64.ActiveCfg = Release|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|ARM64.Build.0 = Release|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x64.ActiveCfg = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x64.Build.0 = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x86.ActiveCfg = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|ARM64.Build.0 = Debug|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x64.ActiveCfg = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x64.Build.0 = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x86.ActiveCfg = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|ARM64.ActiveCfg = Release|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|ARM64.Build.0 = Release|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x64.ActiveCfg = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x64.Build.0 = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x86.ActiveCfg = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|ARM64.Build.0 = Debug|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x64.ActiveCfg = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x64.Build.0 = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x86.ActiveCfg = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|ARM64.ActiveCfg = Release|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|ARM64.Build.0 = Release|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x64.ActiveCfg = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x64.Build.0 = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x86.ActiveCfg = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|ARM64.ActiveCfg = Debug|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|ARM64.Build.0 = Debug|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x64.ActiveCfg = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x64.Build.0 = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x86.ActiveCfg = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|ARM64.ActiveCfg = Release|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|ARM64.Build.0 = Release|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x64.ActiveCfg = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x64.Build.0 = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x86.ActiveCfg = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|ARM64.Build.0 = Debug|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x64.ActiveCfg = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x64.Build.0 = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x86.ActiveCfg = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|ARM64.ActiveCfg = Release|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|ARM64.Build.0 = Release|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x64.ActiveCfg = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x64.Build.0 = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x86.ActiveCfg = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|ARM64.Build.0 = Debug|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x64.ActiveCfg = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x64.Build.0 = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x86.ActiveCfg = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|ARM64.ActiveCfg = Release|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|ARM64.Build.0 = Release|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x64.ActiveCfg = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x64.Build.0 = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x86.ActiveCfg = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|ARM64.Build.0 = Debug|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x64.ActiveCfg = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x64.Build.0 = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x86.ActiveCfg = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|ARM64.ActiveCfg = Release|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|ARM64.Build.0 = Release|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x64.ActiveCfg = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x64.Build.0 = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x86.ActiveCfg = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|ARM64.Build.0 = Debug|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x64.ActiveCfg = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x64.Build.0 = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x86.ActiveCfg = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|ARM64.ActiveCfg = Release|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|ARM64.Build.0 = Release|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x64.ActiveCfg = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x64.Build.0 = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x86.ActiveCfg = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|ARM64.Build.0 = Debug|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x64.ActiveCfg = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x64.Build.0 = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x86.ActiveCfg = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|ARM64.ActiveCfg = Release|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|ARM64.Build.0 = Release|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x64.ActiveCfg = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x64.Build.0 = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x86.ActiveCfg = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|ARM64.Build.0 = Debug|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x64.ActiveCfg = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x64.Build.0 = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x86.ActiveCfg = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|ARM64.ActiveCfg = Release|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|ARM64.Build.0 = Release|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x64.ActiveCfg = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x64.Build.0 = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x86.ActiveCfg = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|ARM64.Build.0 = Debug|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x64.ActiveCfg = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x64.Build.0 = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x86.ActiveCfg = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|ARM64.ActiveCfg = Release|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|ARM64.Build.0 = Release|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x64.ActiveCfg = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x64.Build.0 = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x86.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|ARM64.Build.0 = Debug|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x64.ActiveCfg = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x64.Build.0 = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x86.ActiveCfg = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x86.Build.0 = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|ARM64.ActiveCfg = Release|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|ARM64.Build.0 = Release|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x64.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x64.Build.0 = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x86.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x86.Build.0 = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|ARM64.Build.0 = Debug|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x64.ActiveCfg = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x64.Build.0 = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x86.ActiveCfg = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|ARM64.ActiveCfg = Release|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|ARM64.Build.0 = Release|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x64.ActiveCfg = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x64.Build.0 = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x86.ActiveCfg = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x86.Build.0 = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|ARM64.Build.0 = Debug|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x64.ActiveCfg = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x64.Build.0 = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x86.ActiveCfg = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x86.Build.0 = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|ARM64.ActiveCfg = Release|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|ARM64.Build.0 = Release|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x64.ActiveCfg = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x64.Build.0 = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x86.ActiveCfg = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x86.Build.0 = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|ARM64.Build.0 = Debug|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x64.ActiveCfg = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x64.Build.0 = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x86.ActiveCfg = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x86.Build.0 = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|ARM64.ActiveCfg = Release|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|ARM64.Build.0 = Release|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x64.ActiveCfg = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x64.Build.0 = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x86.ActiveCfg = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x86.Build.0 = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|ARM64.Build.0 = Debug|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x64.ActiveCfg = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x64.Build.0 = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x86.ActiveCfg = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x86.Build.0 = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|ARM64.ActiveCfg = Release|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|ARM64.Build.0 = Release|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x64.ActiveCfg = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x64.Build.0 = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x86.ActiveCfg = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x86.Build.0 = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|ARM64.ActiveCfg = Debug|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Debug|ARM64.Build.0 = Debug|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x64.ActiveCfg = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x64.Build.0 = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x86.ActiveCfg = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x86.Build.0 = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|ARM64.ActiveCfg = Release|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Release|ARM64.Build.0 = Release|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Release|x64.ActiveCfg = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x64.Build.0 = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x86.ActiveCfg = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x86.Build.0 = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|ARM64.Build.0 = Debug|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x64.ActiveCfg = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x64.Build.0 = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x86.ActiveCfg = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x86.Build.0 = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|ARM64.ActiveCfg = Release|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|ARM64.Build.0 = Release|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x64.ActiveCfg = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x64.Build.0 = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x86.ActiveCfg = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x86.Build.0 = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|ARM64.Build.0 = Debug|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x64.ActiveCfg = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x64.Build.0 = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x86.ActiveCfg = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x86.Build.0 = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|ARM64.ActiveCfg = Release|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|ARM64.Build.0 = Release|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x64.ActiveCfg = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x64.Build.0 = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x86.ActiveCfg = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x86.Build.0 = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|ARM64.Build.0 = Debug|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x64.ActiveCfg = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x64.Build.0 = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x86.ActiveCfg = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x86.Build.0 = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|ARM64.ActiveCfg = Release|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|ARM64.Build.0 = Release|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x64.ActiveCfg = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x64.Build.0 = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x86.ActiveCfg = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x86.Build.0 = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|ARM64.ActiveCfg = Debug|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|ARM64.Build.0 = Debug|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x64.ActiveCfg = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x64.Build.0 = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x86.ActiveCfg = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x86.Build.0 = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|ARM64.ActiveCfg = Release|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|ARM64.Build.0 = Release|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x64.ActiveCfg = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x64.Build.0 = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x86.ActiveCfg = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x86.Build.0 = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|ARM64.Build.0 = Debug|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x64.ActiveCfg = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x64.Build.0 = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x86.ActiveCfg = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x86.Build.0 = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|ARM64.ActiveCfg = Release|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|ARM64.Build.0 = Release|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x64.ActiveCfg = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x64.Build.0 = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x86.ActiveCfg = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x86.Build.0 = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|ARM64.Build.0 = Debug|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x64.ActiveCfg = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x64.Build.0 = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x86.ActiveCfg = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x86.Build.0 = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|ARM64.ActiveCfg = Release|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|ARM64.Build.0 = Release|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x64.ActiveCfg = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x64.Build.0 = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x86.ActiveCfg = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x86.Build.0 = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|ARM64.ActiveCfg = Debug|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|ARM64.Build.0 = Debug|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x64.ActiveCfg = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x64.Build.0 = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x86.ActiveCfg = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x86.Build.0 = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|ARM64.ActiveCfg = Release|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|ARM64.Build.0 = Release|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x64.ActiveCfg = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x64.Build.0 = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x86.ActiveCfg = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x86.Build.0 = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|ARM64.ActiveCfg = Debug|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|ARM64.Build.0 = Debug|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x64.ActiveCfg = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x64.Build.0 = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x86.ActiveCfg = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x86.Build.0 = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|ARM64.ActiveCfg = Release|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|ARM64.Build.0 = Release|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x64.ActiveCfg = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x64.Build.0 = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x86.ActiveCfg = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x86.Build.0 = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|ARM64.Build.0 = Debug|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x64.ActiveCfg = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x64.Build.0 = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x86.ActiveCfg = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x86.Build.0 = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|ARM64.ActiveCfg = Release|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|ARM64.Build.0 = Release|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x64.ActiveCfg = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x64.Build.0 = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x86.ActiveCfg = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x86.Build.0 = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|ARM64.Build.0 = Debug|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x64.ActiveCfg = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x64.Build.0 = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x86.ActiveCfg = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x86.Build.0 = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|ARM64.ActiveCfg = Release|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|ARM64.Build.0 = Release|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x64.ActiveCfg = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x64.Build.0 = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x86.ActiveCfg = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x86.Build.0 = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|ARM64.Build.0 = Debug|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x64.ActiveCfg = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x64.Build.0 = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x86.ActiveCfg = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x86.Build.0 = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|ARM64.ActiveCfg = Release|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|ARM64.Build.0 = Release|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x64.ActiveCfg = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x64.Build.0 = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x86.ActiveCfg = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x86.Build.0 = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|ARM64.Build.0 = Debug|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x64.ActiveCfg = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x64.Build.0 = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x86.ActiveCfg = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x86.Build.0 = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|ARM64.ActiveCfg = Release|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|ARM64.Build.0 = Release|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x64.ActiveCfg = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x64.Build.0 = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x86.ActiveCfg = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x86.Build.0 = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|ARM64.Build.0 = Debug|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x64.ActiveCfg = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x64.Build.0 = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x86.ActiveCfg = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x86.Build.0 = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|ARM64.ActiveCfg = Release|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|ARM64.Build.0 = Release|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x64.ActiveCfg = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x64.Build.0 = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x86.ActiveCfg = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x86.Build.0 = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|ARM64.Build.0 = Debug|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x64.ActiveCfg = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x64.Build.0 = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x86.ActiveCfg = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x86.Build.0 = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|ARM64.ActiveCfg = Release|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|ARM64.Build.0 = Release|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x64.ActiveCfg = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x64.Build.0 = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x86.ActiveCfg = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x86.Build.0 = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|ARM64.ActiveCfg = Debug|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|ARM64.Build.0 = Debug|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x64.ActiveCfg = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x64.Build.0 = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x86.ActiveCfg = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x86.Build.0 = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|ARM64.ActiveCfg = Release|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|ARM64.Build.0 = Release|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x64.ActiveCfg = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x64.Build.0 = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x86.ActiveCfg = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x86.Build.0 = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|ARM64.Build.0 = Debug|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x64.ActiveCfg = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x64.Build.0 = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x86.ActiveCfg = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x86.Build.0 = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|ARM64.ActiveCfg = Release|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|ARM64.Build.0 = Release|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x64.ActiveCfg = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x64.Build.0 = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x86.ActiveCfg = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x86.Build.0 = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|ARM64.Build.0 = Debug|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x64.ActiveCfg = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x64.Build.0 = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x86.ActiveCfg = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x86.Build.0 = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|ARM64.ActiveCfg = Release|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|ARM64.Build.0 = Release|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x64.ActiveCfg = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x64.Build.0 = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x86.ActiveCfg = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x86.Build.0 = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|ARM64.Build.0 = Debug|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x64.ActiveCfg = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x64.Build.0 = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x86.ActiveCfg = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|ARM64.ActiveCfg = Release|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|ARM64.Build.0 = Release|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x64.ActiveCfg = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x64.Build.0 = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x86.ActiveCfg = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|ARM64.Build.0 = Debug|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x64.ActiveCfg = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x64.Build.0 = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x86.ActiveCfg = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|ARM64.ActiveCfg = Release|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|ARM64.Build.0 = Release|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x64.ActiveCfg = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x64.Build.0 = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x86.ActiveCfg = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|ARM64.Build.0 = Debug|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x64.ActiveCfg = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x64.Build.0 = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x86.ActiveCfg = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|ARM64.ActiveCfg = Release|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|ARM64.Build.0 = Release|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x64.ActiveCfg = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x64.Build.0 = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x86.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|ARM64.Build.0 = Debug|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x64.ActiveCfg = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x64.Build.0 = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x86.ActiveCfg = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x86.Build.0 = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|ARM64.ActiveCfg = Release|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|ARM64.Build.0 = Release|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x64.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x64.Build.0 = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x86.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x86.Build.0 = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|ARM64.ActiveCfg = Debug|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|ARM64.Build.0 = Debug|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x64.ActiveCfg = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x64.Build.0 = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x86.ActiveCfg = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x86.Build.0 = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|ARM64.ActiveCfg = Release|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|ARM64.Build.0 = Release|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x64.ActiveCfg = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x64.Build.0 = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x86.ActiveCfg = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x86.Build.0 = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|ARM64.Build.0 = Debug|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x64.ActiveCfg = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x64.Build.0 = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x86.ActiveCfg = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x86.Build.0 = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|ARM64.ActiveCfg = Release|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|ARM64.Build.0 = Release|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x64.ActiveCfg = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x64.Build.0 = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x86.ActiveCfg = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x86.Build.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.Build.0 = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.Deploy.0 = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.ActiveCfg = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.Build.0 = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.Deploy.0 = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.ActiveCfg = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.Build.0 = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.Deploy.0 = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.ActiveCfg = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.Build.0 = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.Deploy.0 = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.ActiveCfg = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.Build.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.Deploy.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.ActiveCfg = Release|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.Build.0 = Release|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.Deploy.0 = Release|x86 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|ARM64.Build.0 = Debug|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x64.ActiveCfg = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x64.Build.0 = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x86.ActiveCfg = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x86.Build.0 = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|ARM64.ActiveCfg = Release|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|ARM64.Build.0 = Release|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x64.ActiveCfg = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x64.Build.0 = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x86.ActiveCfg = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x86.Build.0 = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|ARM64.Build.0 = Debug|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x64.ActiveCfg = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x64.Build.0 = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x86.ActiveCfg = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x86.Build.0 = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|ARM64.ActiveCfg = Release|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|ARM64.Build.0 = Release|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x64.ActiveCfg = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x64.Build.0 = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x86.ActiveCfg = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x86.Build.0 = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|ARM64.ActiveCfg = Debug|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|ARM64.Build.0 = Debug|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x64.ActiveCfg = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x64.Build.0 = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x86.ActiveCfg = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x86.Build.0 = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|ARM64.ActiveCfg = Release|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|ARM64.Build.0 = Release|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x64.ActiveCfg = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x64.Build.0 = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x86.ActiveCfg = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x86.Build.0 = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|ARM64.Build.0 = Debug|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x64.ActiveCfg = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x64.Build.0 = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x86.ActiveCfg = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x86.Build.0 = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|ARM64.ActiveCfg = Release|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|ARM64.Build.0 = Release|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x64.ActiveCfg = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x64.Build.0 = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x86.ActiveCfg = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x86.Build.0 = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|ARM64.Build.0 = Debug|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x64.ActiveCfg = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x64.Build.0 = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x86.ActiveCfg = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x86.Build.0 = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|ARM64.ActiveCfg = Release|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|ARM64.Build.0 = Release|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x64.ActiveCfg = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x64.Build.0 = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x86.ActiveCfg = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x86.Build.0 = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|ARM64.Build.0 = Debug|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x64.ActiveCfg = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x64.Build.0 = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x86.ActiveCfg = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x86.Build.0 = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|ARM64.ActiveCfg = Release|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|ARM64.Build.0 = Release|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x64.ActiveCfg = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x64.Build.0 = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x86.ActiveCfg = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x86.Build.0 = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|ARM64.ActiveCfg = Debug|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|ARM64.Build.0 = Debug|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x64.ActiveCfg = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x64.Build.0 = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x86.ActiveCfg = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x86.Build.0 = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|ARM64.ActiveCfg = Release|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|ARM64.Build.0 = Release|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x64.ActiveCfg = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x64.Build.0 = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x86.ActiveCfg = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x86.Build.0 = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|ARM64.ActiveCfg = Debug|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|ARM64.Build.0 = Debug|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x64.ActiveCfg = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x64.Build.0 = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x86.ActiveCfg = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x86.Build.0 = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|ARM64.ActiveCfg = Release|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|ARM64.Build.0 = Release|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x64.ActiveCfg = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x64.Build.0 = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x86.ActiveCfg = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x86.Build.0 = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|ARM64.Build.0 = Debug|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x64.ActiveCfg = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x64.Build.0 = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x86.ActiveCfg = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x86.Build.0 = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|ARM64.ActiveCfg = Release|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|ARM64.Build.0 = Release|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x64.ActiveCfg = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x64.Build.0 = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x86.ActiveCfg = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x86.Build.0 = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|ARM64.Build.0 = Debug|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x64.ActiveCfg = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x64.Build.0 = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x86.ActiveCfg = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x86.Build.0 = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|ARM64.ActiveCfg = Release|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|ARM64.Build.0 = Release|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x64.ActiveCfg = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x64.Build.0 = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x86.ActiveCfg = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x86.Build.0 = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|ARM64.Build.0 = Debug|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x64.ActiveCfg = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x64.Build.0 = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x86.ActiveCfg = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x86.Build.0 = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|ARM64.ActiveCfg = Release|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|ARM64.Build.0 = Release|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x64.ActiveCfg = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x64.Build.0 = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x86.ActiveCfg = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x86.Build.0 = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|ARM64.Build.0 = Debug|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x64.ActiveCfg = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x64.Build.0 = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x86.ActiveCfg = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x86.Build.0 = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|ARM64.ActiveCfg = Release|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|ARM64.Build.0 = Release|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x64.ActiveCfg = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x64.Build.0 = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x86.ActiveCfg = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x86.Build.0 = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|ARM64.ActiveCfg = Debug|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|ARM64.Build.0 = Debug|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x64.ActiveCfg = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x64.Build.0 = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x86.ActiveCfg = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x86.Build.0 = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|ARM64.ActiveCfg = Release|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|ARM64.Build.0 = Release|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x64.ActiveCfg = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x64.Build.0 = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x86.ActiveCfg = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x86.Build.0 = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|ARM64.Build.0 = Debug|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x64.ActiveCfg = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x64.Build.0 = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x86.ActiveCfg = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x86.Build.0 = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|ARM64.ActiveCfg = Release|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|ARM64.Build.0 = Release|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x64.ActiveCfg = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x64.Build.0 = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x86.ActiveCfg = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x86.Build.0 = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|ARM64.Build.0 = Debug|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x64.ActiveCfg = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x64.Build.0 = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x86.ActiveCfg = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x86.Build.0 = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|ARM64.ActiveCfg = Release|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|ARM64.Build.0 = Release|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x64.ActiveCfg = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x64.Build.0 = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x86.ActiveCfg = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x86.Build.0 = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|ARM64.Build.0 = Debug|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x64.ActiveCfg = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x64.Build.0 = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x86.ActiveCfg = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x86.Build.0 = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|ARM64.ActiveCfg = Release|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|ARM64.Build.0 = Release|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x64.ActiveCfg = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x64.Build.0 = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.ActiveCfg = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.Build.0 = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.Build.0 = Debug|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x64.ActiveCfg = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x64.Build.0 = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x86.ActiveCfg = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x86.Build.0 = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|ARM64.ActiveCfg = Release|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|ARM64.Build.0 = Release|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x64.ActiveCfg = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x64.Build.0 = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x86.ActiveCfg = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x86.Build.0 = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|ARM64.Build.0 = Debug|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x64.ActiveCfg = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x64.Build.0 = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x86.ActiveCfg = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x86.Build.0 = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|ARM64.ActiveCfg = Release|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|ARM64.Build.0 = Release|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x64.ActiveCfg = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x64.Build.0 = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x86.ActiveCfg = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x86.Build.0 = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|ARM64.Build.0 = Debug|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x64.ActiveCfg = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x64.Build.0 = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x86.ActiveCfg = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x86.Build.0 = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|ARM64.ActiveCfg = Release|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|ARM64.Build.0 = Release|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x64.ActiveCfg = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x64.Build.0 = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x86.ActiveCfg = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x86.Build.0 = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|ARM64.Build.0 = Debug|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x64.ActiveCfg = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x64.Build.0 = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x86.ActiveCfg = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x86.Build.0 = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|ARM64.ActiveCfg = Release|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|ARM64.Build.0 = Release|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x64.ActiveCfg = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x64.Build.0 = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x86.ActiveCfg = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x86.Build.0 = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|ARM64.Build.0 = Debug|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x64.ActiveCfg = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x64.Build.0 = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x86.ActiveCfg = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x86.Build.0 = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|ARM64.ActiveCfg = Release|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|ARM64.Build.0 = Release|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x64.ActiveCfg = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x64.Build.0 = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x86.ActiveCfg = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x86.Build.0 = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|ARM64.ActiveCfg = Debug|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|ARM64.Build.0 = Debug|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x64.ActiveCfg = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x64.Build.0 = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x86.ActiveCfg = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x86.Build.0 = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|ARM64.ActiveCfg = Release|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|ARM64.Build.0 = Release|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x64.ActiveCfg = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x64.Build.0 = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x86.ActiveCfg = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x86.Build.0 = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|ARM64.Build.0 = Debug|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x64.ActiveCfg = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x64.Build.0 = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x86.ActiveCfg = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x86.Build.0 = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|ARM64.ActiveCfg = Release|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|ARM64.Build.0 = Release|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x64.ActiveCfg = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x64.Build.0 = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x86.ActiveCfg = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x86.Build.0 = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|ARM64.Build.0 = Debug|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x64.ActiveCfg = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x64.Build.0 = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x86.ActiveCfg = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x86.Build.0 = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|ARM64.ActiveCfg = Release|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|ARM64.Build.0 = Release|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x64.ActiveCfg = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x64.Build.0 = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x86.ActiveCfg = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x86.Build.0 = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|ARM64.Build.0 = Debug|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x64.ActiveCfg = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x64.Build.0 = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x86.ActiveCfg = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x86.Build.0 = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|ARM64.ActiveCfg = Release|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|ARM64.Build.0 = Release|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x64.ActiveCfg = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x64.Build.0 = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x86.ActiveCfg = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x86.Build.0 = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|ARM64.Build.0 = Debug|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x64.ActiveCfg = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x64.Build.0 = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x86.ActiveCfg = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x86.Build.0 = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|ARM64.ActiveCfg = Release|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|ARM64.Build.0 = Release|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x64.ActiveCfg = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x64.Build.0 = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x86.ActiveCfg = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x86.Build.0 = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|ARM64.Build.0 = Debug|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x64.ActiveCfg = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x64.Build.0 = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x86.ActiveCfg = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x86.Build.0 = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|ARM64.ActiveCfg = Release|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|ARM64.Build.0 = Release|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x64.ActiveCfg = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x64.Build.0 = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x86.ActiveCfg = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x86.Build.0 = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|ARM64.Build.0 = Debug|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x64.ActiveCfg = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x64.Build.0 = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x86.ActiveCfg = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x86.Build.0 = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|ARM64.ActiveCfg = Release|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|ARM64.Build.0 = Release|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x64.ActiveCfg = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x64.Build.0 = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x86.ActiveCfg = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x86.Build.0 = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|ARM64.Build.0 = Debug|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x64.ActiveCfg = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x64.Build.0 = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x86.ActiveCfg = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x86.Build.0 = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|ARM64.ActiveCfg = Release|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|ARM64.Build.0 = Release|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x64.ActiveCfg = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x64.Build.0 = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x86.ActiveCfg = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x86.Build.0 = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|ARM64.Build.0 = Debug|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x64.ActiveCfg = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x64.Build.0 = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x86.ActiveCfg = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x86.Build.0 = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|ARM64.ActiveCfg = Release|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|ARM64.Build.0 = Release|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x64.ActiveCfg = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x64.Build.0 = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x86.ActiveCfg = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x86.Build.0 = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|ARM64.Build.0 = Debug|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x64.ActiveCfg = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x64.Build.0 = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x86.ActiveCfg = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x86.Build.0 = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|ARM64.ActiveCfg = Release|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|ARM64.Build.0 = Release|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x64.ActiveCfg = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x64.Build.0 = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x86.ActiveCfg = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x86.Build.0 = Release|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|ARM64.Build.0 = Debug|ARM64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|x64.ActiveCfg = Debug|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|x64.Build.0 = Debug|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|x86.ActiveCfg = Debug|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|x86.Build.0 = Debug|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|ARM64.ActiveCfg = Release|ARM64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|ARM64.Build.0 = Release|ARM64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|x64.ActiveCfg = Release|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|x64.Build.0 = Release|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|x86.ActiveCfg = Release|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|x86.Build.0 = Release|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|ARM64.Build.0 = Debug|ARM64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|x64.ActiveCfg = Debug|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|x64.Build.0 = Debug|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|x86.ActiveCfg = Debug|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|x86.Build.0 = Debug|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|ARM64.ActiveCfg = Release|ARM64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|ARM64.Build.0 = Release|ARM64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|x64.ActiveCfg = Release|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|x64.Build.0 = Release|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|x86.ActiveCfg = Release|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|x86.Build.0 = Release|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|ARM64.Build.0 = Debug|ARM64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|x64.ActiveCfg = Debug|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|x64.Build.0 = Debug|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|x86.ActiveCfg = Debug|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|x86.Build.0 = Debug|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|ARM64.ActiveCfg = Release|ARM64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|ARM64.Build.0 = Release|ARM64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|x64.ActiveCfg = Release|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|x64.Build.0 = Release|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|x86.ActiveCfg = Release|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|x86.Build.0 = Release|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|ARM64.Build.0 = Debug|ARM64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|x64.ActiveCfg = Debug|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|x64.Build.0 = Debug|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|x86.ActiveCfg = Debug|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|x86.Build.0 = Debug|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|ARM64.ActiveCfg = Release|ARM64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|ARM64.Build.0 = Release|ARM64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|x64.ActiveCfg = Release|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|x64.Build.0 = Release|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|x86.ActiveCfg = Release|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|x86.Build.0 = Release|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|ARM64.Build.0 = Debug|ARM64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|x64.ActiveCfg = Debug|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|x64.Build.0 = Debug|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|x86.ActiveCfg = Debug|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|x86.Build.0 = Debug|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|ARM64.ActiveCfg = Release|ARM64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|ARM64.Build.0 = Release|ARM64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|x64.ActiveCfg = Release|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|x64.Build.0 = Release|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|x86.ActiveCfg = Release|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|x86.Build.0 = Release|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|ARM64.Build.0 = Debug|ARM64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|x64.ActiveCfg = Debug|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|x64.Build.0 = Debug|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|x86.ActiveCfg = Debug|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|x86.Build.0 = Debug|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|ARM64.ActiveCfg = Release|ARM64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|ARM64.Build.0 = Release|ARM64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|x64.ActiveCfg = Release|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|x64.Build.0 = Release|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|x86.ActiveCfg = Release|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|x86.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {3BB8493E-D18E-4485-A320-CB40F90F55AE} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {1A066C63-64B3-45F8-92FE-664E1CCE8077} = {1AFB6476-670D-4E80-A464-657E01DFF482} {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {51920F1F-C28C-4ADF-8660-4238766796C2} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {2151F984-E006-4A9F-92EF-C6DDE3DC8413} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {6C7F47CC-2151-44A3-A546-41C70025132C} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} = {6C7F47CC-2151-44A3-A546-41C70025132C} {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} = {6C7F47CC-2151-44A3-A546-41C70025132C} {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8} = {6C7F47CC-2151-44A3-A546-41C70025132C} {17DA04DF-E393-4397-9CF0-84DABE11032E} = {1AFB6476-670D-4E80-A464-657E01DFF482} {38BDB927-829B-4C65-9CD9-93FB05D66D65} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {FF742965-9A80-41A5-B042-D6C7D3A21708} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {4AFC9975-2456-4C70-94A4-84073C1CED93} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {59BD9891-3837-438A-958D-ADC7F91F6F7E} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4D971245-7A70-41D5-BAA0-DDB5684CAF51} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {74F1B9ED-F59C-4FE7-B473-7B453E30837E} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {F8B870EB-D5F5-45BA-9CF7-A5C459818820} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {E364F67B-BB12-4E91-B639-355866EBCD8B} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {2F305555-C296-497E-AC20-5FA1B237996A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {AF2349B8-E5B6-4004-9502-687C1C7730B1} = {2F305555-C296-497E-AC20-5FA1B237996A} {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} = {2F305555-C296-497E-AC20-5FA1B237996A} {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A} = {2F305555-C296-497E-AC20-5FA1B237996A} {DA425894-6E13-404F-8DCB-78584EC0557A} = {2F305555-C296-497E-AC20-5FA1B237996A} {060D75DA-2D1C-48E6-A4A1-6F0718B64661} = {2F305555-C296-497E-AC20-5FA1B237996A} {748417CA-F17E-487F-9411-CAFB6D3F4877} = {2F305555-C296-497E-AC20-5FA1B237996A} {217DF501-135C-4E38-BFC8-99D4821032EA} = {2F305555-C296-497E-AC20-5FA1B237996A} {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {F055103B-F80B-4D0C-BF48-057C55620033} = {5A7818A8-109C-4E1C-850D-1A654E234B0E} {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {08C8C05F-0362-41BC-818C-724572DF8B06} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {5D00D290-4016-4CFE-9E41-1E7C724509BA} = {1AFB6476-670D-4E80-A464-657E01DFF482} {4AED67B6-55FD-486F-B917-E543DEE2CB3C} = {1AFB6476-670D-4E80-A464-657E01DFF482} {42851751-CBC8-45A6-97F5-7A0753F7B4D1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E} = {2F305555-C296-497E-AC20-5FA1B237996A} {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD} = {2F305555-C296-497E-AC20-5FA1B237996A} {655C9AF2-18D3-4DA6-80E4-85504A7722BA} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {BA58206B-1493-4C75-BFEA-A85768A1E156} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {1D78B84B-CA39-406C-98F4-71F7EC266CC0} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {03276A39-D4E9-417C-8FFD-200B0EE5E871} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {B81FB7B6-D30E-428F-908A-41422EFC1172} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0F85E674-34AE-443D-954C-8321EB8B93B1} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {632BBE62-5421-49EA-835A-7FFA4F499BD6} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4FA206A5-F69F-4193-BF8F-F6EEB496734C} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} = {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {DA5A6FE9-0040-40CC-83CC-764AE5306590} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0351ADA4-0C32-4652-9BA0-41F7B602372B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} = {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} {6955446D-23F7-4023-9BB3-8657F904AF99} = {1AFB6476-670D-4E80-A464-657E01DFF482} {58736667-1027-4AD7-BFDF-7A3A6474103A} = {5A7818A8-109C-4E1C-850D-1A654E234B0E} {D92131D6-7610-4D60-A7DB-1C169783F83B} = {1AFB6476-670D-4E80-A464-657E01DFF482} {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {0B593A6C-4143-4337-860E-DB5710FB87DB} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {1AFB6476-670D-4E80-A464-657E01DFF482} {5A7818A8-109C-4E1C-850D-1A654E234B0E} = {1AFB6476-670D-4E80-A464-657E01DFF482} {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} = {1AFB6476-670D-4E80-A464-657E01DFF482} {7319089E-46D6-4400-BC65-E39BDF1416EE} = {1AFB6476-670D-4E80-A464-657E01DFF482} {CABA8DFB-823B-4BF2-93AC-3F31984150D9} = {1AFB6476-670D-4E80-A464-657E01DFF482} {98537082-0FDB-40DE-ABD8-0DC5A4269BAB} = {1AFB6476-670D-4E80-A464-657E01DFF482} {B39DC643-4663-475E-B329-03F0C9918D48} = {1AFB6476-670D-4E80-A464-657E01DFF482} {8F62026A-294B-41C6-8839-87463613F216} = {1AFB6476-670D-4E80-A464-657E01DFF482} {C3A17DCA-217B-462C-BB0C-BE086AF80081} = {1AFB6476-670D-4E80-A464-657E01DFF482} {69E1EE8D-143A-4060-9129-4658ACF14AAF} = {2F305555-C296-497E-AC20-5FA1B237996A} {ECC20689-002A-4354-95A6-B58DF089C6FF} = {2F305555-C296-497E-AC20-5FA1B237996A} {4BABF3FE-3451-42FD-873F-3C332E18DCEF} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0648DF05-5DDA-4BE1-B5F2-584926EBDB65} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {E496B7FC-1E99-4BAB-849B-0E8367040B02} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {7F4B3A60-BC27-45A7-8000-68B0B6EA7466} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {8DF78B53-200E-451F-9328-01EB907193AE} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {23D2070D-E4AD-4ADD-85A7-083D9C76AD49} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {62173D9A-6724-4C00-A1C8-FB646480A9EC} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {127F38E0-40AA-4594-B955-5616BF206882} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} = {127F38E0-40AA-4594-B955-5616BF206882} {D940E07F-532C-4FF3-883F-790DA014F19A} = {127F38E0-40AA-4594-B955-5616BF206882} {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {3E424AD2-19E5-4AE6-B833-F53963EB5FC1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {106CBECA-0701-4FC3-838C-9DF816A19AE2} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2D604C07-51FC-46BB-9EB7-75AECC7F5E81} = {106CBECA-0701-4FC3-838C-9DF816A19AE2} {2EDB3EB4-FA92-4BFF-B2D8-566584837231} = {106CBECA-0701-4FC3-838C-9DF816A19AE2} {48804216-2A0E-4168-A6D8-9CD068D14227} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {FF1D7936-842A-4BBB-8BEA-E9FE796DE700} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {AC2857B4-103D-4D6D-9740-926EBF785042} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {11491FD8-F921-48BF-880C-7FEA185B80A1} = {2F305555-C296-497E-AC20-5FA1B237996A} {F40C3397-1834-4530-B2D9-8F8B8456BCDF} = {2F305555-C296-497E-AC20-5FA1B237996A} {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4ED320BC-BA04-4D42-8D15-CBE62151F08B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {322566EF-20DC-43A6-B9F8-616AF942579A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {E94FD11C-0591-456F-899F-EFC0CA548336} = {322566EF-20DC-43A6-B9F8-616AF942579A} {782A61BE-9D85-4081-B35C-1CCC9DCC1E88} = {322566EF-20DC-43A6-B9F8-616AF942579A} {809AA252-E17A-4FA2-B0A1-0450976B763F} = {2F305555-C296-497E-AC20-5FA1B237996A} {133281D8-1BCE-4D07-B31E-796612A9609E} = {2F305555-C296-497E-AC20-5FA1B237996A} {805306FF-A562-4415-8DEF-E493BDC45918} = {2F305555-C296-497E-AC20-5FA1B237996A} {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3} = {2F305555-C296-497E-AC20-5FA1B237996A} {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2} = {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9} = {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} {9F94B303-5E21-4364-9362-64426F8DB932} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E} = {322566EF-20DC-43A6-B9F8-616AF942579A} {F7C8C0F1-5431-4347-89D0-8E5354F93CF2} = {2F305555-C296-497E-AC20-5FA1B237996A} {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC} = {2F305555-C296-497E-AC20-5FA1B237996A} {04B193D7-3E21-46B8-A958-89B63A8A69DE} = {2F305555-C296-497E-AC20-5FA1B237996A} {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {FD464B4C-2F68-4D06-91E7-4208146C41F5} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {020A7474-3601-4160-A159-D7B70B77B15F} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {27718999-C175-450A-861C-89F911E16A88} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {1DBBB112-4BB1-444B-8EBB-E66555C76BA6} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {5A1DB2F0-0715-4B3B-98E6-79BC41540045} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {93B72A06-C8BD-484F-A6F7-C9F280B150BF} = {6C7F47CC-2151-44A3-A546-41C70025132C} {18B3DB45-4FFE-4D01-97D6-5223FEEE1853} = {6C7F47CC-2151-44A3-A546-41C70025132C} {0F14491C-6369-4C45-AAA8-135814E66E6B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {34A354C5-23C7-4343-916C-C52DAF4FC39D} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {3264DF53-C805-4B0C-867C-FCEAF7AEF762} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {31CAD28E-778A-441C-85BC-40AB3EAA2A10} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {25C91A4E-BA4E-467A-85CD-8B62545BF674} = {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1} = {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} {212AD910-8488-4036-BE20-326931B75FB2} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {7AC943C9-52E8-44CF-9083-744D8049667B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A} = {7AC943C9-52E8-44CF-9083-744D8049667B} {92C39820-9F84-4529-BC7D-22AAE514D63B} = {7AC943C9-52E8-44CF-9083-744D8049667B} {515554D1-D004-4F7F-A107-2211FC0F6B2C} = {7AC943C9-52E8-44CF-9083-744D8049667B} {C97D9A5D-206C-454E-997E-009E227D7F02} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {31D1C81D-765F-4446-AA62-E743F6325049} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {B41B888C-7DB8-4747-B262-4062E05A230D} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {AB82E5DD-C32D-4F28-9746-2C780846188E} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {E69B044A-2F8A-45AA-AD0B-256C59421807} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {C604B37E-9D0E-4484-8778-E8B31B0E1B3A} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788} = {1AFB6476-670D-4E80-A464-657E01DFF482} {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97} = {1AFB6476-670D-4E80-A464-657E01DFF482} {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {A1425B53-3D61-4679-8623-E64A0D3D0A48} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {ED9A1AC6-AEB0-4569-A6E9-E1696182B545} = {2F305555-C296-497E-AC20-5FA1B237996A} {5A5DD09D-723A-44D3-8F2B-293584C3D731} = {2F305555-C296-497E-AC20-5FA1B237996A} {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9} = {2F305555-C296-497E-AC20-5FA1B237996A} {54F7C616-FD41-4E62-BFF9-015686914F4D} = {2F305555-C296-497E-AC20-5FA1B237996A} {143F13E3-D2E3-4D83-B035-356612D99956} = {2F305555-C296-497E-AC20-5FA1B237996A} {56CC2F10-6E41-453D-BE16-C593A5E58482} = {2F305555-C296-497E-AC20-5FA1B237996A} {CA5518ED-0458-4B09-8F53-4122B9888655} = {2F305555-C296-497E-AC20-5FA1B237996A} {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D} = {2F305555-C296-497E-AC20-5FA1B237996A} {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA} = {2F305555-C296-497E-AC20-5FA1B237996A} {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2833C9C6-AB32-4048-A5C7-A70898337B57} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {50B82783-242F-42D2-BC03-B3430BF01354} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {A663E672-B26D-4EC0-BEAB-FE2E424AC46F} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {8A08D663-4995-40E3-B42C-3F910625F284} = {322566EF-20DC-43A6-B9F8-616AF942579A} {D962A009-834F-4EEC-AABB-430DF8F98E39} = {322566EF-20DC-43A6-B9F8-616AF942579A} {D9C5DE64-6849-4278-91AD-9660AECF2876} = {322566EF-20DC-43A6-B9F8-616AF942579A} {9873BA05-4C41-4819-9283-CF45D795431B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {FC373B24-3293-453C-AAF5-CF2909DCEE6A} = {9873BA05-4C41-4819-9283-CF45D795431B} {9CE59ED5-7087-4353-88EB-788038A73CEC} = {1AFB6476-670D-4E80-A464-657E01DFF482} {FD86C06A-FB54-4D5E-9831-1CDADF60D45F} = {929C1324-22E8-4412-A9A8-80E85F3985A5} {697C6AF9-0A48-49A9-866C-67DA12384015} = {929C1324-22E8-4412-A9A8-80E85F3985A5} {929C1324-22E8-4412-A9A8-80E85F3985A5} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {9EBAA524-0EDA-470B-95D4-39383285CBB2} = {1AFB6476-670D-4E80-A464-657E01DFF482} {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {D095BE44-1F2E-463E-A494-121892A75EA2} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {90F9FA90-2C20-4004-96E6-F3B78151F5A5} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {3B227528-4BA6-4CAF-B44A-A10C78A64849} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {F5E1146E-B7B3-4E11-85FD-270A500BD78C} = {3B227528-4BA6-4CAF-B44A-A10C78A64849} {3157FA75-86CF-4EE2-8F62-C43F776493C6} = {3B227528-4BA6-4CAF-B44A-A10C78A64849} {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA} = {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} {B9420661-B0E4-4241-ABD4-4A27A1F64250} = {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7} = {2F305555-C296-497E-AC20-5FA1B237996A} {D949EC7D-48A9-4279-95D5-078E7FD1F048} = {2F305555-C296-497E-AC20-5FA1B237996A} {3BAF9C81-A194-4925-A035-5E24A5D1E542} = {2F305555-C296-497E-AC20-5FA1B237996A} {6B04803D-B418-4833-A67E-B0FC966636A5} = {2F305555-C296-497E-AC20-5FA1B237996A} {3940AD4D-F748-4BE4-9083-85769CD553EF} = {2F305555-C296-497E-AC20-5FA1B237996A} {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38} = {2F305555-C296-497E-AC20-5FA1B237996A} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {C3A2F9D1-7930-4EF4-A6FC-7EE0A99821D0} EndGlobalSection EndGlobal
pedrolamas
9d2f9bcff27e71e7c16ee243961e949f821aab2e
0990724e445fae8319aeec5a1eb92f238c088f37
Why is this changed?
stefansjfw
226
microsoft/PowerToys
29,735
Adds QoiThumbnailProvider and QoiPreviewHandler
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds a new thumbnail provider and preview handler for qoi files (Quite Ok Images). ### Thumbnails ![image](https://github.com/microsoft/PowerToys/assets/85504/6fa0eed2-1359-4c37-bdb5-80e798cc3aae) ### Preview ![image](https://github.com/microsoft/PowerToys/assets/85504/0771e87e-c7a1-4c45-bab7-98295717241f) ### Settings ![image](https://github.com/microsoft/PowerToys/assets/85504/17e0f037-7448-4104-baa9-6b83208fdfc5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #29742 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [X] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [X] **New binaries:** Added on the required places - [X] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [X] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [x] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Local install and manual validation
null
2023-11-07 19:33:33+00:00
2023-11-14 15:41:10+00:00
PowerToys.sln
Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.32014.148 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "runner", "src\runner\runner.vcxproj", "{9412D5C6-2CF2-4FC2-A601-B55508EA9B27}" ProjectSection(ProjectDependencies) = postProject {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} = {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} = {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} {0B593A6C-4143-4337-860E-DB5710FB87DB} = {0B593A6C-4143-4337-860E-DB5710FB87DB} {17DA04DF-E393-4397-9CF0-84DABE11032E} = {17DA04DF-E393-4397-9CF0-84DABE11032E} {217DF501-135C-4E38-BFC8-99D4821032EA} = {217DF501-135C-4E38-BFC8-99D4821032EA} {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} = {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} {48804216-2A0E-4168-A6D8-9CD068D14227} = {48804216-2A0E-4168-A6D8-9CD068D14227} {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} = {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} = {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} {655C9AF2-18D3-4DA6-80E4-85504A7722BA} = {655C9AF2-18D3-4DA6-80E4-85504A7722BA} {69E1EE8D-143A-4060-9129-4658ACF14AAF} = {69E1EE8D-143A-4060-9129-4658ACF14AAF} {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} = {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} = {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} {AF2349B8-E5B6-4004-9502-687C1C7730B1} = {AF2349B8-E5B6-4004-9502-687C1C7730B1} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {B25AC7A5-FB9F-4789-B392-D5C85E948670} {BA58206B-1493-4C75-BFEA-A85768A1E156} = {BA58206B-1493-4C75-BFEA-A85768A1E156} {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D} = {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D} {D940E07F-532C-4FF3-883F-790DA014F19A} = {D940E07F-532C-4FF3-883F-790DA014F19A} {DA425894-6E13-404F-8DCB-78584EC0557A} = {DA425894-6E13-404F-8DCB-78584EC0557A} {E364F67B-BB12-4E91-B639-355866EBCD8B} = {E364F67B-BB12-4E91-B639-355866EBCD8B} {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "modules", "modules", "{4574FDD0-F61D-4376-98BF-E5A1262C11EC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "interface", "interface", "{3BB8493E-D18E-4485-A320-CB40F90F55AE}" ProjectSection(SolutionItems) = preProject src\modules\interface\powertoy_module_interface.h = src\modules\interface\powertoy_module_interface.h EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "fancyzones", "fancyzones", "{D1D6BC88-09AE-4FB4-AD24-5DED46A791DD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZonesLib", "src\modules\fancyzones\FancyZonesLib\FancyZonesLib.vcxproj", "{F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnitTests-FancyZones", "src\modules\fancyzones\FancyZonesTests\UnitTests\UnitTests.vcxproj", "{9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}" ProjectSection(ProjectDependencies) = postProject {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "common", "common", "{1AFB6476-670D-4E80-A464-657E01DFF482}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnitTests-CommonLib", "src\common\UnitTests-CommonLib\UnitTests-CommonLib.vcxproj", "{1A066C63-64B3-45F8-92FE-664E1CCE8077}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FancyZonesEditor", "src\modules\fancyzones\editor\FancyZonesEditor\FancyZonesEditor.csproj", "{5CCC8468-DEC8-4D36-99D4-5C891BEBD481}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "powerrename", "powerrename", "{89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameExt", "src\modules\powerrename\dll\PowerRenameExt.vcxproj", "{B25AC7A5-FB9F-4789-B392-D5C85E948670}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameLib", "src\modules\powerrename\lib\PowerRenameLib.vcxproj", "{51920F1F-C28C-4ADF-8660-4238766796C2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameTest", "src\modules\powerrename\testapp\PowerRenameTest.vcxproj", "{A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameUnitTests", "src\modules\powerrename\unittests\PowerRenameLibUnitTests.vcxproj", "{2151F984-E006-4A9F-92EF-C6DDE3DC8413}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {B25AC7A5-FB9F-4789-B392-D5C85E948670} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ModuleTemplateCompileTest", "tools\project_template\ModuleTemplate\ModuleTemplateCompileTest.vcxproj", "{64A80062-4D8B-4229-8A38-DFA1D7497749}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManager", "src\modules\keyboardmanager\dll\KeyboardManager.vcxproj", "{89F34AF7-1C34-4A72-AA6E-534BCF972BD9}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "imageresizer", "imageresizer", "{6C7F47CC-2151-44A3-A546-41C70025132C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageResizerUI", "src\modules\imageresizer\ui\ImageResizerUI.csproj", "{2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerExt", "src\modules\imageresizer\dll\ImageResizerExt.vcxproj", "{0B43679E-EDFA-4DA0-AD30-F4628B308B1B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageResizerUITest", "src\modules\imageresizer\tests\ImageResizerUITest.csproj", "{E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.ActionRunner", "src\ActionRunner\ActionRunner.vcxproj", "{D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}" ProjectSection(ProjectDependencies) = postProject {17DA04DF-E393-4397-9CF0-84DABE11032E} = {17DA04DF-E393-4397-9CF0-84DABE11032E} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ApplicationUpdate", "src\common\updating\updating.vcxproj", "{17DA04DF-E393-4397-9CF0-84DABE11032E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "keyboardmanager", "keyboardmanager", "{38BDB927-829B-4C65-9CD9-93FB05D66D65}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerCommon", "src\modules\keyboardmanager\common\KeyboardManagerCommon.vcxproj", "{8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "launcher", "launcher", "{C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Infrastructure", "src\modules\launcher\Wox.Infrastructure\Wox.Infrastructure.csproj", "{4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin", "src\modules\launcher\Wox.Plugin\Wox.Plugin.csproj", "{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Test", "src\modules\launcher\Wox.Test\Wox.Test.csproj", "{FF742965-9A80-41A5-B042-D6C7D3A21708}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{4AFC9975-2456-4C70-94A4-84073C1CED93}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Calculator", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Calculator\Microsoft.PowerToys.Run.Plugin.Calculator.csproj", "{59BD9891-3837-438A-958D-ADC7F91F6F7E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.VSCodeWorkspaces", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.VSCodeWorkspaces\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.csproj", "{4D971245-7A70-41D5-BAA0-DDB5684CAF51}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowWalker", "src\modules\launcher\Plugins\Microsoft.Plugin.WindowWalker\Microsoft.Plugin.WindowWalker.csproj", "{74F1B9ED-F59C-4FE7-B473-7B453E30837E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Program", "src\modules\launcher\Plugins\Microsoft.Plugin.Program\Microsoft.Plugin.Program.csproj", "{FDB3555B-58EF-4AE6-B5F1-904719637AB4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Shell", "src\modules\launcher\Plugins\Microsoft.Plugin.Shell\Microsoft.Plugin.Shell.csproj", "{C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Indexer", "src\modules\launcher\Plugins\Microsoft.Plugin.Indexer\Microsoft.Plugin.Indexer.csproj", "{F8B870EB-D5F5-45BA-9CF7-A5C459818820}" ProjectSection(ProjectDependencies) = postProject {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} = {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.Launcher", "src\modules\launcher\Microsoft.Launcher\Microsoft.Launcher.vcxproj", "{E364F67B-BB12-4E91-B639-355866EBCD8B}" ProjectSection(ProjectDependencies) = postProject {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} = {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerLauncher", "src\modules\launcher\PowerLauncher\PowerLauncher.csproj", "{F97E5003-F263-4D4A-A964-0F1F3C82DEF2}" ProjectSection(ProjectDependencies) = postProject {03276A39-D4E9-417C-8FFD-200B0EE5E871} = {03276A39-D4E9-417C-8FFD-200B0EE5E871} {0351ADA4-0C32-4652-9BA0-41F7B602372B} = {0351ADA4-0C32-4652-9BA0-41F7B602372B} {4BABF3FE-3451-42FD-873F-3C332E18DCEF} = {4BABF3FE-3451-42FD-873F-3C332E18DCEF} {4D971245-7A70-41D5-BAA0-DDB5684CAF51} = {4D971245-7A70-41D5-BAA0-DDB5684CAF51} {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} = {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {5043CECE-E6A7-4867-9CBE-02D27D83747A} {59BD9891-3837-438A-958D-ADC7F91F6F7E} = {59BD9891-3837-438A-958D-ADC7F91F6F7E} {5A1DB2F0-0715-4B3B-98E6-79BC41540045} = {5A1DB2F0-0715-4B3B-98E6-79BC41540045} {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} = {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} {74F1B9ED-F59C-4FE7-B473-7B453E30837E} = {74F1B9ED-F59C-4FE7-B473-7B453E30837E} {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} = {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} {9F94B303-5E21-4364-9362-64426F8DB932} = {9F94B303-5E21-4364-9362-64426F8DB932} {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} = {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} = {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} = {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} {D095BE44-1F2E-463E-A494-121892A75EA2} = {D095BE44-1F2E-463E-A494-121892A75EA2} {F8B870EB-D5F5-45BA-9CF7-A5C459818820} = {F8B870EB-D5F5-45BA-9CF7-A5C459818820} {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} = {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {FDB3555B-58EF-4AE6-B5F1-904719637AB4} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{E775CC2C-24CB-48D6-9C3A-BE4CCE0DB17A}" ProjectSection(SolutionItems) = preProject src\tests\win-app-driver\README.md = src\tests\win-app-driver\README.md EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "previewpane", "previewpane", "{2F305555-C296-497E-AC20-5FA1B237996A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PreviewHandlerCommon", "src\modules\previewpane\Common\PreviewHandlerCommon.csproj", "{AF2349B8-E5B6-4004-9502-687C1C7730B1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MarkdownPreviewHandler", "src\modules\previewpane\MarkdownPreviewHandler\MarkdownPreviewHandler.csproj", "{6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-MarkdownPreviewHandler", "src\modules\previewpane\UnitTests-MarkdownPreviewHandler\UnitTests-MarkdownPreviewHandler.csproj", "{A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SvgPreviewHandler", "src\modules\previewpane\SvgPreviewHandler\SvgPreviewHandler.csproj", "{DA425894-6E13-404F-8DCB-78584EC0557A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-SvgPreviewHandler", "src\modules\previewpane\UnitTests-SvgPreviewHandler\UnitTests-SvgPreviewHandler.csproj", "{060D75DA-2D1C-48E6-A4A1-6F0718B64661}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PreviewHandlerCommon", "src\modules\previewpane\UnitTests-PreviewHandlerCommon\UnitTests-PreviewHandlerCommon.csproj", "{748417CA-F17E-487F-9411-CAFB6D3F4877}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "powerpreview", "src\modules\previewpane\powerpreview\powerpreview.vcxproj", "{217DF501-135C-4E38-BFC8-99D4821032EA}" ProjectSection(ProjectDependencies) = postProject {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "settings-ui", "settings-ui", "{C3081D9A-1586-441A-B5F4-ED815B3719C1}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4981CCD1-4CD9-4A49-B240-00AA46493FF8}" ProjectSection(SolutionItems) = preProject src\.editorconfig = src\.editorconfig .vsconfig = .vsconfig Directory.Build.props = Directory.Build.props Directory.Build.targets = Directory.Build.targets Directory.Packages.props = Directory.Packages.props Solution.props = Solution.props EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Settings.UI.Library", "src\settings-ui\Settings.UI.Library\Settings.UI.Library.csproj", "{B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.Interop", "src\common\interop\PowerToys.Interop.vcxproj", "{F055103B-F80B-4D0C-BF48-057C55620033}" ProjectSection(ProjectDependencies) = postProject {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Folder", "src\modules\launcher\Plugins\Microsoft.Plugin.Folder\Microsoft.Plugin.Folder.csproj", "{787B8AA6-CA93-4C84-96FE-DF31110AD1C4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerLauncher.Telemetry", "src\modules\launcher\PowerLauncher.Telemetry\PowerLauncher.Telemetry.csproj", "{08C8C05F-0362-41BC-818C-724572DF8B06}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedTelemetry", "src\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj", "{5D00D290-4016-4CFE-9E41-1E7C724509BA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedCommon", "src\common\ManagedCommon\ManagedCommon.csproj", "{4AED67B6-55FD-486F-B917-E543DEE2CB3C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Program.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Program.UnitTests\Microsoft.Plugin.Program.UnitTests.csproj", "{42851751-CBC8-45A6-97F5-7A0753F7B4D1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-SvgThumbnailProvider", "src\modules\previewpane\UnitTests-SvgThumbnailProvider\UnitTests-SvgThumbnailProvider.csproj", "{1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SvgThumbnailProvider", "src\modules\previewpane\SvgThumbnailProvider\SvgThumbnailProvider.csproj", "{8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ColorPicker", "src\modules\colorPicker\ColorPicker\ColorPicker.vcxproj", "{655C9AF2-18D3-4DA6-80E4-85504A7722BA}" ProjectSection(ProjectDependencies) = postProject {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} = {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ColorPickerUI", "src\modules\colorPicker\ColorPickerUI\ColorPickerUI.csproj", "{BA58206B-1493-4C75-BFEA-A85768A1E156}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "colorpicker", "colorpicker", "{1D78B84B-CA39-406C-98F4-71F7EC266CC0}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Uri", "src\modules\launcher\Plugins\Microsoft.Plugin.Uri\Microsoft.Plugin.Uri.csproj", "{03276A39-D4E9-417C-8FFD-200B0EE5E871}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Uri.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Uri.UnitTests\Microsoft.Plugin.Uri.UnitTests.csproj", "{B81FB7B6-D30E-428F-908A-41422EFC1172}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Settings.UI.UnitTests", "src\settings-ui\Settings.UI.UnitTests\Settings.UI.UnitTests.csproj", "{0F85E674-34AE-443D-954C-8321EB8B93B1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.csproj", "{632BBE62-5421-49EA-835A-7FFA4F499BD6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Folder.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Folder.UnitTests\Microsoft.Plugin.Folder.UnitTests.csproj", "{4FA206A5-F69F-4193-BF8F-F6EEB496734C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTest-ColorPickerUI", "src\modules\colorPicker\UnitTest-ColorPickerUI\UnitTest-ColorPickerUI.csproj", "{090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "spdlog", "src\logging\logging.vcxproj", "{7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.System", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.System\Microsoft.PowerToys.Run.Plugin.System.csproj", "{FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.System.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.System.UnitTests\Microsoft.PowerToys.Run.Plugin.System.UnitTests.csproj", "{DA5A6FE9-0040-40CC-83CC-764AE5306590}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Service", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Service\Microsoft.PowerToys.Run.Plugin.Service.csproj", "{0351ADA4-0C32-4652-9BA0-41F7B602372B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "logger", "src\common\logger\logger.vcxproj", "{D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}" ProjectSection(ProjectDependencies) = postProject {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} = {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SettingsAPI", "src\common\SettingsAPI\SettingsAPI.vcxproj", "{6955446D-23F7-4023-9BB3-8657F904AF99}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Interop.Tests", "src\common\interop\interop-tests\Microsoft.Interop.Tests.csproj", "{58736667-1027-4AD7-BFDF-7A3A6474103A}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "notifications", "notifications", "{D92131D6-7610-4D60-A7DB-1C169783F83B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Notifications", "src\common\notifications\notifications.vcxproj", "{1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BackgroundActivatorDLL", "src\common\notifications\BackgroundActivatorDLL\BackgroundActivatorDLL.vcxproj", "{031AC72E-FA28-4AB7-B690-6F7B9C28AA73}" ProjectSection(ProjectDependencies) = postProject {0B593A6C-4143-4337-860E-DB5710FB87DB} = {0B593A6C-4143-4337-860E-DB5710FB87DB} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BackgroundActivator", "src\common\notifications\BackgroundActivator\BackgroundActivator.vcxproj", "{0B593A6C-4143-4337-860E-DB5710FB87DB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Version", "src\common\version\version.vcxproj", "{CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "interop", "interop", "{5A7818A8-109C-4E1C-850D-1A654E234B0E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "log", "log", "{E4E03FE0-94FD-47C7-88C5-F17D0AA549D3}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "COMUtils", "src\common\COMUtils\COMUtils.vcxproj", "{7319089E-46D6-4400-BC65-E39BDF1416EE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Display", "src\common\Display\Display.vcxproj", "{CABA8DFB-823B-4BF2-93AC-3F31984150D9}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Themes", "src\common\Themes\Themes.vcxproj", "{98537082-0FDB-40DE-ABD8-0DC5A4269BAB}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "utils", "utils", "{B39DC643-4663-475E-B329-03F0C9918D48}" ProjectSection(SolutionItems) = preProject src\common\utils\appMutex.h = src\common\utils\appMutex.h src\common\utils\color.h = src\common\utils\color.h src\common\utils\com_object_factory.h = src\common\utils\com_object_factory.h src\common\utils\elevation.h = src\common\utils\elevation.h src\common\utils\EventLocker.h = src\common\utils\EventLocker.h src\common\utils\EventWaiter.h = src\common\utils\EventWaiter.h src\common\utils\excluded_apps.h = src\common\utils\excluded_apps.h src\common\utils\exec.h = src\common\utils\exec.h src\common\utils\game_mode.h = src\common\utils\game_mode.h src\common\utils\gpo.h = src\common\utils\gpo.h src\common\utils\HDropIterator.h = src\common\utils\HDropIterator.h src\common\utils\HttpClient.h = src\common\utils\HttpClient.h src\common\utils\json.h = src\common\utils\json.h src\common\utils\logger_helper.h = src\common\utils\logger_helper.h src\common\utils\modulesRegistry.h = src\common\utils\modulesRegistry.h src\common\utils\MsiUtils.h = src\common\utils\MsiUtils.h src\common\utils\MsWindowsSettings.h = src\common\utils\MsWindowsSettings.h src\common\utils\os-detect.h = src\common\utils\os-detect.h src\common\utils\package.h = src\common\utils\package.h src\common\utils\ProcessWaiter.h = src\common\utils\ProcessWaiter.h src\common\utils\process_path.h = src\common\utils\process_path.h src\common\utils\registry.h = src\common\utils\registry.h src\common\utils\resources.h = src\common\utils\resources.h src\common\utils\serialized.h = src\common\utils\serialized.h src\common\utils\string_utils.h = src\common\utils\string_utils.h src\common\utils\timeutil.h = src\common\utils\timeutil.h src\common\utils\UnhandledExceptionHandler.h = src\common\utils\UnhandledExceptionHandler.h src\common\utils\winapi_error.h = src\common\utils\winapi_error.h src\common\utils\window.h = src\common\utils\window.h EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Telemetry", "Telemetry", "{8F62026A-294B-41C6-8839-87463613F216}" ProjectSection(SolutionItems) = preProject src\common\Telemetry\ProjectTelemetry.h = src\common\Telemetry\ProjectTelemetry.h src\common\Telemetry\TelemetryBase.cs = src\common\Telemetry\TelemetryBase.cs src\common\Telemetry\TraceLoggingDefines.h = src\common\Telemetry\TraceLoggingDefines.h EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common.UI", "src\common\Common.UI\Common.UI.csproj", "{C3A17DCA-217B-462C-BB0C-BE086AF80081}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PdfPreviewHandler", "src\modules\previewpane\PdfPreviewHandler\PdfPreviewHandler.csproj", "{69E1EE8D-143A-4060-9129-4658ACF14AAF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PdfPreviewHandler", "src\modules\previewpane\UnitTests-PdfPreviewHandler\UnitTests-PdfPreviewHandler.csproj", "{ECC20689-002A-4354-95A6-B58DF089C6FF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Registry", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Registry\Microsoft.PowerToys.Run.Plugin.Registry.csproj", "{4BABF3FE-3451-42FD-873F-3C332E18DCEF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Registry.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Registry.UnitTest\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.csproj", "{0648DF05-5DDA-4BE1-B5F2-584926EBDB65}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngine", "src\modules\keyboardmanager\KeyboardManagerEngine\KeyboardManagerEngine.vcxproj", "{BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngineLibrary", "src\modules\keyboardmanager\KeyboardManagerEngineLibrary\KeyboardManagerEngineLibrary.vcxproj", "{E496B7FC-1E99-4BAB-849B-0E8367040B02}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngineTest", "src\modules\keyboardmanager\KeyboardManagerEngineTest\KeyboardManagerEngineTest.vcxproj", "{7F4B3A60-BC27-45A7-8000-68B0B6EA7466}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditor", "src\modules\keyboardmanager\KeyboardManagerEditor\KeyboardManagerEditor.vcxproj", "{8DF78B53-200E-451F-9328-01EB907193AE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditorLibrary", "src\modules\keyboardmanager\KeyboardManagerEditorLibrary\KeyboardManagerEditorLibrary.vcxproj", "{23D2070D-E4AD-4ADD-85A7-083D9C76AD49}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditorTest", "src\modules\keyboardmanager\KeyboardManagerEditorTest\KeyboardManagerEditorTest.vcxproj", "{62173D9A-6724-4C00-A1C8-FB646480A9EC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "awake", "awake", "{127F38E0-40AA-4594-B955-5616BF206882}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AwakeModuleInterface", "src\modules\awake\AwakeModuleInterface\AwakeModuleInterface.vcxproj", "{5E7360A8-D048-4ED3-8F09-0BFD64C5529A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Awake", "src\modules\awake\Awake\Awake.csproj", "{D940E07F-532C-4FF3-883F-790DA014F19A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.UnitConverter", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.UnitConverter\Community.PowerToys.Run.Plugin.UnitConverter.csproj", "{BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.UnitConverter.UnitTest", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.csproj", "{3E424AD2-19E5-4AE6-B833-F53963EB5FC1}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "shortcutguide", "shortcutguide", "{106CBECA-0701-4FC3-838C-9DF816A19AE2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShortcutGuideModuleInterface", "src\modules\ShortcutGuide\ShortcutGuideModuleInterface\ShortcutGuideModuleInterface.vcxproj", "{2D604C07-51FC-46BB-9EB7-75AECC7F5E81}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShortcutGuide", "src\modules\ShortcutGuide\ShortcutGuide\ShortcutGuide.vcxproj", "{2EDB3EB4-FA92-4BFF-B2D8-566584837231}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZonesModuleInterface", "src\modules\fancyzones\FancyZonesModuleInterface\FancyZonesModuleInterface.vcxproj", "{48804216-2A0E-4168-A6D8-9CD068D14227}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZones", "src\modules\fancyzones\FancyZones\FancyZones.vcxproj", "{FF1D7936-842A-4BBB-8BEA-E9FE796DE700}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.Update", "src\Update\PowerToys.Update.vcxproj", "{44CE9AE1-4390-42C5-BACC-0FD6B40AA203}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.WindowsSettings", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsSettings\Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj", "{5043CECE-E6A7-4867-9CBE-02D27D83747A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceShared", "src\modules\videoconference\VideoConferenceShared\VideoConferenceShared.vcxproj", "{459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceModule", "src\modules\videoconference\VideoConferenceModule\VideoConference.vcxproj", "{5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceProxyFilter", "src\modules\videoconference\VideoConferenceProxyFilter\VideoConferenceProxyFilter.vcxproj", "{AC2857B4-103D-4D6D-9740-926EBF785042}" ProjectSection(ProjectDependencies) = postProject {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} = {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VideoConference", "VideoConference", "{470FBAF9-E1F8-4F3E-8786-198A1C81C8A8}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PdfThumbnailProvider", "src\modules\previewpane\PdfThumbnailProvider\PdfThumbnailProvider.csproj", "{11491FD8-F921-48BF-880C-7FEA185B80A1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PdfThumbnailProvider", "src\modules\previewpane\UnitTests-PdfThumbnailProvider\UnitTests-PdfThumbnailProvider.csproj", "{F40C3397-1834-4530-B2D9-8F8B8456BCDF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.WindowsTerminal", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsTerminal\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.csproj", "{A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowsTerminal.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.UnitTests\Microsoft.Plugin.WindowsTerminal.UnitTests.csproj", "{4ED320BC-BA04-4D42-8D15-CBE62151F08B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MouseUtils", "MouseUtils", "{322566EF-20DC-43A6-B9F8-616AF942579A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FindMyMouse", "src\modules\MouseUtils\FindMyMouse\FindMyMouse.vcxproj", "{E94FD11C-0591-456F-899F-EFC0CA548336}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseHighlighter", "src\modules\MouseUtils\MouseHighlighter\MouseHighlighter.vcxproj", "{782A61BE-9D85-4081-B35C-1CCC9DCC1E88}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GcodeThumbnailProvider", "src\modules\previewpane\GcodeThumbnailProvider\GcodeThumbnailProvider.csproj", "{809AA252-E17A-4FA2-B0A1-0450976B763F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-GcodeThumbnailProvider", "src\modules\previewpane\UnitTests-GcodeThumbnailProvider\UnitTests-GcodeThumbnailProvider.csproj", "{133281D8-1BCE-4D07-B31E-796612A9609E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GcodePreviewHandler", "src\modules\previewpane\GcodePreviewHandler\GcodePreviewHandler.csproj", "{805306FF-A562-4415-8DEF-E493BDC45918}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-GcodePreviewHandler", "src\modules\previewpane\UnitTests-GcodePreviewHandler\UnitTests-GcodePreviewHandler.csproj", "{FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AlwaysOnTop", "AlwaysOnTop", "{60CD2D4F-C3B9-4897-9821-FCA5098B41CE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlwaysOnTop", "src\modules\alwaysontop\AlwaysOnTop\AlwaysOnTop.vcxproj", "{1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlwaysOnTopModuleInterface", "src\modules\alwaysontop\AlwaysOnTopModuleInterface\AlwaysOnTopModuleInterface.vcxproj", "{48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.WebSearch", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.WebSearch\Community.PowerToys.Run.Plugin.WebSearch.csproj", "{9F94B303-5E21-4364-9362-64426F8DB932}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MousePointerCrosshairs", "src\modules\MouseUtils\MousePointerCrosshairs\MousePointerCrosshairs.vcxproj", "{EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StlThumbnailProvider", "src\modules\previewpane\StlThumbnailProvider\StlThumbnailProvider.csproj", "{F7C8C0F1-5431-4347-89D0-8E5354F93CF2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-StlThumbnailProvider", "src\modules\previewpane\UnitTests-StlThumbnailProvider\UnitTests-StlThumbnailProvider.csproj", "{F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MonacoPreviewHandler", "src\modules\previewpane\MonacoPreviewHandler\MonacoPreviewHandler.csproj", "{04B193D7-3E21-46B8-A958-89B63A8A69DE}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.TimeDate", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.TimeDate\Microsoft.PowerToys.Run.Plugin.TimeDate.csproj", "{5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.csproj", "{FD464B4C-2F68-4D06-91E7-4208146C41F5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowWalker.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.WindowWalker.UnitTests\Microsoft.Plugin.WindowWalker.UnitTests.csproj", "{8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerToys.Settings", "src\settings-ui\Settings.UI\PowerToys.Settings.csproj", "{020A7474-3601-4160-A159-D7B70B77B15F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameUI", "src\modules\powerrename\PowerRenameUILib\PowerRenameUI.vcxproj", "{27718999-C175-450A-861C-89F911E16A88}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameContextMenu", "src\modules\powerrename\PowerRenameContextMenu\PowerRenameContextMenu.vcxproj", "{1DBBB112-4BB1-444B-8EBB-E66555C76BA6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.OneNote", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.OneNote\Microsoft.PowerToys.Run.Plugin.OneNote.csproj", "{5A1DB2F0-0715-4B3B-98E6-79BC41540045}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerContextMenu", "src\modules\imageresizer\ImageResizerContextMenu\ImageResizerContextMenu.vcxproj", "{93B72A06-C8BD-484F-A6F7-C9F280B150BF}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerLib", "src\modules\imageresizer\ImageResizerLib\ImageResizerLib.vcxproj", "{18B3DB45-4FFE-4D01-97D6-5223FEEE1853}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PowerAccent", "PowerAccent", "{0F14491C-6369-4C45-AAA8-135814E66E6B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerAccentModuleInterface", "src\modules\poweraccent\PowerAccentModuleInterface\PowerAccentModuleInterface.vcxproj", "{34A354C5-23C7-4343-916C-C52DAF4FC39D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerAccent.Core", "src\modules\poweraccent\PowerAccent.Core\PowerAccent.Core.csproj", "{3264DF53-C805-4B0C-867C-FCEAF7AEF762}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerAccent.UI", "src\modules\poweraccent\PowerAccent.UI\PowerAccent.UI.csproj", "{31CAD28E-778A-441C-85BC-40AB3EAA2A10}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PowerOCR", "PowerOCR", "{A50C70A6-2DA0-4027-B90E-B1A40755A8A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerOCR", "src\modules\PowerOCR\PowerOCR\PowerOCR.csproj", "{25C91A4E-BA4E-467A-85CD-8B62545BF674}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerOCRModuleInterface", "src\modules\PowerOCR\PowerOCRModuleInterface\PowerOCRModuleInterface.vcxproj", "{6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.History", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.History\Microsoft.PowerToys.Run.Plugin.History.csproj", "{212AD910-8488-4036-BE20-326931B75FB2}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MeasureTool", "MeasureTool", "{7AC943C9-52E8-44CF-9083-744D8049667B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.MeasureToolCore", "src\modules\MeasureTool\MeasureToolCore\PowerToys.MeasureToolCore.vcxproj", "{54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}" ProjectSection(ProjectDependencies) = postProject {6955446D-23F7-4023-9BB3-8657F904AF99} = {6955446D-23F7-4023-9BB3-8657F904AF99} {CABA8DFB-823B-4BF2-93AC-3F31984150D9} = {CABA8DFB-823B-4BF2-93AC-3F31984150D9} {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MeasureToolModuleInterface", "src\modules\MeasureTool\MeasureToolModuleInterface\MeasureToolModuleInterface.vcxproj", "{92C39820-9F84-4529-BC7D-22AAE514D63B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MeasureToolUI", "src\modules\MeasureTool\MeasureToolUI\MeasureToolUI.csproj", "{515554D1-D004-4F7F-A107-2211FC0F6B2C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerAccentKeyboardService", "src\modules\poweraccent\PowerAccentKeyboardService\PowerAccentKeyboardService.vcxproj", "{C97D9A5D-206C-454E-997E-009E227D7F02}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hosts", "src\modules\Hosts\Hosts\Hosts.csproj", "{31D1C81D-765F-4446-AA62-E743F6325049}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Hosts", "Hosts", "{F05E590D-AD46-42BE-9C25-6A63ADD2E3EA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hosts.Tests", "src\modules\Hosts\Hosts.Tests\Hosts.Tests.csproj", "{E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HostsModuleInterface", "src\modules\Hosts\HostsModuleInterface\HostsModuleInterface.vcxproj", "{B41B888C-7DB8-4747-B262-4062E05A230D}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "FileLocksmith", "FileLocksmith", "{AB82E5DD-C32D-4F28-9746-2C780846188E}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileLocksmithExt", "src\modules\FileLocksmith\FileLocksmithExt\FileLocksmithExt.vcxproj", "{57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileLocksmithUI", "src\modules\FileLocksmith\FileLocksmithUI\FileLocksmithUI.csproj", "{E69B044A-2F8A-45AA-AD0B-256C59421807}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileLocksmithLibInterop", "src\modules\FileLocksmith\FileLocksmithLibInterop\FileLocksmithLibInterop.vcxproj", "{C604B37E-9D0E-4484-8778-E8B31B0E1B3A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GPOWrapper", "src\common\GPOWrapper\GPOWrapper.vcxproj", "{E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GPOWrapperProjection", "src\common\GPOWrapperProjection\GPOWrapperProjection.csproj", "{00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Peek", "Peek", "{17B4FA70-001E-4D33-BBBB-0D142DBC2E20}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Peek", "src\modules\peek\peek\peek.vcxproj", "{A1425B53-3D61-4679-8623-E64A0D3D0A48}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.UI", "src\modules\peek\Peek.UI\Peek.UI.csproj", "{9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.Common", "src\modules\peek\Peek.Common\Peek.Common.csproj", "{17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.FilePreviewer", "src\modules\peek\Peek.FilePreviewer\Peek.FilePreviewer.csproj", "{AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MarkdownPreviewHandlerCpp", "src\modules\previewpane\MarkdownPreviewHandlerCpp\MarkdownPreviewHandlerCpp.vcxproj", "{ED9A1AC6-AEB0-4569-A6E9-E1696182B545}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GcodePreviewHandlerCpp", "src\modules\previewpane\GcodePreviewHandlerCpp\GcodePreviewHandlerCpp.vcxproj", "{5A5DD09D-723A-44D3-8F2B-293584C3D731}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MonacoPreviewHandlerCpp", "src\modules\previewpane\MonacoPreviewHandlerCpp\MonacoPreviewHandlerCpp.vcxproj", "{B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PdfPreviewHandlerCpp", "src\modules\previewpane\PdfPreviewHandlerCpp\PdfPreviewHandlerCpp.vcxproj", "{54F7C616-FD41-4E62-BFF9-015686914F4D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SvgPreviewHandlerCpp", "src\modules\previewpane\SvgPreviewHandlerCpp\SvgPreviewHandlerCpp.vcxproj", "{143F13E3-D2E3-4D83-B035-356612D99956}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GcodeThumbnailProviderCpp", "src\modules\previewpane\GcodeThumbnailProviderCpp\GcodeThumbnailProviderCpp.vcxproj", "{56CC2F10-6E41-453D-BE16-C593A5E58482}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PdfThumbnailProviderCpp", "src\modules\previewpane\PdfThumbnailProviderCpp\PdfThumbnailProviderCpp.vcxproj", "{CA5518ED-0458-4B09-8F53-4122B9888655}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StlThumbnailProviderCpp", "src\modules\previewpane\StlThumbnailProviderCpp\StlThumbnailProviderCpp.vcxproj", "{D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SvgThumbnailProviderCpp", "src\modules\previewpane\SvgThumbnailProviderCpp\SvgThumbnailProviderCpp.vcxproj", "{2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MouseWithoutBorders", "MouseWithoutBorders", "{B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseWithoutBordersModuleInterface", "src\modules\MouseWithoutBorders\ModuleInterface\MouseWithoutBordersModuleInterface.vcxproj", "{2833C9C6-AB32-4048-A5C7-A70898337B57}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBorders", "src\modules\MouseWithoutBorders\App\MouseWithoutBorders.csproj", "{50B82783-242F-42D2-BC03-B3430BF01354}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBordersService", "src\modules\MouseWithoutBorders\App\Service\MouseWithoutBordersService.csproj", "{B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBordersHelper", "src\modules\MouseWithoutBorders\App\Helper\MouseWithoutBordersHelper.csproj", "{A663E672-B26D-4EC0-BEAB-FE2E424AC46F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseJump", "src\modules\MouseUtils\MouseJump\MouseJump.vcxproj", "{8A08D663-4995-40E3-B42C-3F910625F284}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseJumpUI", "src\modules\MouseUtils\MouseJumpUI\MouseJumpUI.csproj", "{D962A009-834F-4EEC-AABB-430DF8F98E39}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseJumpUI.UnitTests", "src\modules\MouseUtils\MouseJumpUI.UnitTests\MouseJumpUI.UnitTests.csproj", "{D9C5DE64-6849-4278-91AD-9660AECF2876}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "pasteplain", "pasteplain", "{9873BA05-4C41-4819-9283-CF45D795431B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PastePlainModuleInterface", "src\modules\pasteplain\PastePlainModuleInterface\PastePlainModuleInterface.vcxproj", "{FC373B24-3293-453C-AAF5-CF2909DCEE6A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AllExperiments", "src\common\AllExperiments\AllExperiments.csproj", "{9CE59ED5-7087-4353-88EB-788038A73CEC}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RegistryPreviewUI", "src\modules\registrypreview\RegistryPreviewUI\RegistryPreviewUI.csproj", "{FD86C06A-FB54-4D5E-9831-1CDADF60D45F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RegistryPreviewExt", "src\modules\registrypreview\RegistryPreviewExt\RegistryPreviewExt.vcxproj", "{697C6AF9-0A48-49A9-866C-67DA12384015}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RegistryPreview", "RegistryPreview", "{929C1324-22E8-4412-A9A8-80E85F3985A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FilePreviewCommon", "src\common\FilePreviewCommon\FilePreviewCommon.csproj", "{9EBAA524-0EDA-470B-95D4-39383285CBB2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.PowerToys", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.PowerToys\Microsoft.PowerToys.Run.Plugin.PowerToys.csproj", "{500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.ValueGenerator", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.ValueGenerator\Community.PowerToys.Run.Plugin.ValueGenerator.csproj", "{D095BE44-1F2E-463E-A494-121892A75EA2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.csproj", "{90F9FA90-2C20-4004-96E6-F3B78151F5A5}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CropAndLock", "CropAndLock", "{3B227528-4BA6-4CAF-B44A-A10C78A64849}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CropAndLock", "src\modules\CropAndLock\CropAndLock\CropAndLock.vcxproj", "{F5E1146E-B7B3-4E11-85FD-270A500BD78C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CropAndLockModuleInterface", "src\modules\CropAndLock\CropAndLockModuleInterface\CropAndLockModuleInterface.vcxproj", "{3157FA75-86CF-4EE2-8F62-C43F776493C6}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests-FancyZonesEditor", "src\modules\fancyzones\UnitTests-FancyZonesEditor\UnitTests-FancyZonesEditor.csproj", "{FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "EnvironmentVariables", "EnvironmentVariables", "{538ED0BB-B863-4B20-98CC-BCDF7FA0B68A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EnvironmentVariables", "src\modules\EnvironmentVariables\EnvironmentVariables\EnvironmentVariables.csproj", "{51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EnvironmentVariablesModuleInterface", "src\modules\EnvironmentVariables\EnvironmentVariablesModuleInterface\EnvironmentVariablesModuleInterface.vcxproj", "{B9420661-B0E4-4241-ABD4-4A27A1F64250}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|ARM64 = Debug|ARM64 Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 Release|ARM64 = Release|ARM64 Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|ARM64.Build.0 = Debug|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x64.ActiveCfg = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x64.Build.0 = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x86.ActiveCfg = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|ARM64.ActiveCfg = Release|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|ARM64.Build.0 = Release|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x64.ActiveCfg = Release|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x64.Build.0 = Release|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x86.ActiveCfg = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|ARM64.Build.0 = Debug|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x64.ActiveCfg = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x64.Build.0 = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x86.ActiveCfg = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|ARM64.ActiveCfg = Release|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|ARM64.Build.0 = Release|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x64.ActiveCfg = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x64.Build.0 = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x86.ActiveCfg = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|ARM64.Build.0 = Debug|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x64.ActiveCfg = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x64.Build.0 = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x86.ActiveCfg = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|ARM64.ActiveCfg = Release|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|ARM64.Build.0 = Release|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x64.ActiveCfg = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x64.Build.0 = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x86.ActiveCfg = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|ARM64.Build.0 = Debug|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x64.ActiveCfg = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x64.Build.0 = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x86.ActiveCfg = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|ARM64.ActiveCfg = Release|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|ARM64.Build.0 = Release|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x64.ActiveCfg = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x64.Build.0 = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x86.ActiveCfg = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|ARM64.Build.0 = Debug|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x64.ActiveCfg = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x64.Build.0 = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x86.ActiveCfg = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|ARM64.ActiveCfg = Release|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|ARM64.Build.0 = Release|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x64.ActiveCfg = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x64.Build.0 = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x86.ActiveCfg = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|ARM64.Build.0 = Debug|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x64.ActiveCfg = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x64.Build.0 = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x86.ActiveCfg = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|ARM64.ActiveCfg = Release|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|ARM64.Build.0 = Release|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x64.ActiveCfg = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x64.Build.0 = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x86.ActiveCfg = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|ARM64.Build.0 = Debug|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x64.ActiveCfg = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x64.Build.0 = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x86.ActiveCfg = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|ARM64.ActiveCfg = Release|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|ARM64.Build.0 = Release|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x64.ActiveCfg = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x64.Build.0 = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x86.ActiveCfg = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|ARM64.Build.0 = Debug|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x64.ActiveCfg = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x64.Build.0 = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x86.ActiveCfg = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|ARM64.ActiveCfg = Release|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|ARM64.Build.0 = Release|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x64.ActiveCfg = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x64.Build.0 = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x86.ActiveCfg = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|ARM64.Build.0 = Debug|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x64.ActiveCfg = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x64.Build.0 = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x86.ActiveCfg = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|ARM64.ActiveCfg = Release|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|ARM64.Build.0 = Release|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x64.ActiveCfg = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x64.Build.0 = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x86.ActiveCfg = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|ARM64.ActiveCfg = Debug|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|ARM64.Build.0 = Debug|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x64.ActiveCfg = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x64.Build.0 = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x86.ActiveCfg = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|ARM64.ActiveCfg = Release|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|ARM64.Build.0 = Release|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x64.ActiveCfg = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x64.Build.0 = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x86.ActiveCfg = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|ARM64.Build.0 = Debug|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x64.ActiveCfg = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x64.Build.0 = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x86.ActiveCfg = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|ARM64.ActiveCfg = Release|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|ARM64.Build.0 = Release|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x64.ActiveCfg = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x64.Build.0 = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x86.ActiveCfg = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|ARM64.Build.0 = Debug|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x64.ActiveCfg = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x64.Build.0 = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x86.ActiveCfg = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|ARM64.ActiveCfg = Release|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|ARM64.Build.0 = Release|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x64.ActiveCfg = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x64.Build.0 = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x86.ActiveCfg = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|ARM64.Build.0 = Debug|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x64.ActiveCfg = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x64.Build.0 = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x86.ActiveCfg = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|ARM64.ActiveCfg = Release|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|ARM64.Build.0 = Release|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x64.ActiveCfg = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x64.Build.0 = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x86.ActiveCfg = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|ARM64.Build.0 = Debug|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x64.ActiveCfg = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x64.Build.0 = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x86.ActiveCfg = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|ARM64.ActiveCfg = Release|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|ARM64.Build.0 = Release|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x64.ActiveCfg = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x64.Build.0 = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x86.ActiveCfg = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|ARM64.Build.0 = Debug|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x64.ActiveCfg = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x64.Build.0 = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x86.ActiveCfg = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|ARM64.ActiveCfg = Release|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|ARM64.Build.0 = Release|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x64.ActiveCfg = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x64.Build.0 = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x86.ActiveCfg = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|ARM64.Build.0 = Debug|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x64.ActiveCfg = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x64.Build.0 = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x86.ActiveCfg = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|ARM64.ActiveCfg = Release|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|ARM64.Build.0 = Release|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x64.ActiveCfg = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x64.Build.0 = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x86.ActiveCfg = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|ARM64.Build.0 = Debug|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x64.ActiveCfg = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x64.Build.0 = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x86.ActiveCfg = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|ARM64.ActiveCfg = Release|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|ARM64.Build.0 = Release|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x64.ActiveCfg = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x64.Build.0 = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x86.ActiveCfg = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|ARM64.Build.0 = Debug|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x64.ActiveCfg = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x64.Build.0 = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x86.ActiveCfg = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|ARM64.ActiveCfg = Release|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|ARM64.Build.0 = Release|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x64.ActiveCfg = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x64.Build.0 = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x86.ActiveCfg = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|ARM64.Build.0 = Debug|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x64.ActiveCfg = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x64.Build.0 = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x86.ActiveCfg = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|ARM64.ActiveCfg = Release|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|ARM64.Build.0 = Release|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x64.ActiveCfg = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x64.Build.0 = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x86.ActiveCfg = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|ARM64.Build.0 = Debug|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x64.ActiveCfg = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x64.Build.0 = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x86.ActiveCfg = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|ARM64.ActiveCfg = Release|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|ARM64.Build.0 = Release|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x64.ActiveCfg = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x64.Build.0 = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x86.ActiveCfg = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|ARM64.Build.0 = Debug|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x64.ActiveCfg = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x64.Build.0 = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x86.ActiveCfg = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|ARM64.ActiveCfg = Release|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|ARM64.Build.0 = Release|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x64.ActiveCfg = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x64.Build.0 = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x86.ActiveCfg = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|ARM64.Build.0 = Debug|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x64.ActiveCfg = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x64.Build.0 = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x86.ActiveCfg = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|ARM64.ActiveCfg = Release|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|ARM64.Build.0 = Release|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x64.ActiveCfg = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x64.Build.0 = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x86.ActiveCfg = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|ARM64.Build.0 = Debug|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x64.ActiveCfg = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x64.Build.0 = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x86.ActiveCfg = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|ARM64.ActiveCfg = Release|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|ARM64.Build.0 = Release|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x64.ActiveCfg = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x64.Build.0 = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x86.ActiveCfg = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|ARM64.Build.0 = Debug|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x64.ActiveCfg = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x64.Build.0 = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x86.ActiveCfg = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|ARM64.ActiveCfg = Release|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|ARM64.Build.0 = Release|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x64.ActiveCfg = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x64.Build.0 = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x86.ActiveCfg = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|ARM64.Build.0 = Debug|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x64.ActiveCfg = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x64.Build.0 = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x86.ActiveCfg = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|ARM64.ActiveCfg = Release|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|ARM64.Build.0 = Release|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x64.ActiveCfg = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x64.Build.0 = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x86.ActiveCfg = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|ARM64.Build.0 = Debug|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x64.ActiveCfg = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x64.Build.0 = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x86.ActiveCfg = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|ARM64.ActiveCfg = Release|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|ARM64.Build.0 = Release|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x64.ActiveCfg = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x64.Build.0 = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x86.ActiveCfg = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|ARM64.Build.0 = Debug|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x64.ActiveCfg = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x64.Build.0 = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x86.ActiveCfg = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|ARM64.ActiveCfg = Release|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|ARM64.Build.0 = Release|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x64.ActiveCfg = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x64.Build.0 = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x86.ActiveCfg = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|ARM64.Build.0 = Debug|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x64.ActiveCfg = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x64.Build.0 = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x86.ActiveCfg = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|ARM64.ActiveCfg = Release|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|ARM64.Build.0 = Release|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x64.ActiveCfg = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x64.Build.0 = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x86.ActiveCfg = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|ARM64.Build.0 = Debug|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x64.ActiveCfg = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x64.Build.0 = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x86.ActiveCfg = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|ARM64.ActiveCfg = Release|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|ARM64.Build.0 = Release|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x64.ActiveCfg = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x64.Build.0 = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x86.ActiveCfg = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|ARM64.Build.0 = Debug|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x64.ActiveCfg = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x64.Build.0 = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x86.ActiveCfg = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|ARM64.ActiveCfg = Release|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|ARM64.Build.0 = Release|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x64.ActiveCfg = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x64.Build.0 = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x86.ActiveCfg = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|ARM64.Build.0 = Debug|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x64.ActiveCfg = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x64.Build.0 = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x86.ActiveCfg = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|ARM64.ActiveCfg = Release|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|ARM64.Build.0 = Release|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x64.ActiveCfg = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x64.Build.0 = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x86.ActiveCfg = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|ARM64.Build.0 = Debug|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x64.ActiveCfg = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x64.Build.0 = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x86.ActiveCfg = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|ARM64.ActiveCfg = Release|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|ARM64.Build.0 = Release|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x64.ActiveCfg = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x64.Build.0 = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x86.ActiveCfg = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|ARM64.ActiveCfg = Debug|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|ARM64.Build.0 = Debug|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x64.ActiveCfg = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x64.Build.0 = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x86.ActiveCfg = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|ARM64.ActiveCfg = Release|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|ARM64.Build.0 = Release|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x64.ActiveCfg = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x64.Build.0 = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x86.ActiveCfg = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|ARM64.ActiveCfg = Debug|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|ARM64.Build.0 = Debug|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x64.ActiveCfg = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x64.Build.0 = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x86.ActiveCfg = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|ARM64.ActiveCfg = Release|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|ARM64.Build.0 = Release|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x64.ActiveCfg = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x64.Build.0 = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x86.ActiveCfg = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|ARM64.Build.0 = Debug|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x64.ActiveCfg = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x64.Build.0 = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x86.ActiveCfg = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|ARM64.ActiveCfg = Release|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|ARM64.Build.0 = Release|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x64.ActiveCfg = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x64.Build.0 = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x86.ActiveCfg = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|ARM64.Build.0 = Debug|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.ActiveCfg = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.Build.0 = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x86.ActiveCfg = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|ARM64.ActiveCfg = Release|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|ARM64.Build.0 = Release|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x64.ActiveCfg = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x64.Build.0 = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x86.ActiveCfg = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|ARM64.Build.0 = Debug|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x64.ActiveCfg = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x64.Build.0 = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x86.ActiveCfg = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|ARM64.ActiveCfg = Release|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|ARM64.Build.0 = Release|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x64.ActiveCfg = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x64.Build.0 = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x86.ActiveCfg = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|ARM64.Build.0 = Debug|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x64.ActiveCfg = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x64.Build.0 = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x86.ActiveCfg = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|ARM64.ActiveCfg = Release|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|ARM64.Build.0 = Release|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x64.ActiveCfg = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x64.Build.0 = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x86.ActiveCfg = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|ARM64.ActiveCfg = Debug|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|ARM64.Build.0 = Debug|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x64.ActiveCfg = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x64.Build.0 = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x86.ActiveCfg = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|ARM64.ActiveCfg = Release|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|ARM64.Build.0 = Release|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x64.ActiveCfg = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x64.Build.0 = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x86.ActiveCfg = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|ARM64.Build.0 = Debug|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x64.ActiveCfg = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x64.Build.0 = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x86.ActiveCfg = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|ARM64.ActiveCfg = Release|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|ARM64.Build.0 = Release|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x64.ActiveCfg = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x64.Build.0 = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x86.ActiveCfg = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|ARM64.Build.0 = Debug|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x64.ActiveCfg = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x64.Build.0 = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x86.ActiveCfg = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|ARM64.ActiveCfg = Release|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|ARM64.Build.0 = Release|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x64.ActiveCfg = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x64.Build.0 = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x86.ActiveCfg = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|ARM64.Build.0 = Debug|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x64.ActiveCfg = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x64.Build.0 = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x86.ActiveCfg = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|ARM64.ActiveCfg = Release|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|ARM64.Build.0 = Release|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x64.ActiveCfg = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x64.Build.0 = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x86.ActiveCfg = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|ARM64.Build.0 = Debug|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x64.ActiveCfg = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x64.Build.0 = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x86.ActiveCfg = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|ARM64.ActiveCfg = Release|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|ARM64.Build.0 = Release|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x64.ActiveCfg = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x64.Build.0 = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x86.ActiveCfg = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|ARM64.Build.0 = Debug|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x64.ActiveCfg = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x64.Build.0 = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x86.ActiveCfg = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|ARM64.ActiveCfg = Release|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|ARM64.Build.0 = Release|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x64.ActiveCfg = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x64.Build.0 = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x86.ActiveCfg = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|ARM64.Build.0 = Debug|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x64.ActiveCfg = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x64.Build.0 = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x86.ActiveCfg = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|ARM64.ActiveCfg = Release|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|ARM64.Build.0 = Release|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x64.ActiveCfg = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x64.Build.0 = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x86.ActiveCfg = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|ARM64.Build.0 = Debug|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x64.ActiveCfg = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x64.Build.0 = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x86.ActiveCfg = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|ARM64.ActiveCfg = Release|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|ARM64.Build.0 = Release|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x64.ActiveCfg = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x64.Build.0 = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x86.ActiveCfg = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|ARM64.ActiveCfg = Debug|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|ARM64.Build.0 = Debug|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x64.ActiveCfg = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x64.Build.0 = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x86.ActiveCfg = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|ARM64.ActiveCfg = Release|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|ARM64.Build.0 = Release|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x64.ActiveCfg = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x64.Build.0 = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x86.ActiveCfg = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|ARM64.Build.0 = Debug|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x64.ActiveCfg = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x64.Build.0 = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x86.ActiveCfg = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|ARM64.ActiveCfg = Release|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|ARM64.Build.0 = Release|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x64.ActiveCfg = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x64.Build.0 = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x86.ActiveCfg = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|ARM64.Build.0 = Debug|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x64.ActiveCfg = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x64.Build.0 = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x86.ActiveCfg = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|ARM64.ActiveCfg = Release|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|ARM64.Build.0 = Release|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x64.ActiveCfg = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x64.Build.0 = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x86.ActiveCfg = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|ARM64.Build.0 = Debug|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x64.ActiveCfg = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x64.Build.0 = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x86.ActiveCfg = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|ARM64.ActiveCfg = Release|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|ARM64.Build.0 = Release|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x64.ActiveCfg = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x64.Build.0 = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x86.ActiveCfg = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|ARM64.Build.0 = Debug|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x64.ActiveCfg = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x64.Build.0 = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x86.ActiveCfg = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|ARM64.ActiveCfg = Release|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|ARM64.Build.0 = Release|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x64.ActiveCfg = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x64.Build.0 = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x86.ActiveCfg = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|ARM64.Build.0 = Debug|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x64.ActiveCfg = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x64.Build.0 = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x86.ActiveCfg = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|ARM64.ActiveCfg = Release|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|ARM64.Build.0 = Release|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x64.ActiveCfg = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x64.Build.0 = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x86.ActiveCfg = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|ARM64.Build.0 = Debug|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x64.ActiveCfg = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x64.Build.0 = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x86.ActiveCfg = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|ARM64.ActiveCfg = Release|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|ARM64.Build.0 = Release|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x64.ActiveCfg = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x64.Build.0 = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x86.ActiveCfg = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|ARM64.Build.0 = Debug|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x64.ActiveCfg = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x64.Build.0 = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x86.ActiveCfg = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|ARM64.ActiveCfg = Release|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|ARM64.Build.0 = Release|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x64.ActiveCfg = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x64.Build.0 = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x86.ActiveCfg = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|ARM64.ActiveCfg = Debug|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|ARM64.Build.0 = Debug|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x64.ActiveCfg = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x64.Build.0 = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x86.ActiveCfg = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|ARM64.ActiveCfg = Release|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|ARM64.Build.0 = Release|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x64.ActiveCfg = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x64.Build.0 = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x86.ActiveCfg = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|ARM64.Build.0 = Debug|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x64.ActiveCfg = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x64.Build.0 = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x86.ActiveCfg = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|ARM64.ActiveCfg = Release|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|ARM64.Build.0 = Release|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x64.ActiveCfg = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x64.Build.0 = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x86.ActiveCfg = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|ARM64.Build.0 = Debug|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x64.ActiveCfg = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x64.Build.0 = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x86.ActiveCfg = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|ARM64.ActiveCfg = Release|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|ARM64.Build.0 = Release|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x64.ActiveCfg = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x64.Build.0 = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x86.ActiveCfg = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|ARM64.Build.0 = Debug|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x64.ActiveCfg = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x64.Build.0 = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x86.ActiveCfg = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|ARM64.ActiveCfg = Release|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|ARM64.Build.0 = Release|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x64.ActiveCfg = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x64.Build.0 = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x86.ActiveCfg = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|ARM64.Build.0 = Debug|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x64.ActiveCfg = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x64.Build.0 = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x86.ActiveCfg = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|ARM64.ActiveCfg = Release|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|ARM64.Build.0 = Release|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x64.ActiveCfg = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x64.Build.0 = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x86.ActiveCfg = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|ARM64.Build.0 = Debug|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x64.ActiveCfg = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x64.Build.0 = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x86.ActiveCfg = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|ARM64.ActiveCfg = Release|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|ARM64.Build.0 = Release|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x64.ActiveCfg = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x64.Build.0 = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x86.ActiveCfg = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|ARM64.ActiveCfg = Debug|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|ARM64.Build.0 = Debug|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x64.ActiveCfg = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x64.Build.0 = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x86.ActiveCfg = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|ARM64.ActiveCfg = Release|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|ARM64.Build.0 = Release|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x64.ActiveCfg = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x64.Build.0 = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x86.ActiveCfg = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|ARM64.Build.0 = Debug|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x64.ActiveCfg = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x64.Build.0 = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x86.ActiveCfg = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|ARM64.ActiveCfg = Release|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|ARM64.Build.0 = Release|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x64.ActiveCfg = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x64.Build.0 = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x86.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|ARM64.Build.0 = Debug|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.Build.0 = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x86.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|ARM64.ActiveCfg = Release|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|ARM64.Build.0 = Release|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.Build.0 = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x86.ActiveCfg = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|ARM64.Build.0 = Debug|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x64.ActiveCfg = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x64.Build.0 = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x86.ActiveCfg = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|ARM64.ActiveCfg = Release|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|ARM64.Build.0 = Release|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x64.ActiveCfg = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x64.Build.0 = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x86.ActiveCfg = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|ARM64.Build.0 = Debug|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x64.ActiveCfg = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x64.Build.0 = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x86.ActiveCfg = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|ARM64.ActiveCfg = Release|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|ARM64.Build.0 = Release|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x64.ActiveCfg = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x64.Build.0 = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x86.ActiveCfg = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|ARM64.Build.0 = Debug|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x64.ActiveCfg = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x64.Build.0 = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x86.ActiveCfg = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|ARM64.ActiveCfg = Release|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|ARM64.Build.0 = Release|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x64.ActiveCfg = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x64.Build.0 = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x86.ActiveCfg = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|ARM64.Build.0 = Debug|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x64.ActiveCfg = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x64.Build.0 = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x86.ActiveCfg = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|ARM64.ActiveCfg = Release|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|ARM64.Build.0 = Release|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x64.ActiveCfg = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x64.Build.0 = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x86.ActiveCfg = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|ARM64.Build.0 = Debug|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x64.ActiveCfg = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x64.Build.0 = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x86.ActiveCfg = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|ARM64.ActiveCfg = Release|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|ARM64.Build.0 = Release|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x64.ActiveCfg = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x64.Build.0 = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x86.ActiveCfg = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|ARM64.Build.0 = Debug|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x64.ActiveCfg = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x64.Build.0 = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x86.ActiveCfg = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|ARM64.ActiveCfg = Release|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|ARM64.Build.0 = Release|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x64.ActiveCfg = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x64.Build.0 = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x86.ActiveCfg = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|ARM64.Build.0 = Debug|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x64.ActiveCfg = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x64.Build.0 = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x86.ActiveCfg = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|ARM64.ActiveCfg = Release|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|ARM64.Build.0 = Release|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x64.ActiveCfg = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x64.Build.0 = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x86.ActiveCfg = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|ARM64.Build.0 = Debug|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x64.ActiveCfg = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x64.Build.0 = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x86.ActiveCfg = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|ARM64.ActiveCfg = Release|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|ARM64.Build.0 = Release|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x64.ActiveCfg = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x64.Build.0 = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x86.ActiveCfg = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|ARM64.Build.0 = Debug|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x64.ActiveCfg = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x64.Build.0 = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x86.ActiveCfg = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|ARM64.ActiveCfg = Release|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|ARM64.Build.0 = Release|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x64.ActiveCfg = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x64.Build.0 = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x86.ActiveCfg = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|ARM64.Build.0 = Debug|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x64.ActiveCfg = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x64.Build.0 = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x86.ActiveCfg = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|ARM64.ActiveCfg = Release|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|ARM64.Build.0 = Release|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x64.ActiveCfg = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x64.Build.0 = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x86.ActiveCfg = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|ARM64.Build.0 = Debug|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x64.ActiveCfg = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x64.Build.0 = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x86.ActiveCfg = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|ARM64.ActiveCfg = Release|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|ARM64.Build.0 = Release|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x64.ActiveCfg = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x64.Build.0 = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x86.ActiveCfg = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|ARM64.Build.0 = Debug|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x64.ActiveCfg = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x64.Build.0 = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x86.ActiveCfg = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|ARM64.ActiveCfg = Release|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|ARM64.Build.0 = Release|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x64.ActiveCfg = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x64.Build.0 = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x86.ActiveCfg = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|ARM64.ActiveCfg = Debug|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|ARM64.Build.0 = Debug|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x64.ActiveCfg = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x64.Build.0 = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x86.ActiveCfg = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|ARM64.ActiveCfg = Release|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|ARM64.Build.0 = Release|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x64.ActiveCfg = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x64.Build.0 = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x86.ActiveCfg = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|ARM64.Build.0 = Debug|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x64.ActiveCfg = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x64.Build.0 = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x86.ActiveCfg = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|ARM64.ActiveCfg = Release|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|ARM64.Build.0 = Release|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x64.ActiveCfg = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x64.Build.0 = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x86.ActiveCfg = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|ARM64.Build.0 = Debug|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x64.ActiveCfg = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x64.Build.0 = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x86.ActiveCfg = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|ARM64.ActiveCfg = Release|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|ARM64.Build.0 = Release|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x64.ActiveCfg = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x64.Build.0 = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x86.ActiveCfg = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|ARM64.Build.0 = Debug|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x64.ActiveCfg = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x64.Build.0 = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x86.ActiveCfg = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|ARM64.ActiveCfg = Release|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|ARM64.Build.0 = Release|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x64.ActiveCfg = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x64.Build.0 = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x86.ActiveCfg = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|ARM64.Build.0 = Debug|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x64.ActiveCfg = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x64.Build.0 = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x86.ActiveCfg = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|ARM64.ActiveCfg = Release|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|ARM64.Build.0 = Release|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x64.ActiveCfg = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x64.Build.0 = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x86.ActiveCfg = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|ARM64.Build.0 = Debug|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x64.ActiveCfg = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x64.Build.0 = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x86.ActiveCfg = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|ARM64.ActiveCfg = Release|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|ARM64.Build.0 = Release|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x64.ActiveCfg = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x64.Build.0 = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x86.ActiveCfg = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|ARM64.Build.0 = Debug|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x64.ActiveCfg = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x64.Build.0 = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x86.ActiveCfg = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|ARM64.ActiveCfg = Release|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|ARM64.Build.0 = Release|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x64.ActiveCfg = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x64.Build.0 = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x86.ActiveCfg = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|ARM64.Build.0 = Debug|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x64.ActiveCfg = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x64.Build.0 = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x86.ActiveCfg = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|ARM64.ActiveCfg = Release|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|ARM64.Build.0 = Release|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x64.ActiveCfg = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x64.Build.0 = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x86.ActiveCfg = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|ARM64.ActiveCfg = Debug|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|ARM64.Build.0 = Debug|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x64.ActiveCfg = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x64.Build.0 = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x86.ActiveCfg = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|ARM64.ActiveCfg = Release|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|ARM64.Build.0 = Release|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x64.ActiveCfg = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x64.Build.0 = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x86.ActiveCfg = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|ARM64.Build.0 = Debug|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x64.ActiveCfg = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x64.Build.0 = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x86.ActiveCfg = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|ARM64.ActiveCfg = Release|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|ARM64.Build.0 = Release|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x64.ActiveCfg = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x64.Build.0 = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x86.ActiveCfg = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|ARM64.ActiveCfg = Debug|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|ARM64.Build.0 = Debug|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x64.ActiveCfg = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x64.Build.0 = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x86.ActiveCfg = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|ARM64.ActiveCfg = Release|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|ARM64.Build.0 = Release|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x64.ActiveCfg = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x64.Build.0 = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x86.ActiveCfg = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|ARM64.Build.0 = Debug|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.ActiveCfg = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.Build.0 = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x86.ActiveCfg = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|ARM64.ActiveCfg = Release|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|ARM64.Build.0 = Release|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.ActiveCfg = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.Build.0 = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x86.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|ARM64.Build.0 = Debug|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.ActiveCfg = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.Build.0 = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x86.ActiveCfg = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x86.Build.0 = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|ARM64.ActiveCfg = Release|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|ARM64.Build.0 = Release|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.Build.0 = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x86.ActiveCfg = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x86.Build.0 = Release|Win32 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|ARM64.Build.0 = Debug|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x64.ActiveCfg = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x64.Build.0 = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x86.ActiveCfg = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|ARM64.ActiveCfg = Release|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|ARM64.Build.0 = Release|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x64.ActiveCfg = Release|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x64.Build.0 = Release|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x86.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|ARM64.Build.0 = Debug|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.ActiveCfg = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.Build.0 = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x86.ActiveCfg = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x86.Build.0 = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|ARM64.ActiveCfg = Release|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|ARM64.Build.0 = Release|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.Build.0 = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x86.ActiveCfg = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x86.Build.0 = Release|Win32 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|ARM64.Build.0 = Debug|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x64.ActiveCfg = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x64.Build.0 = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x86.ActiveCfg = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|ARM64.ActiveCfg = Release|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|ARM64.Build.0 = Release|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x64.ActiveCfg = Release|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x64.Build.0 = Release|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x86.ActiveCfg = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|ARM64.Build.0 = Debug|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x64.ActiveCfg = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x64.Build.0 = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x86.ActiveCfg = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|ARM64.ActiveCfg = Release|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|ARM64.Build.0 = Release|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x64.ActiveCfg = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x64.Build.0 = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x86.ActiveCfg = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|ARM64.Build.0 = Debug|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x64.ActiveCfg = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x64.Build.0 = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x86.ActiveCfg = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|ARM64.ActiveCfg = Release|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|ARM64.Build.0 = Release|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x64.ActiveCfg = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x64.Build.0 = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x86.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|ARM64.Build.0 = Debug|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x64.ActiveCfg = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x64.Build.0 = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x86.ActiveCfg = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|ARM64.ActiveCfg = Release|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|ARM64.Build.0 = Release|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x64.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x64.Build.0 = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x86.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x86.Build.0 = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|ARM64.Build.0 = Debug|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x64.ActiveCfg = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x64.Build.0 = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x86.ActiveCfg = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|ARM64.ActiveCfg = Release|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|ARM64.Build.0 = Release|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x64.ActiveCfg = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x64.Build.0 = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x86.ActiveCfg = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|ARM64.ActiveCfg = Debug|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|ARM64.Build.0 = Debug|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x64.ActiveCfg = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x64.Build.0 = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x86.ActiveCfg = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|ARM64.ActiveCfg = Release|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|ARM64.Build.0 = Release|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x64.ActiveCfg = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x64.Build.0 = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x86.ActiveCfg = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|ARM64.Build.0 = Debug|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x64.ActiveCfg = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x64.Build.0 = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x86.ActiveCfg = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|ARM64.ActiveCfg = Release|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|ARM64.Build.0 = Release|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x64.ActiveCfg = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x64.Build.0 = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x86.ActiveCfg = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|ARM64.Build.0 = Debug|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x64.ActiveCfg = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x64.Build.0 = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x86.ActiveCfg = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|ARM64.ActiveCfg = Release|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|ARM64.Build.0 = Release|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x64.ActiveCfg = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x64.Build.0 = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x86.ActiveCfg = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|ARM64.ActiveCfg = Debug|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|ARM64.Build.0 = Debug|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x64.ActiveCfg = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x64.Build.0 = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x86.ActiveCfg = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|ARM64.ActiveCfg = Release|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|ARM64.Build.0 = Release|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x64.ActiveCfg = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x64.Build.0 = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x86.ActiveCfg = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|ARM64.Build.0 = Debug|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x64.ActiveCfg = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x64.Build.0 = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x86.ActiveCfg = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|ARM64.ActiveCfg = Release|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|ARM64.Build.0 = Release|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x64.ActiveCfg = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x64.Build.0 = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x86.ActiveCfg = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|ARM64.Build.0 = Debug|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x64.ActiveCfg = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x64.Build.0 = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x86.ActiveCfg = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|ARM64.ActiveCfg = Release|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|ARM64.Build.0 = Release|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x64.ActiveCfg = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x64.Build.0 = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x86.ActiveCfg = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|ARM64.Build.0 = Debug|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x64.ActiveCfg = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x64.Build.0 = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x86.ActiveCfg = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|ARM64.ActiveCfg = Release|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|ARM64.Build.0 = Release|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x64.ActiveCfg = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x64.Build.0 = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x86.ActiveCfg = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|ARM64.Build.0 = Debug|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x64.ActiveCfg = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x64.Build.0 = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x86.ActiveCfg = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|ARM64.ActiveCfg = Release|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|ARM64.Build.0 = Release|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x64.ActiveCfg = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x64.Build.0 = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x86.ActiveCfg = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|ARM64.Build.0 = Debug|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x64.ActiveCfg = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x64.Build.0 = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x86.ActiveCfg = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|ARM64.ActiveCfg = Release|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|ARM64.Build.0 = Release|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x64.ActiveCfg = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x64.Build.0 = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x86.ActiveCfg = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|ARM64.Build.0 = Debug|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x64.ActiveCfg = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x64.Build.0 = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x86.ActiveCfg = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|ARM64.ActiveCfg = Release|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|ARM64.Build.0 = Release|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x64.ActiveCfg = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x64.Build.0 = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x86.ActiveCfg = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|ARM64.Build.0 = Debug|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x64.ActiveCfg = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x64.Build.0 = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x86.ActiveCfg = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|ARM64.ActiveCfg = Release|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|ARM64.Build.0 = Release|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x64.ActiveCfg = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x64.Build.0 = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x86.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|ARM64.Build.0 = Debug|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x64.ActiveCfg = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x64.Build.0 = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x86.ActiveCfg = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x86.Build.0 = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|ARM64.ActiveCfg = Release|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|ARM64.Build.0 = Release|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x64.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x64.Build.0 = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x86.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x86.Build.0 = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|ARM64.Build.0 = Debug|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x64.ActiveCfg = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x64.Build.0 = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x86.ActiveCfg = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|ARM64.ActiveCfg = Release|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|ARM64.Build.0 = Release|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x64.ActiveCfg = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x64.Build.0 = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x86.ActiveCfg = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x86.Build.0 = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|ARM64.Build.0 = Debug|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x64.ActiveCfg = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x64.Build.0 = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x86.ActiveCfg = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x86.Build.0 = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|ARM64.ActiveCfg = Release|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|ARM64.Build.0 = Release|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x64.ActiveCfg = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x64.Build.0 = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x86.ActiveCfg = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x86.Build.0 = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|ARM64.Build.0 = Debug|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x64.ActiveCfg = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x64.Build.0 = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x86.ActiveCfg = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x86.Build.0 = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|ARM64.ActiveCfg = Release|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|ARM64.Build.0 = Release|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x64.ActiveCfg = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x64.Build.0 = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x86.ActiveCfg = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x86.Build.0 = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|ARM64.Build.0 = Debug|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x64.ActiveCfg = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x64.Build.0 = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x86.ActiveCfg = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x86.Build.0 = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|ARM64.ActiveCfg = Release|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|ARM64.Build.0 = Release|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x64.ActiveCfg = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x64.Build.0 = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x86.ActiveCfg = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x86.Build.0 = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|ARM64.ActiveCfg = Debug|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Debug|ARM64.Build.0 = Debug|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x64.ActiveCfg = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x64.Build.0 = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x86.ActiveCfg = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x86.Build.0 = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|ARM64.ActiveCfg = Release|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Release|ARM64.Build.0 = Release|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Release|x64.ActiveCfg = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x64.Build.0 = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x86.ActiveCfg = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x86.Build.0 = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|ARM64.Build.0 = Debug|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x64.ActiveCfg = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x64.Build.0 = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x86.ActiveCfg = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x86.Build.0 = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|ARM64.ActiveCfg = Release|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|ARM64.Build.0 = Release|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x64.ActiveCfg = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x64.Build.0 = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x86.ActiveCfg = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x86.Build.0 = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|ARM64.Build.0 = Debug|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x64.ActiveCfg = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x64.Build.0 = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x86.ActiveCfg = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x86.Build.0 = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|ARM64.ActiveCfg = Release|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|ARM64.Build.0 = Release|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x64.ActiveCfg = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x64.Build.0 = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x86.ActiveCfg = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x86.Build.0 = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|ARM64.Build.0 = Debug|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x64.ActiveCfg = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x64.Build.0 = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x86.ActiveCfg = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x86.Build.0 = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|ARM64.ActiveCfg = Release|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|ARM64.Build.0 = Release|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x64.ActiveCfg = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x64.Build.0 = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x86.ActiveCfg = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x86.Build.0 = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|ARM64.ActiveCfg = Debug|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|ARM64.Build.0 = Debug|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x64.ActiveCfg = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x64.Build.0 = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x86.ActiveCfg = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x86.Build.0 = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|ARM64.ActiveCfg = Release|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|ARM64.Build.0 = Release|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x64.ActiveCfg = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x64.Build.0 = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x86.ActiveCfg = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x86.Build.0 = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|ARM64.Build.0 = Debug|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x64.ActiveCfg = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x64.Build.0 = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x86.ActiveCfg = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x86.Build.0 = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|ARM64.ActiveCfg = Release|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|ARM64.Build.0 = Release|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x64.ActiveCfg = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x64.Build.0 = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x86.ActiveCfg = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x86.Build.0 = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|ARM64.Build.0 = Debug|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x64.ActiveCfg = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x64.Build.0 = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x86.ActiveCfg = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x86.Build.0 = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|ARM64.ActiveCfg = Release|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|ARM64.Build.0 = Release|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x64.ActiveCfg = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x64.Build.0 = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x86.ActiveCfg = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x86.Build.0 = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|ARM64.ActiveCfg = Debug|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|ARM64.Build.0 = Debug|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x64.ActiveCfg = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x64.Build.0 = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x86.ActiveCfg = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x86.Build.0 = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|ARM64.ActiveCfg = Release|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|ARM64.Build.0 = Release|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x64.ActiveCfg = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x64.Build.0 = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x86.ActiveCfg = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x86.Build.0 = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|ARM64.ActiveCfg = Debug|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|ARM64.Build.0 = Debug|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x64.ActiveCfg = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x64.Build.0 = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x86.ActiveCfg = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x86.Build.0 = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|ARM64.ActiveCfg = Release|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|ARM64.Build.0 = Release|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x64.ActiveCfg = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x64.Build.0 = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x86.ActiveCfg = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x86.Build.0 = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|ARM64.Build.0 = Debug|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x64.ActiveCfg = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x64.Build.0 = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x86.ActiveCfg = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x86.Build.0 = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|ARM64.ActiveCfg = Release|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|ARM64.Build.0 = Release|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x64.ActiveCfg = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x64.Build.0 = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x86.ActiveCfg = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x86.Build.0 = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|ARM64.Build.0 = Debug|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x64.ActiveCfg = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x64.Build.0 = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x86.ActiveCfg = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x86.Build.0 = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|ARM64.ActiveCfg = Release|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|ARM64.Build.0 = Release|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x64.ActiveCfg = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x64.Build.0 = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x86.ActiveCfg = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x86.Build.0 = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|ARM64.Build.0 = Debug|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x64.ActiveCfg = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x64.Build.0 = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x86.ActiveCfg = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x86.Build.0 = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|ARM64.ActiveCfg = Release|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|ARM64.Build.0 = Release|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x64.ActiveCfg = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x64.Build.0 = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x86.ActiveCfg = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x86.Build.0 = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|ARM64.Build.0 = Debug|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x64.ActiveCfg = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x64.Build.0 = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x86.ActiveCfg = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x86.Build.0 = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|ARM64.ActiveCfg = Release|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|ARM64.Build.0 = Release|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x64.ActiveCfg = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x64.Build.0 = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x86.ActiveCfg = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x86.Build.0 = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|ARM64.Build.0 = Debug|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x64.ActiveCfg = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x64.Build.0 = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x86.ActiveCfg = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x86.Build.0 = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|ARM64.ActiveCfg = Release|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|ARM64.Build.0 = Release|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x64.ActiveCfg = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x64.Build.0 = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x86.ActiveCfg = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x86.Build.0 = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|ARM64.Build.0 = Debug|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x64.ActiveCfg = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x64.Build.0 = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x86.ActiveCfg = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x86.Build.0 = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|ARM64.ActiveCfg = Release|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|ARM64.Build.0 = Release|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x64.ActiveCfg = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x64.Build.0 = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x86.ActiveCfg = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x86.Build.0 = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|ARM64.ActiveCfg = Debug|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|ARM64.Build.0 = Debug|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x64.ActiveCfg = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x64.Build.0 = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x86.ActiveCfg = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x86.Build.0 = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|ARM64.ActiveCfg = Release|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|ARM64.Build.0 = Release|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x64.ActiveCfg = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x64.Build.0 = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x86.ActiveCfg = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x86.Build.0 = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|ARM64.Build.0 = Debug|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x64.ActiveCfg = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x64.Build.0 = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x86.ActiveCfg = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x86.Build.0 = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|ARM64.ActiveCfg = Release|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|ARM64.Build.0 = Release|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x64.ActiveCfg = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x64.Build.0 = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x86.ActiveCfg = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x86.Build.0 = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|ARM64.Build.0 = Debug|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x64.ActiveCfg = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x64.Build.0 = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x86.ActiveCfg = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x86.Build.0 = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|ARM64.ActiveCfg = Release|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|ARM64.Build.0 = Release|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x64.ActiveCfg = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x64.Build.0 = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x86.ActiveCfg = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x86.Build.0 = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|ARM64.Build.0 = Debug|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x64.ActiveCfg = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x64.Build.0 = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x86.ActiveCfg = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|ARM64.ActiveCfg = Release|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|ARM64.Build.0 = Release|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x64.ActiveCfg = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x64.Build.0 = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x86.ActiveCfg = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|ARM64.Build.0 = Debug|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x64.ActiveCfg = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x64.Build.0 = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x86.ActiveCfg = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|ARM64.ActiveCfg = Release|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|ARM64.Build.0 = Release|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x64.ActiveCfg = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x64.Build.0 = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x86.ActiveCfg = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|ARM64.Build.0 = Debug|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x64.ActiveCfg = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x64.Build.0 = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x86.ActiveCfg = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|ARM64.ActiveCfg = Release|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|ARM64.Build.0 = Release|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x64.ActiveCfg = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x64.Build.0 = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x86.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|ARM64.Build.0 = Debug|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x64.ActiveCfg = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x64.Build.0 = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x86.ActiveCfg = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x86.Build.0 = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|ARM64.ActiveCfg = Release|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|ARM64.Build.0 = Release|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x64.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x64.Build.0 = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x86.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x86.Build.0 = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|ARM64.ActiveCfg = Debug|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|ARM64.Build.0 = Debug|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x64.ActiveCfg = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x64.Build.0 = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x86.ActiveCfg = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x86.Build.0 = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|ARM64.ActiveCfg = Release|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|ARM64.Build.0 = Release|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x64.ActiveCfg = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x64.Build.0 = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x86.ActiveCfg = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x86.Build.0 = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|ARM64.Build.0 = Debug|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x64.ActiveCfg = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x64.Build.0 = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x86.ActiveCfg = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x86.Build.0 = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|ARM64.ActiveCfg = Release|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|ARM64.Build.0 = Release|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x64.ActiveCfg = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x64.Build.0 = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x86.ActiveCfg = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x86.Build.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.Build.0 = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.Deploy.0 = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.ActiveCfg = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.Build.0 = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.Deploy.0 = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.ActiveCfg = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.Build.0 = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.Deploy.0 = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.ActiveCfg = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.Build.0 = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.Deploy.0 = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.ActiveCfg = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.Build.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.Deploy.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.ActiveCfg = Release|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.Build.0 = Release|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.Deploy.0 = Release|x86 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|ARM64.Build.0 = Debug|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x64.ActiveCfg = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x64.Build.0 = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x86.ActiveCfg = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x86.Build.0 = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|ARM64.ActiveCfg = Release|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|ARM64.Build.0 = Release|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x64.ActiveCfg = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x64.Build.0 = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x86.ActiveCfg = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x86.Build.0 = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|ARM64.Build.0 = Debug|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x64.ActiveCfg = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x64.Build.0 = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x86.ActiveCfg = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x86.Build.0 = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|ARM64.ActiveCfg = Release|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|ARM64.Build.0 = Release|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x64.ActiveCfg = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x64.Build.0 = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x86.ActiveCfg = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x86.Build.0 = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|ARM64.ActiveCfg = Debug|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|ARM64.Build.0 = Debug|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x64.ActiveCfg = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x64.Build.0 = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x86.ActiveCfg = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x86.Build.0 = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|ARM64.ActiveCfg = Release|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|ARM64.Build.0 = Release|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x64.ActiveCfg = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x64.Build.0 = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x86.ActiveCfg = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x86.Build.0 = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|ARM64.Build.0 = Debug|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x64.ActiveCfg = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x64.Build.0 = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x86.ActiveCfg = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x86.Build.0 = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|ARM64.ActiveCfg = Release|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|ARM64.Build.0 = Release|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x64.ActiveCfg = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x64.Build.0 = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x86.ActiveCfg = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x86.Build.0 = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|ARM64.Build.0 = Debug|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x64.ActiveCfg = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x64.Build.0 = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x86.ActiveCfg = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x86.Build.0 = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|ARM64.ActiveCfg = Release|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|ARM64.Build.0 = Release|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x64.ActiveCfg = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x64.Build.0 = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x86.ActiveCfg = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x86.Build.0 = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|ARM64.Build.0 = Debug|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x64.ActiveCfg = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x64.Build.0 = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x86.ActiveCfg = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x86.Build.0 = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|ARM64.ActiveCfg = Release|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|ARM64.Build.0 = Release|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x64.ActiveCfg = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x64.Build.0 = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x86.ActiveCfg = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x86.Build.0 = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|ARM64.ActiveCfg = Debug|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|ARM64.Build.0 = Debug|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x64.ActiveCfg = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x64.Build.0 = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x86.ActiveCfg = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x86.Build.0 = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|ARM64.ActiveCfg = Release|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|ARM64.Build.0 = Release|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x64.ActiveCfg = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x64.Build.0 = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x86.ActiveCfg = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x86.Build.0 = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|ARM64.ActiveCfg = Debug|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|ARM64.Build.0 = Debug|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x64.ActiveCfg = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x64.Build.0 = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x86.ActiveCfg = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x86.Build.0 = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|ARM64.ActiveCfg = Release|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|ARM64.Build.0 = Release|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x64.ActiveCfg = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x64.Build.0 = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x86.ActiveCfg = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x86.Build.0 = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|ARM64.Build.0 = Debug|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x64.ActiveCfg = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x64.Build.0 = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x86.ActiveCfg = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x86.Build.0 = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|ARM64.ActiveCfg = Release|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|ARM64.Build.0 = Release|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x64.ActiveCfg = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x64.Build.0 = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x86.ActiveCfg = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x86.Build.0 = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|ARM64.Build.0 = Debug|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x64.ActiveCfg = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x64.Build.0 = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x86.ActiveCfg = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x86.Build.0 = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|ARM64.ActiveCfg = Release|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|ARM64.Build.0 = Release|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x64.ActiveCfg = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x64.Build.0 = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x86.ActiveCfg = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x86.Build.0 = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|ARM64.Build.0 = Debug|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x64.ActiveCfg = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x64.Build.0 = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x86.ActiveCfg = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x86.Build.0 = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|ARM64.ActiveCfg = Release|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|ARM64.Build.0 = Release|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x64.ActiveCfg = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x64.Build.0 = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x86.ActiveCfg = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x86.Build.0 = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|ARM64.Build.0 = Debug|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x64.ActiveCfg = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x64.Build.0 = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x86.ActiveCfg = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x86.Build.0 = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|ARM64.ActiveCfg = Release|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|ARM64.Build.0 = Release|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x64.ActiveCfg = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x64.Build.0 = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x86.ActiveCfg = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x86.Build.0 = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|ARM64.ActiveCfg = Debug|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|ARM64.Build.0 = Debug|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x64.ActiveCfg = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x64.Build.0 = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x86.ActiveCfg = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x86.Build.0 = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|ARM64.ActiveCfg = Release|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|ARM64.Build.0 = Release|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x64.ActiveCfg = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x64.Build.0 = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x86.ActiveCfg = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x86.Build.0 = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|ARM64.Build.0 = Debug|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x64.ActiveCfg = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x64.Build.0 = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x86.ActiveCfg = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x86.Build.0 = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|ARM64.ActiveCfg = Release|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|ARM64.Build.0 = Release|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x64.ActiveCfg = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x64.Build.0 = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x86.ActiveCfg = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x86.Build.0 = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|ARM64.Build.0 = Debug|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x64.ActiveCfg = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x64.Build.0 = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x86.ActiveCfg = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x86.Build.0 = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|ARM64.ActiveCfg = Release|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|ARM64.Build.0 = Release|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x64.ActiveCfg = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x64.Build.0 = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x86.ActiveCfg = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x86.Build.0 = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|ARM64.Build.0 = Debug|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x64.ActiveCfg = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x64.Build.0 = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x86.ActiveCfg = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x86.Build.0 = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|ARM64.ActiveCfg = Release|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|ARM64.Build.0 = Release|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x64.ActiveCfg = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x64.Build.0 = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.ActiveCfg = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.Build.0 = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.Build.0 = Debug|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x64.ActiveCfg = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x64.Build.0 = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x86.ActiveCfg = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x86.Build.0 = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|ARM64.ActiveCfg = Release|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|ARM64.Build.0 = Release|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x64.ActiveCfg = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x64.Build.0 = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x86.ActiveCfg = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x86.Build.0 = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|ARM64.Build.0 = Debug|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x64.ActiveCfg = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x64.Build.0 = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x86.ActiveCfg = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x86.Build.0 = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|ARM64.ActiveCfg = Release|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|ARM64.Build.0 = Release|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x64.ActiveCfg = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x64.Build.0 = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x86.ActiveCfg = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x86.Build.0 = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|ARM64.Build.0 = Debug|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x64.ActiveCfg = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x64.Build.0 = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x86.ActiveCfg = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x86.Build.0 = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|ARM64.ActiveCfg = Release|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|ARM64.Build.0 = Release|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x64.ActiveCfg = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x64.Build.0 = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x86.ActiveCfg = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x86.Build.0 = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|ARM64.Build.0 = Debug|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x64.ActiveCfg = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x64.Build.0 = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x86.ActiveCfg = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x86.Build.0 = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|ARM64.ActiveCfg = Release|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|ARM64.Build.0 = Release|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x64.ActiveCfg = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x64.Build.0 = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x86.ActiveCfg = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x86.Build.0 = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|ARM64.Build.0 = Debug|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x64.ActiveCfg = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x64.Build.0 = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x86.ActiveCfg = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x86.Build.0 = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|ARM64.ActiveCfg = Release|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|ARM64.Build.0 = Release|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x64.ActiveCfg = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x64.Build.0 = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x86.ActiveCfg = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x86.Build.0 = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|ARM64.ActiveCfg = Debug|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|ARM64.Build.0 = Debug|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x64.ActiveCfg = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x64.Build.0 = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x86.ActiveCfg = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x86.Build.0 = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|ARM64.ActiveCfg = Release|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|ARM64.Build.0 = Release|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x64.ActiveCfg = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x64.Build.0 = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x86.ActiveCfg = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x86.Build.0 = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|ARM64.Build.0 = Debug|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x64.ActiveCfg = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x64.Build.0 = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x86.ActiveCfg = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x86.Build.0 = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|ARM64.ActiveCfg = Release|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|ARM64.Build.0 = Release|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x64.ActiveCfg = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x64.Build.0 = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x86.ActiveCfg = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x86.Build.0 = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|ARM64.Build.0 = Debug|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x64.ActiveCfg = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x64.Build.0 = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x86.ActiveCfg = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x86.Build.0 = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|ARM64.ActiveCfg = Release|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|ARM64.Build.0 = Release|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x64.ActiveCfg = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x64.Build.0 = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x86.ActiveCfg = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x86.Build.0 = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|ARM64.Build.0 = Debug|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x64.ActiveCfg = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x64.Build.0 = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x86.ActiveCfg = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x86.Build.0 = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|ARM64.ActiveCfg = Release|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|ARM64.Build.0 = Release|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x64.ActiveCfg = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x64.Build.0 = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x86.ActiveCfg = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x86.Build.0 = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|ARM64.Build.0 = Debug|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x64.ActiveCfg = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x64.Build.0 = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x86.ActiveCfg = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x86.Build.0 = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|ARM64.ActiveCfg = Release|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|ARM64.Build.0 = Release|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x64.ActiveCfg = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x64.Build.0 = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x86.ActiveCfg = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x86.Build.0 = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|ARM64.Build.0 = Debug|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x64.ActiveCfg = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x64.Build.0 = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x86.ActiveCfg = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x86.Build.0 = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|ARM64.ActiveCfg = Release|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|ARM64.Build.0 = Release|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x64.ActiveCfg = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x64.Build.0 = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x86.ActiveCfg = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x86.Build.0 = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|ARM64.Build.0 = Debug|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x64.ActiveCfg = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x64.Build.0 = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x86.ActiveCfg = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x86.Build.0 = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|ARM64.ActiveCfg = Release|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|ARM64.Build.0 = Release|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x64.ActiveCfg = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x64.Build.0 = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x86.ActiveCfg = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x86.Build.0 = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|ARM64.Build.0 = Debug|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x64.ActiveCfg = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x64.Build.0 = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x86.ActiveCfg = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x86.Build.0 = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|ARM64.ActiveCfg = Release|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|ARM64.Build.0 = Release|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x64.ActiveCfg = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x64.Build.0 = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x86.ActiveCfg = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x86.Build.0 = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|ARM64.Build.0 = Debug|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x64.ActiveCfg = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x64.Build.0 = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x86.ActiveCfg = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x86.Build.0 = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|ARM64.ActiveCfg = Release|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|ARM64.Build.0 = Release|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x64.ActiveCfg = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x64.Build.0 = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x86.ActiveCfg = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x86.Build.0 = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|ARM64.Build.0 = Debug|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x64.ActiveCfg = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x64.Build.0 = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x86.ActiveCfg = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x86.Build.0 = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|ARM64.ActiveCfg = Release|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|ARM64.Build.0 = Release|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x64.ActiveCfg = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x64.Build.0 = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x86.ActiveCfg = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x86.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {3BB8493E-D18E-4485-A320-CB40F90F55AE} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {1A066C63-64B3-45F8-92FE-664E1CCE8077} = {1AFB6476-670D-4E80-A464-657E01DFF482} {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {51920F1F-C28C-4ADF-8660-4238766796C2} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {2151F984-E006-4A9F-92EF-C6DDE3DC8413} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {6C7F47CC-2151-44A3-A546-41C70025132C} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} = {6C7F47CC-2151-44A3-A546-41C70025132C} {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} = {6C7F47CC-2151-44A3-A546-41C70025132C} {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8} = {6C7F47CC-2151-44A3-A546-41C70025132C} {17DA04DF-E393-4397-9CF0-84DABE11032E} = {1AFB6476-670D-4E80-A464-657E01DFF482} {38BDB927-829B-4C65-9CD9-93FB05D66D65} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {FF742965-9A80-41A5-B042-D6C7D3A21708} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {4AFC9975-2456-4C70-94A4-84073C1CED93} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {59BD9891-3837-438A-958D-ADC7F91F6F7E} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4D971245-7A70-41D5-BAA0-DDB5684CAF51} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {74F1B9ED-F59C-4FE7-B473-7B453E30837E} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {F8B870EB-D5F5-45BA-9CF7-A5C459818820} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {E364F67B-BB12-4E91-B639-355866EBCD8B} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {2F305555-C296-497E-AC20-5FA1B237996A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {AF2349B8-E5B6-4004-9502-687C1C7730B1} = {2F305555-C296-497E-AC20-5FA1B237996A} {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} = {2F305555-C296-497E-AC20-5FA1B237996A} {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A} = {2F305555-C296-497E-AC20-5FA1B237996A} {DA425894-6E13-404F-8DCB-78584EC0557A} = {2F305555-C296-497E-AC20-5FA1B237996A} {060D75DA-2D1C-48E6-A4A1-6F0718B64661} = {2F305555-C296-497E-AC20-5FA1B237996A} {748417CA-F17E-487F-9411-CAFB6D3F4877} = {2F305555-C296-497E-AC20-5FA1B237996A} {217DF501-135C-4E38-BFC8-99D4821032EA} = {2F305555-C296-497E-AC20-5FA1B237996A} {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {F055103B-F80B-4D0C-BF48-057C55620033} = {5A7818A8-109C-4E1C-850D-1A654E234B0E} {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {08C8C05F-0362-41BC-818C-724572DF8B06} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {5D00D290-4016-4CFE-9E41-1E7C724509BA} = {1AFB6476-670D-4E80-A464-657E01DFF482} {4AED67B6-55FD-486F-B917-E543DEE2CB3C} = {1AFB6476-670D-4E80-A464-657E01DFF482} {42851751-CBC8-45A6-97F5-7A0753F7B4D1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E} = {2F305555-C296-497E-AC20-5FA1B237996A} {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD} = {2F305555-C296-497E-AC20-5FA1B237996A} {655C9AF2-18D3-4DA6-80E4-85504A7722BA} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {BA58206B-1493-4C75-BFEA-A85768A1E156} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {1D78B84B-CA39-406C-98F4-71F7EC266CC0} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {03276A39-D4E9-417C-8FFD-200B0EE5E871} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {B81FB7B6-D30E-428F-908A-41422EFC1172} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0F85E674-34AE-443D-954C-8321EB8B93B1} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {632BBE62-5421-49EA-835A-7FFA4F499BD6} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4FA206A5-F69F-4193-BF8F-F6EEB496734C} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} = {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {DA5A6FE9-0040-40CC-83CC-764AE5306590} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0351ADA4-0C32-4652-9BA0-41F7B602372B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} = {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} {6955446D-23F7-4023-9BB3-8657F904AF99} = {1AFB6476-670D-4E80-A464-657E01DFF482} {58736667-1027-4AD7-BFDF-7A3A6474103A} = {5A7818A8-109C-4E1C-850D-1A654E234B0E} {D92131D6-7610-4D60-A7DB-1C169783F83B} = {1AFB6476-670D-4E80-A464-657E01DFF482} {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {0B593A6C-4143-4337-860E-DB5710FB87DB} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {1AFB6476-670D-4E80-A464-657E01DFF482} {5A7818A8-109C-4E1C-850D-1A654E234B0E} = {1AFB6476-670D-4E80-A464-657E01DFF482} {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} = {1AFB6476-670D-4E80-A464-657E01DFF482} {7319089E-46D6-4400-BC65-E39BDF1416EE} = {1AFB6476-670D-4E80-A464-657E01DFF482} {CABA8DFB-823B-4BF2-93AC-3F31984150D9} = {1AFB6476-670D-4E80-A464-657E01DFF482} {98537082-0FDB-40DE-ABD8-0DC5A4269BAB} = {1AFB6476-670D-4E80-A464-657E01DFF482} {B39DC643-4663-475E-B329-03F0C9918D48} = {1AFB6476-670D-4E80-A464-657E01DFF482} {8F62026A-294B-41C6-8839-87463613F216} = {1AFB6476-670D-4E80-A464-657E01DFF482} {C3A17DCA-217B-462C-BB0C-BE086AF80081} = {1AFB6476-670D-4E80-A464-657E01DFF482} {69E1EE8D-143A-4060-9129-4658ACF14AAF} = {2F305555-C296-497E-AC20-5FA1B237996A} {ECC20689-002A-4354-95A6-B58DF089C6FF} = {2F305555-C296-497E-AC20-5FA1B237996A} {4BABF3FE-3451-42FD-873F-3C332E18DCEF} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0648DF05-5DDA-4BE1-B5F2-584926EBDB65} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {E496B7FC-1E99-4BAB-849B-0E8367040B02} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {7F4B3A60-BC27-45A7-8000-68B0B6EA7466} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {8DF78B53-200E-451F-9328-01EB907193AE} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {23D2070D-E4AD-4ADD-85A7-083D9C76AD49} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {62173D9A-6724-4C00-A1C8-FB646480A9EC} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {127F38E0-40AA-4594-B955-5616BF206882} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} = {127F38E0-40AA-4594-B955-5616BF206882} {D940E07F-532C-4FF3-883F-790DA014F19A} = {127F38E0-40AA-4594-B955-5616BF206882} {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {3E424AD2-19E5-4AE6-B833-F53963EB5FC1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {106CBECA-0701-4FC3-838C-9DF816A19AE2} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2D604C07-51FC-46BB-9EB7-75AECC7F5E81} = {106CBECA-0701-4FC3-838C-9DF816A19AE2} {2EDB3EB4-FA92-4BFF-B2D8-566584837231} = {106CBECA-0701-4FC3-838C-9DF816A19AE2} {48804216-2A0E-4168-A6D8-9CD068D14227} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {FF1D7936-842A-4BBB-8BEA-E9FE796DE700} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {AC2857B4-103D-4D6D-9740-926EBF785042} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {11491FD8-F921-48BF-880C-7FEA185B80A1} = {2F305555-C296-497E-AC20-5FA1B237996A} {F40C3397-1834-4530-B2D9-8F8B8456BCDF} = {2F305555-C296-497E-AC20-5FA1B237996A} {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4ED320BC-BA04-4D42-8D15-CBE62151F08B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {322566EF-20DC-43A6-B9F8-616AF942579A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {E94FD11C-0591-456F-899F-EFC0CA548336} = {322566EF-20DC-43A6-B9F8-616AF942579A} {782A61BE-9D85-4081-B35C-1CCC9DCC1E88} = {322566EF-20DC-43A6-B9F8-616AF942579A} {809AA252-E17A-4FA2-B0A1-0450976B763F} = {2F305555-C296-497E-AC20-5FA1B237996A} {133281D8-1BCE-4D07-B31E-796612A9609E} = {2F305555-C296-497E-AC20-5FA1B237996A} {805306FF-A562-4415-8DEF-E493BDC45918} = {2F305555-C296-497E-AC20-5FA1B237996A} {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3} = {2F305555-C296-497E-AC20-5FA1B237996A} {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2} = {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9} = {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} {9F94B303-5E21-4364-9362-64426F8DB932} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E} = {322566EF-20DC-43A6-B9F8-616AF942579A} {F7C8C0F1-5431-4347-89D0-8E5354F93CF2} = {2F305555-C296-497E-AC20-5FA1B237996A} {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC} = {2F305555-C296-497E-AC20-5FA1B237996A} {04B193D7-3E21-46B8-A958-89B63A8A69DE} = {2F305555-C296-497E-AC20-5FA1B237996A} {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {FD464B4C-2F68-4D06-91E7-4208146C41F5} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {020A7474-3601-4160-A159-D7B70B77B15F} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {27718999-C175-450A-861C-89F911E16A88} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {1DBBB112-4BB1-444B-8EBB-E66555C76BA6} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {5A1DB2F0-0715-4B3B-98E6-79BC41540045} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {93B72A06-C8BD-484F-A6F7-C9F280B150BF} = {6C7F47CC-2151-44A3-A546-41C70025132C} {18B3DB45-4FFE-4D01-97D6-5223FEEE1853} = {6C7F47CC-2151-44A3-A546-41C70025132C} {0F14491C-6369-4C45-AAA8-135814E66E6B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {34A354C5-23C7-4343-916C-C52DAF4FC39D} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {3264DF53-C805-4B0C-867C-FCEAF7AEF762} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {31CAD28E-778A-441C-85BC-40AB3EAA2A10} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {25C91A4E-BA4E-467A-85CD-8B62545BF674} = {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1} = {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} {212AD910-8488-4036-BE20-326931B75FB2} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {7AC943C9-52E8-44CF-9083-744D8049667B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A} = {7AC943C9-52E8-44CF-9083-744D8049667B} {92C39820-9F84-4529-BC7D-22AAE514D63B} = {7AC943C9-52E8-44CF-9083-744D8049667B} {515554D1-D004-4F7F-A107-2211FC0F6B2C} = {7AC943C9-52E8-44CF-9083-744D8049667B} {C97D9A5D-206C-454E-997E-009E227D7F02} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {31D1C81D-765F-4446-AA62-E743F6325049} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {B41B888C-7DB8-4747-B262-4062E05A230D} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {AB82E5DD-C32D-4F28-9746-2C780846188E} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {E69B044A-2F8A-45AA-AD0B-256C59421807} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {C604B37E-9D0E-4484-8778-E8B31B0E1B3A} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788} = {1AFB6476-670D-4E80-A464-657E01DFF482} {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97} = {1AFB6476-670D-4E80-A464-657E01DFF482} {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {A1425B53-3D61-4679-8623-E64A0D3D0A48} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {ED9A1AC6-AEB0-4569-A6E9-E1696182B545} = {2F305555-C296-497E-AC20-5FA1B237996A} {5A5DD09D-723A-44D3-8F2B-293584C3D731} = {2F305555-C296-497E-AC20-5FA1B237996A} {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9} = {2F305555-C296-497E-AC20-5FA1B237996A} {54F7C616-FD41-4E62-BFF9-015686914F4D} = {2F305555-C296-497E-AC20-5FA1B237996A} {143F13E3-D2E3-4D83-B035-356612D99956} = {2F305555-C296-497E-AC20-5FA1B237996A} {56CC2F10-6E41-453D-BE16-C593A5E58482} = {2F305555-C296-497E-AC20-5FA1B237996A} {CA5518ED-0458-4B09-8F53-4122B9888655} = {2F305555-C296-497E-AC20-5FA1B237996A} {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D} = {2F305555-C296-497E-AC20-5FA1B237996A} {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA} = {2F305555-C296-497E-AC20-5FA1B237996A} {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2833C9C6-AB32-4048-A5C7-A70898337B57} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {50B82783-242F-42D2-BC03-B3430BF01354} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {A663E672-B26D-4EC0-BEAB-FE2E424AC46F} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {8A08D663-4995-40E3-B42C-3F910625F284} = {322566EF-20DC-43A6-B9F8-616AF942579A} {D962A009-834F-4EEC-AABB-430DF8F98E39} = {322566EF-20DC-43A6-B9F8-616AF942579A} {D9C5DE64-6849-4278-91AD-9660AECF2876} = {322566EF-20DC-43A6-B9F8-616AF942579A} {9873BA05-4C41-4819-9283-CF45D795431B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {FC373B24-3293-453C-AAF5-CF2909DCEE6A} = {9873BA05-4C41-4819-9283-CF45D795431B} {9CE59ED5-7087-4353-88EB-788038A73CEC} = {1AFB6476-670D-4E80-A464-657E01DFF482} {FD86C06A-FB54-4D5E-9831-1CDADF60D45F} = {929C1324-22E8-4412-A9A8-80E85F3985A5} {697C6AF9-0A48-49A9-866C-67DA12384015} = {929C1324-22E8-4412-A9A8-80E85F3985A5} {929C1324-22E8-4412-A9A8-80E85F3985A5} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {9EBAA524-0EDA-470B-95D4-39383285CBB2} = {1AFB6476-670D-4E80-A464-657E01DFF482} {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {D095BE44-1F2E-463E-A494-121892A75EA2} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {90F9FA90-2C20-4004-96E6-F3B78151F5A5} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {3B227528-4BA6-4CAF-B44A-A10C78A64849} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {F5E1146E-B7B3-4E11-85FD-270A500BD78C} = {3B227528-4BA6-4CAF-B44A-A10C78A64849} {3157FA75-86CF-4EE2-8F62-C43F776493C6} = {3B227528-4BA6-4CAF-B44A-A10C78A64849} {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA} = {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} {B9420661-B0E4-4241-ABD4-4A27A1F64250} = {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {C3A2F9D1-7930-4EF4-A6FC-7EE0A99821D0} EndGlobalSection EndGlobal
Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.32014.148 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "runner", "src\runner\runner.vcxproj", "{9412D5C6-2CF2-4FC2-A601-B55508EA9B27}" ProjectSection(ProjectDependencies) = postProject {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} = {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} = {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} {0B593A6C-4143-4337-860E-DB5710FB87DB} = {0B593A6C-4143-4337-860E-DB5710FB87DB} {17DA04DF-E393-4397-9CF0-84DABE11032E} = {17DA04DF-E393-4397-9CF0-84DABE11032E} {217DF501-135C-4E38-BFC8-99D4821032EA} = {217DF501-135C-4E38-BFC8-99D4821032EA} {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} = {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} {48804216-2A0E-4168-A6D8-9CD068D14227} = {48804216-2A0E-4168-A6D8-9CD068D14227} {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} = {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} = {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} {655C9AF2-18D3-4DA6-80E4-85504A7722BA} = {655C9AF2-18D3-4DA6-80E4-85504A7722BA} {69E1EE8D-143A-4060-9129-4658ACF14AAF} = {69E1EE8D-143A-4060-9129-4658ACF14AAF} {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} = {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} = {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} {AF2349B8-E5B6-4004-9502-687C1C7730B1} = {AF2349B8-E5B6-4004-9502-687C1C7730B1} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {B25AC7A5-FB9F-4789-B392-D5C85E948670} {BA58206B-1493-4C75-BFEA-A85768A1E156} = {BA58206B-1493-4C75-BFEA-A85768A1E156} {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D} = {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D} {D940E07F-532C-4FF3-883F-790DA014F19A} = {D940E07F-532C-4FF3-883F-790DA014F19A} {DA425894-6E13-404F-8DCB-78584EC0557A} = {DA425894-6E13-404F-8DCB-78584EC0557A} {E364F67B-BB12-4E91-B639-355866EBCD8B} = {E364F67B-BB12-4E91-B639-355866EBCD8B} {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "modules", "modules", "{4574FDD0-F61D-4376-98BF-E5A1262C11EC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "interface", "interface", "{3BB8493E-D18E-4485-A320-CB40F90F55AE}" ProjectSection(SolutionItems) = preProject src\modules\interface\powertoy_module_interface.h = src\modules\interface\powertoy_module_interface.h EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "fancyzones", "fancyzones", "{D1D6BC88-09AE-4FB4-AD24-5DED46A791DD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZonesLib", "src\modules\fancyzones\FancyZonesLib\FancyZonesLib.vcxproj", "{F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnitTests-FancyZones", "src\modules\fancyzones\FancyZonesTests\UnitTests\UnitTests.vcxproj", "{9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}" ProjectSection(ProjectDependencies) = postProject {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "common", "common", "{1AFB6476-670D-4E80-A464-657E01DFF482}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnitTests-CommonLib", "src\common\UnitTests-CommonLib\UnitTests-CommonLib.vcxproj", "{1A066C63-64B3-45F8-92FE-664E1CCE8077}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FancyZonesEditor", "src\modules\fancyzones\editor\FancyZonesEditor\FancyZonesEditor.csproj", "{5CCC8468-DEC8-4D36-99D4-5C891BEBD481}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "powerrename", "powerrename", "{89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameExt", "src\modules\powerrename\dll\PowerRenameExt.vcxproj", "{B25AC7A5-FB9F-4789-B392-D5C85E948670}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameLib", "src\modules\powerrename\lib\PowerRenameLib.vcxproj", "{51920F1F-C28C-4ADF-8660-4238766796C2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameTest", "src\modules\powerrename\testapp\PowerRenameTest.vcxproj", "{A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameUnitTests", "src\modules\powerrename\unittests\PowerRenameLibUnitTests.vcxproj", "{2151F984-E006-4A9F-92EF-C6DDE3DC8413}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {B25AC7A5-FB9F-4789-B392-D5C85E948670} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ModuleTemplateCompileTest", "tools\project_template\ModuleTemplate\ModuleTemplateCompileTest.vcxproj", "{64A80062-4D8B-4229-8A38-DFA1D7497749}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManager", "src\modules\keyboardmanager\dll\KeyboardManager.vcxproj", "{89F34AF7-1C34-4A72-AA6E-534BCF972BD9}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "imageresizer", "imageresizer", "{6C7F47CC-2151-44A3-A546-41C70025132C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageResizerUI", "src\modules\imageresizer\ui\ImageResizerUI.csproj", "{2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerExt", "src\modules\imageresizer\dll\ImageResizerExt.vcxproj", "{0B43679E-EDFA-4DA0-AD30-F4628B308B1B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageResizerUITest", "src\modules\imageresizer\tests\ImageResizerUITest.csproj", "{E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.ActionRunner", "src\ActionRunner\ActionRunner.vcxproj", "{D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}" ProjectSection(ProjectDependencies) = postProject {17DA04DF-E393-4397-9CF0-84DABE11032E} = {17DA04DF-E393-4397-9CF0-84DABE11032E} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ApplicationUpdate", "src\common\updating\updating.vcxproj", "{17DA04DF-E393-4397-9CF0-84DABE11032E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "keyboardmanager", "keyboardmanager", "{38BDB927-829B-4C65-9CD9-93FB05D66D65}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerCommon", "src\modules\keyboardmanager\common\KeyboardManagerCommon.vcxproj", "{8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "launcher", "launcher", "{C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Infrastructure", "src\modules\launcher\Wox.Infrastructure\Wox.Infrastructure.csproj", "{4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin", "src\modules\launcher\Wox.Plugin\Wox.Plugin.csproj", "{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Test", "src\modules\launcher\Wox.Test\Wox.Test.csproj", "{FF742965-9A80-41A5-B042-D6C7D3A21708}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{4AFC9975-2456-4C70-94A4-84073C1CED93}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Calculator", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Calculator\Microsoft.PowerToys.Run.Plugin.Calculator.csproj", "{59BD9891-3837-438A-958D-ADC7F91F6F7E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.VSCodeWorkspaces", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.VSCodeWorkspaces\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.csproj", "{4D971245-7A70-41D5-BAA0-DDB5684CAF51}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowWalker", "src\modules\launcher\Plugins\Microsoft.Plugin.WindowWalker\Microsoft.Plugin.WindowWalker.csproj", "{74F1B9ED-F59C-4FE7-B473-7B453E30837E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Program", "src\modules\launcher\Plugins\Microsoft.Plugin.Program\Microsoft.Plugin.Program.csproj", "{FDB3555B-58EF-4AE6-B5F1-904719637AB4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Shell", "src\modules\launcher\Plugins\Microsoft.Plugin.Shell\Microsoft.Plugin.Shell.csproj", "{C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Indexer", "src\modules\launcher\Plugins\Microsoft.Plugin.Indexer\Microsoft.Plugin.Indexer.csproj", "{F8B870EB-D5F5-45BA-9CF7-A5C459818820}" ProjectSection(ProjectDependencies) = postProject {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} = {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.Launcher", "src\modules\launcher\Microsoft.Launcher\Microsoft.Launcher.vcxproj", "{E364F67B-BB12-4E91-B639-355866EBCD8B}" ProjectSection(ProjectDependencies) = postProject {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} = {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerLauncher", "src\modules\launcher\PowerLauncher\PowerLauncher.csproj", "{F97E5003-F263-4D4A-A964-0F1F3C82DEF2}" ProjectSection(ProjectDependencies) = postProject {03276A39-D4E9-417C-8FFD-200B0EE5E871} = {03276A39-D4E9-417C-8FFD-200B0EE5E871} {0351ADA4-0C32-4652-9BA0-41F7B602372B} = {0351ADA4-0C32-4652-9BA0-41F7B602372B} {4BABF3FE-3451-42FD-873F-3C332E18DCEF} = {4BABF3FE-3451-42FD-873F-3C332E18DCEF} {4D971245-7A70-41D5-BAA0-DDB5684CAF51} = {4D971245-7A70-41D5-BAA0-DDB5684CAF51} {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} = {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {5043CECE-E6A7-4867-9CBE-02D27D83747A} {59BD9891-3837-438A-958D-ADC7F91F6F7E} = {59BD9891-3837-438A-958D-ADC7F91F6F7E} {5A1DB2F0-0715-4B3B-98E6-79BC41540045} = {5A1DB2F0-0715-4B3B-98E6-79BC41540045} {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} = {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} {74F1B9ED-F59C-4FE7-B473-7B453E30837E} = {74F1B9ED-F59C-4FE7-B473-7B453E30837E} {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} = {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} {9F94B303-5E21-4364-9362-64426F8DB932} = {9F94B303-5E21-4364-9362-64426F8DB932} {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} = {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} = {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} = {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} {D095BE44-1F2E-463E-A494-121892A75EA2} = {D095BE44-1F2E-463E-A494-121892A75EA2} {F8B870EB-D5F5-45BA-9CF7-A5C459818820} = {F8B870EB-D5F5-45BA-9CF7-A5C459818820} {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} = {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {FDB3555B-58EF-4AE6-B5F1-904719637AB4} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{E775CC2C-24CB-48D6-9C3A-BE4CCE0DB17A}" ProjectSection(SolutionItems) = preProject src\tests\win-app-driver\README.md = src\tests\win-app-driver\README.md EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "previewpane", "previewpane", "{2F305555-C296-497E-AC20-5FA1B237996A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PreviewHandlerCommon", "src\modules\previewpane\Common\PreviewHandlerCommon.csproj", "{AF2349B8-E5B6-4004-9502-687C1C7730B1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MarkdownPreviewHandler", "src\modules\previewpane\MarkdownPreviewHandler\MarkdownPreviewHandler.csproj", "{6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-MarkdownPreviewHandler", "src\modules\previewpane\UnitTests-MarkdownPreviewHandler\UnitTests-MarkdownPreviewHandler.csproj", "{A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SvgPreviewHandler", "src\modules\previewpane\SvgPreviewHandler\SvgPreviewHandler.csproj", "{DA425894-6E13-404F-8DCB-78584EC0557A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-SvgPreviewHandler", "src\modules\previewpane\UnitTests-SvgPreviewHandler\UnitTests-SvgPreviewHandler.csproj", "{060D75DA-2D1C-48E6-A4A1-6F0718B64661}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PreviewHandlerCommon", "src\modules\previewpane\UnitTests-PreviewHandlerCommon\UnitTests-PreviewHandlerCommon.csproj", "{748417CA-F17E-487F-9411-CAFB6D3F4877}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "powerpreview", "src\modules\previewpane\powerpreview\powerpreview.vcxproj", "{217DF501-135C-4E38-BFC8-99D4821032EA}" ProjectSection(ProjectDependencies) = postProject {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "settings-ui", "settings-ui", "{C3081D9A-1586-441A-B5F4-ED815B3719C1}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4981CCD1-4CD9-4A49-B240-00AA46493FF8}" ProjectSection(SolutionItems) = preProject src\.editorconfig = src\.editorconfig .vsconfig = .vsconfig Directory.Build.props = Directory.Build.props Directory.Build.targets = Directory.Build.targets Directory.Packages.props = Directory.Packages.props Solution.props = Solution.props EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Settings.UI.Library", "src\settings-ui\Settings.UI.Library\Settings.UI.Library.csproj", "{B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.Interop", "src\common\interop\PowerToys.Interop.vcxproj", "{F055103B-F80B-4D0C-BF48-057C55620033}" ProjectSection(ProjectDependencies) = postProject {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Folder", "src\modules\launcher\Plugins\Microsoft.Plugin.Folder\Microsoft.Plugin.Folder.csproj", "{787B8AA6-CA93-4C84-96FE-DF31110AD1C4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerLauncher.Telemetry", "src\modules\launcher\PowerLauncher.Telemetry\PowerLauncher.Telemetry.csproj", "{08C8C05F-0362-41BC-818C-724572DF8B06}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedTelemetry", "src\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj", "{5D00D290-4016-4CFE-9E41-1E7C724509BA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedCommon", "src\common\ManagedCommon\ManagedCommon.csproj", "{4AED67B6-55FD-486F-B917-E543DEE2CB3C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Program.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Program.UnitTests\Microsoft.Plugin.Program.UnitTests.csproj", "{42851751-CBC8-45A6-97F5-7A0753F7B4D1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-SvgThumbnailProvider", "src\modules\previewpane\UnitTests-SvgThumbnailProvider\UnitTests-SvgThumbnailProvider.csproj", "{1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SvgThumbnailProvider", "src\modules\previewpane\SvgThumbnailProvider\SvgThumbnailProvider.csproj", "{8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ColorPicker", "src\modules\colorPicker\ColorPicker\ColorPicker.vcxproj", "{655C9AF2-18D3-4DA6-80E4-85504A7722BA}" ProjectSection(ProjectDependencies) = postProject {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} = {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ColorPickerUI", "src\modules\colorPicker\ColorPickerUI\ColorPickerUI.csproj", "{BA58206B-1493-4C75-BFEA-A85768A1E156}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "colorpicker", "colorpicker", "{1D78B84B-CA39-406C-98F4-71F7EC266CC0}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Uri", "src\modules\launcher\Plugins\Microsoft.Plugin.Uri\Microsoft.Plugin.Uri.csproj", "{03276A39-D4E9-417C-8FFD-200B0EE5E871}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Uri.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Uri.UnitTests\Microsoft.Plugin.Uri.UnitTests.csproj", "{B81FB7B6-D30E-428F-908A-41422EFC1172}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Settings.UI.UnitTests", "src\settings-ui\Settings.UI.UnitTests\Settings.UI.UnitTests.csproj", "{0F85E674-34AE-443D-954C-8321EB8B93B1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.csproj", "{632BBE62-5421-49EA-835A-7FFA4F499BD6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Folder.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Folder.UnitTests\Microsoft.Plugin.Folder.UnitTests.csproj", "{4FA206A5-F69F-4193-BF8F-F6EEB496734C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTest-ColorPickerUI", "src\modules\colorPicker\UnitTest-ColorPickerUI\UnitTest-ColorPickerUI.csproj", "{090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "spdlog", "src\logging\logging.vcxproj", "{7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.System", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.System\Microsoft.PowerToys.Run.Plugin.System.csproj", "{FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.System.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.System.UnitTests\Microsoft.PowerToys.Run.Plugin.System.UnitTests.csproj", "{DA5A6FE9-0040-40CC-83CC-764AE5306590}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Service", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Service\Microsoft.PowerToys.Run.Plugin.Service.csproj", "{0351ADA4-0C32-4652-9BA0-41F7B602372B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "logger", "src\common\logger\logger.vcxproj", "{D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}" ProjectSection(ProjectDependencies) = postProject {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} = {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SettingsAPI", "src\common\SettingsAPI\SettingsAPI.vcxproj", "{6955446D-23F7-4023-9BB3-8657F904AF99}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Interop.Tests", "src\common\interop\interop-tests\Microsoft.Interop.Tests.csproj", "{58736667-1027-4AD7-BFDF-7A3A6474103A}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "notifications", "notifications", "{D92131D6-7610-4D60-A7DB-1C169783F83B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Notifications", "src\common\notifications\notifications.vcxproj", "{1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BackgroundActivatorDLL", "src\common\notifications\BackgroundActivatorDLL\BackgroundActivatorDLL.vcxproj", "{031AC72E-FA28-4AB7-B690-6F7B9C28AA73}" ProjectSection(ProjectDependencies) = postProject {0B593A6C-4143-4337-860E-DB5710FB87DB} = {0B593A6C-4143-4337-860E-DB5710FB87DB} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BackgroundActivator", "src\common\notifications\BackgroundActivator\BackgroundActivator.vcxproj", "{0B593A6C-4143-4337-860E-DB5710FB87DB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Version", "src\common\version\version.vcxproj", "{CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "interop", "interop", "{5A7818A8-109C-4E1C-850D-1A654E234B0E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "log", "log", "{E4E03FE0-94FD-47C7-88C5-F17D0AA549D3}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "COMUtils", "src\common\COMUtils\COMUtils.vcxproj", "{7319089E-46D6-4400-BC65-E39BDF1416EE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Display", "src\common\Display\Display.vcxproj", "{CABA8DFB-823B-4BF2-93AC-3F31984150D9}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Themes", "src\common\Themes\Themes.vcxproj", "{98537082-0FDB-40DE-ABD8-0DC5A4269BAB}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "utils", "utils", "{B39DC643-4663-475E-B329-03F0C9918D48}" ProjectSection(SolutionItems) = preProject src\common\utils\appMutex.h = src\common\utils\appMutex.h src\common\utils\color.h = src\common\utils\color.h src\common\utils\com_object_factory.h = src\common\utils\com_object_factory.h src\common\utils\elevation.h = src\common\utils\elevation.h src\common\utils\EventLocker.h = src\common\utils\EventLocker.h src\common\utils\EventWaiter.h = src\common\utils\EventWaiter.h src\common\utils\excluded_apps.h = src\common\utils\excluded_apps.h src\common\utils\exec.h = src\common\utils\exec.h src\common\utils\game_mode.h = src\common\utils\game_mode.h src\common\utils\gpo.h = src\common\utils\gpo.h src\common\utils\HDropIterator.h = src\common\utils\HDropIterator.h src\common\utils\HttpClient.h = src\common\utils\HttpClient.h src\common\utils\json.h = src\common\utils\json.h src\common\utils\logger_helper.h = src\common\utils\logger_helper.h src\common\utils\modulesRegistry.h = src\common\utils\modulesRegistry.h src\common\utils\MsiUtils.h = src\common\utils\MsiUtils.h src\common\utils\MsWindowsSettings.h = src\common\utils\MsWindowsSettings.h src\common\utils\os-detect.h = src\common\utils\os-detect.h src\common\utils\package.h = src\common\utils\package.h src\common\utils\ProcessWaiter.h = src\common\utils\ProcessWaiter.h src\common\utils\process_path.h = src\common\utils\process_path.h src\common\utils\registry.h = src\common\utils\registry.h src\common\utils\resources.h = src\common\utils\resources.h src\common\utils\serialized.h = src\common\utils\serialized.h src\common\utils\string_utils.h = src\common\utils\string_utils.h src\common\utils\timeutil.h = src\common\utils\timeutil.h src\common\utils\UnhandledExceptionHandler.h = src\common\utils\UnhandledExceptionHandler.h src\common\utils\winapi_error.h = src\common\utils\winapi_error.h src\common\utils\window.h = src\common\utils\window.h EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Telemetry", "Telemetry", "{8F62026A-294B-41C6-8839-87463613F216}" ProjectSection(SolutionItems) = preProject src\common\Telemetry\ProjectTelemetry.h = src\common\Telemetry\ProjectTelemetry.h src\common\Telemetry\TelemetryBase.cs = src\common\Telemetry\TelemetryBase.cs src\common\Telemetry\TraceLoggingDefines.h = src\common\Telemetry\TraceLoggingDefines.h EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common.UI", "src\common\Common.UI\Common.UI.csproj", "{C3A17DCA-217B-462C-BB0C-BE086AF80081}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PdfPreviewHandler", "src\modules\previewpane\PdfPreviewHandler\PdfPreviewHandler.csproj", "{69E1EE8D-143A-4060-9129-4658ACF14AAF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PdfPreviewHandler", "src\modules\previewpane\UnitTests-PdfPreviewHandler\UnitTests-PdfPreviewHandler.csproj", "{ECC20689-002A-4354-95A6-B58DF089C6FF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Registry", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Registry\Microsoft.PowerToys.Run.Plugin.Registry.csproj", "{4BABF3FE-3451-42FD-873F-3C332E18DCEF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Registry.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Registry.UnitTest\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.csproj", "{0648DF05-5DDA-4BE1-B5F2-584926EBDB65}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngine", "src\modules\keyboardmanager\KeyboardManagerEngine\KeyboardManagerEngine.vcxproj", "{BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngineLibrary", "src\modules\keyboardmanager\KeyboardManagerEngineLibrary\KeyboardManagerEngineLibrary.vcxproj", "{E496B7FC-1E99-4BAB-849B-0E8367040B02}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngineTest", "src\modules\keyboardmanager\KeyboardManagerEngineTest\KeyboardManagerEngineTest.vcxproj", "{7F4B3A60-BC27-45A7-8000-68B0B6EA7466}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditor", "src\modules\keyboardmanager\KeyboardManagerEditor\KeyboardManagerEditor.vcxproj", "{8DF78B53-200E-451F-9328-01EB907193AE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditorLibrary", "src\modules\keyboardmanager\KeyboardManagerEditorLibrary\KeyboardManagerEditorLibrary.vcxproj", "{23D2070D-E4AD-4ADD-85A7-083D9C76AD49}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditorTest", "src\modules\keyboardmanager\KeyboardManagerEditorTest\KeyboardManagerEditorTest.vcxproj", "{62173D9A-6724-4C00-A1C8-FB646480A9EC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "awake", "awake", "{127F38E0-40AA-4594-B955-5616BF206882}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AwakeModuleInterface", "src\modules\awake\AwakeModuleInterface\AwakeModuleInterface.vcxproj", "{5E7360A8-D048-4ED3-8F09-0BFD64C5529A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Awake", "src\modules\awake\Awake\Awake.csproj", "{D940E07F-532C-4FF3-883F-790DA014F19A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.UnitConverter", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.UnitConverter\Community.PowerToys.Run.Plugin.UnitConverter.csproj", "{BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.UnitConverter.UnitTest", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.csproj", "{3E424AD2-19E5-4AE6-B833-F53963EB5FC1}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "shortcutguide", "shortcutguide", "{106CBECA-0701-4FC3-838C-9DF816A19AE2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShortcutGuideModuleInterface", "src\modules\ShortcutGuide\ShortcutGuideModuleInterface\ShortcutGuideModuleInterface.vcxproj", "{2D604C07-51FC-46BB-9EB7-75AECC7F5E81}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShortcutGuide", "src\modules\ShortcutGuide\ShortcutGuide\ShortcutGuide.vcxproj", "{2EDB3EB4-FA92-4BFF-B2D8-566584837231}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZonesModuleInterface", "src\modules\fancyzones\FancyZonesModuleInterface\FancyZonesModuleInterface.vcxproj", "{48804216-2A0E-4168-A6D8-9CD068D14227}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZones", "src\modules\fancyzones\FancyZones\FancyZones.vcxproj", "{FF1D7936-842A-4BBB-8BEA-E9FE796DE700}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.Update", "src\Update\PowerToys.Update.vcxproj", "{44CE9AE1-4390-42C5-BACC-0FD6B40AA203}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.WindowsSettings", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsSettings\Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj", "{5043CECE-E6A7-4867-9CBE-02D27D83747A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceShared", "src\modules\videoconference\VideoConferenceShared\VideoConferenceShared.vcxproj", "{459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceModule", "src\modules\videoconference\VideoConferenceModule\VideoConference.vcxproj", "{5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceProxyFilter", "src\modules\videoconference\VideoConferenceProxyFilter\VideoConferenceProxyFilter.vcxproj", "{AC2857B4-103D-4D6D-9740-926EBF785042}" ProjectSection(ProjectDependencies) = postProject {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} = {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VideoConference", "VideoConference", "{470FBAF9-E1F8-4F3E-8786-198A1C81C8A8}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PdfThumbnailProvider", "src\modules\previewpane\PdfThumbnailProvider\PdfThumbnailProvider.csproj", "{11491FD8-F921-48BF-880C-7FEA185B80A1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PdfThumbnailProvider", "src\modules\previewpane\UnitTests-PdfThumbnailProvider\UnitTests-PdfThumbnailProvider.csproj", "{F40C3397-1834-4530-B2D9-8F8B8456BCDF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.WindowsTerminal", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsTerminal\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.csproj", "{A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowsTerminal.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.UnitTests\Microsoft.Plugin.WindowsTerminal.UnitTests.csproj", "{4ED320BC-BA04-4D42-8D15-CBE62151F08B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MouseUtils", "MouseUtils", "{322566EF-20DC-43A6-B9F8-616AF942579A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FindMyMouse", "src\modules\MouseUtils\FindMyMouse\FindMyMouse.vcxproj", "{E94FD11C-0591-456F-899F-EFC0CA548336}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseHighlighter", "src\modules\MouseUtils\MouseHighlighter\MouseHighlighter.vcxproj", "{782A61BE-9D85-4081-B35C-1CCC9DCC1E88}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GcodeThumbnailProvider", "src\modules\previewpane\GcodeThumbnailProvider\GcodeThumbnailProvider.csproj", "{809AA252-E17A-4FA2-B0A1-0450976B763F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-GcodeThumbnailProvider", "src\modules\previewpane\UnitTests-GcodeThumbnailProvider\UnitTests-GcodeThumbnailProvider.csproj", "{133281D8-1BCE-4D07-B31E-796612A9609E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GcodePreviewHandler", "src\modules\previewpane\GcodePreviewHandler\GcodePreviewHandler.csproj", "{805306FF-A562-4415-8DEF-E493BDC45918}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-GcodePreviewHandler", "src\modules\previewpane\UnitTests-GcodePreviewHandler\UnitTests-GcodePreviewHandler.csproj", "{FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AlwaysOnTop", "AlwaysOnTop", "{60CD2D4F-C3B9-4897-9821-FCA5098B41CE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlwaysOnTop", "src\modules\alwaysontop\AlwaysOnTop\AlwaysOnTop.vcxproj", "{1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlwaysOnTopModuleInterface", "src\modules\alwaysontop\AlwaysOnTopModuleInterface\AlwaysOnTopModuleInterface.vcxproj", "{48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.WebSearch", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.WebSearch\Community.PowerToys.Run.Plugin.WebSearch.csproj", "{9F94B303-5E21-4364-9362-64426F8DB932}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MousePointerCrosshairs", "src\modules\MouseUtils\MousePointerCrosshairs\MousePointerCrosshairs.vcxproj", "{EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StlThumbnailProvider", "src\modules\previewpane\StlThumbnailProvider\StlThumbnailProvider.csproj", "{F7C8C0F1-5431-4347-89D0-8E5354F93CF2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-StlThumbnailProvider", "src\modules\previewpane\UnitTests-StlThumbnailProvider\UnitTests-StlThumbnailProvider.csproj", "{F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MonacoPreviewHandler", "src\modules\previewpane\MonacoPreviewHandler\MonacoPreviewHandler.csproj", "{04B193D7-3E21-46B8-A958-89B63A8A69DE}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.TimeDate", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.TimeDate\Microsoft.PowerToys.Run.Plugin.TimeDate.csproj", "{5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.csproj", "{FD464B4C-2F68-4D06-91E7-4208146C41F5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowWalker.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.WindowWalker.UnitTests\Microsoft.Plugin.WindowWalker.UnitTests.csproj", "{8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerToys.Settings", "src\settings-ui\Settings.UI\PowerToys.Settings.csproj", "{020A7474-3601-4160-A159-D7B70B77B15F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameUI", "src\modules\powerrename\PowerRenameUILib\PowerRenameUI.vcxproj", "{27718999-C175-450A-861C-89F911E16A88}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameContextMenu", "src\modules\powerrename\PowerRenameContextMenu\PowerRenameContextMenu.vcxproj", "{1DBBB112-4BB1-444B-8EBB-E66555C76BA6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.OneNote", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.OneNote\Microsoft.PowerToys.Run.Plugin.OneNote.csproj", "{5A1DB2F0-0715-4B3B-98E6-79BC41540045}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerContextMenu", "src\modules\imageresizer\ImageResizerContextMenu\ImageResizerContextMenu.vcxproj", "{93B72A06-C8BD-484F-A6F7-C9F280B150BF}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerLib", "src\modules\imageresizer\ImageResizerLib\ImageResizerLib.vcxproj", "{18B3DB45-4FFE-4D01-97D6-5223FEEE1853}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PowerAccent", "PowerAccent", "{0F14491C-6369-4C45-AAA8-135814E66E6B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerAccentModuleInterface", "src\modules\poweraccent\PowerAccentModuleInterface\PowerAccentModuleInterface.vcxproj", "{34A354C5-23C7-4343-916C-C52DAF4FC39D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerAccent.Core", "src\modules\poweraccent\PowerAccent.Core\PowerAccent.Core.csproj", "{3264DF53-C805-4B0C-867C-FCEAF7AEF762}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerAccent.UI", "src\modules\poweraccent\PowerAccent.UI\PowerAccent.UI.csproj", "{31CAD28E-778A-441C-85BC-40AB3EAA2A10}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PowerOCR", "PowerOCR", "{A50C70A6-2DA0-4027-B90E-B1A40755A8A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerOCR", "src\modules\PowerOCR\PowerOCR\PowerOCR.csproj", "{25C91A4E-BA4E-467A-85CD-8B62545BF674}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerOCRModuleInterface", "src\modules\PowerOCR\PowerOCRModuleInterface\PowerOCRModuleInterface.vcxproj", "{6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.History", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.History\Microsoft.PowerToys.Run.Plugin.History.csproj", "{212AD910-8488-4036-BE20-326931B75FB2}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MeasureTool", "MeasureTool", "{7AC943C9-52E8-44CF-9083-744D8049667B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.MeasureToolCore", "src\modules\MeasureTool\MeasureToolCore\PowerToys.MeasureToolCore.vcxproj", "{54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}" ProjectSection(ProjectDependencies) = postProject {6955446D-23F7-4023-9BB3-8657F904AF99} = {6955446D-23F7-4023-9BB3-8657F904AF99} {CABA8DFB-823B-4BF2-93AC-3F31984150D9} = {CABA8DFB-823B-4BF2-93AC-3F31984150D9} {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MeasureToolModuleInterface", "src\modules\MeasureTool\MeasureToolModuleInterface\MeasureToolModuleInterface.vcxproj", "{92C39820-9F84-4529-BC7D-22AAE514D63B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MeasureToolUI", "src\modules\MeasureTool\MeasureToolUI\MeasureToolUI.csproj", "{515554D1-D004-4F7F-A107-2211FC0F6B2C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerAccentKeyboardService", "src\modules\poweraccent\PowerAccentKeyboardService\PowerAccentKeyboardService.vcxproj", "{C97D9A5D-206C-454E-997E-009E227D7F02}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hosts", "src\modules\Hosts\Hosts\Hosts.csproj", "{31D1C81D-765F-4446-AA62-E743F6325049}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Hosts", "Hosts", "{F05E590D-AD46-42BE-9C25-6A63ADD2E3EA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hosts.Tests", "src\modules\Hosts\Hosts.Tests\Hosts.Tests.csproj", "{E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HostsModuleInterface", "src\modules\Hosts\HostsModuleInterface\HostsModuleInterface.vcxproj", "{B41B888C-7DB8-4747-B262-4062E05A230D}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "FileLocksmith", "FileLocksmith", "{AB82E5DD-C32D-4F28-9746-2C780846188E}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileLocksmithExt", "src\modules\FileLocksmith\FileLocksmithExt\FileLocksmithExt.vcxproj", "{57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileLocksmithUI", "src\modules\FileLocksmith\FileLocksmithUI\FileLocksmithUI.csproj", "{E69B044A-2F8A-45AA-AD0B-256C59421807}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileLocksmithLibInterop", "src\modules\FileLocksmith\FileLocksmithLibInterop\FileLocksmithLibInterop.vcxproj", "{C604B37E-9D0E-4484-8778-E8B31B0E1B3A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GPOWrapper", "src\common\GPOWrapper\GPOWrapper.vcxproj", "{E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GPOWrapperProjection", "src\common\GPOWrapperProjection\GPOWrapperProjection.csproj", "{00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Peek", "Peek", "{17B4FA70-001E-4D33-BBBB-0D142DBC2E20}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Peek", "src\modules\peek\peek\peek.vcxproj", "{A1425B53-3D61-4679-8623-E64A0D3D0A48}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.UI", "src\modules\peek\Peek.UI\Peek.UI.csproj", "{9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.Common", "src\modules\peek\Peek.Common\Peek.Common.csproj", "{17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.FilePreviewer", "src\modules\peek\Peek.FilePreviewer\Peek.FilePreviewer.csproj", "{AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MarkdownPreviewHandlerCpp", "src\modules\previewpane\MarkdownPreviewHandlerCpp\MarkdownPreviewHandlerCpp.vcxproj", "{ED9A1AC6-AEB0-4569-A6E9-E1696182B545}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GcodePreviewHandlerCpp", "src\modules\previewpane\GcodePreviewHandlerCpp\GcodePreviewHandlerCpp.vcxproj", "{5A5DD09D-723A-44D3-8F2B-293584C3D731}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MonacoPreviewHandlerCpp", "src\modules\previewpane\MonacoPreviewHandlerCpp\MonacoPreviewHandlerCpp.vcxproj", "{B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PdfPreviewHandlerCpp", "src\modules\previewpane\PdfPreviewHandlerCpp\PdfPreviewHandlerCpp.vcxproj", "{54F7C616-FD41-4E62-BFF9-015686914F4D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SvgPreviewHandlerCpp", "src\modules\previewpane\SvgPreviewHandlerCpp\SvgPreviewHandlerCpp.vcxproj", "{143F13E3-D2E3-4D83-B035-356612D99956}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GcodeThumbnailProviderCpp", "src\modules\previewpane\GcodeThumbnailProviderCpp\GcodeThumbnailProviderCpp.vcxproj", "{56CC2F10-6E41-453D-BE16-C593A5E58482}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PdfThumbnailProviderCpp", "src\modules\previewpane\PdfThumbnailProviderCpp\PdfThumbnailProviderCpp.vcxproj", "{CA5518ED-0458-4B09-8F53-4122B9888655}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StlThumbnailProviderCpp", "src\modules\previewpane\StlThumbnailProviderCpp\StlThumbnailProviderCpp.vcxproj", "{D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SvgThumbnailProviderCpp", "src\modules\previewpane\SvgThumbnailProviderCpp\SvgThumbnailProviderCpp.vcxproj", "{2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MouseWithoutBorders", "MouseWithoutBorders", "{B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseWithoutBordersModuleInterface", "src\modules\MouseWithoutBorders\ModuleInterface\MouseWithoutBordersModuleInterface.vcxproj", "{2833C9C6-AB32-4048-A5C7-A70898337B57}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBorders", "src\modules\MouseWithoutBorders\App\MouseWithoutBorders.csproj", "{50B82783-242F-42D2-BC03-B3430BF01354}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBordersService", "src\modules\MouseWithoutBorders\App\Service\MouseWithoutBordersService.csproj", "{B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBordersHelper", "src\modules\MouseWithoutBorders\App\Helper\MouseWithoutBordersHelper.csproj", "{A663E672-B26D-4EC0-BEAB-FE2E424AC46F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseJump", "src\modules\MouseUtils\MouseJump\MouseJump.vcxproj", "{8A08D663-4995-40E3-B42C-3F910625F284}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseJumpUI", "src\modules\MouseUtils\MouseJumpUI\MouseJumpUI.csproj", "{D962A009-834F-4EEC-AABB-430DF8F98E39}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseJumpUI.UnitTests", "src\modules\MouseUtils\MouseJumpUI.UnitTests\MouseJumpUI.UnitTests.csproj", "{D9C5DE64-6849-4278-91AD-9660AECF2876}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "pasteplain", "pasteplain", "{9873BA05-4C41-4819-9283-CF45D795431B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PastePlainModuleInterface", "src\modules\pasteplain\PastePlainModuleInterface\PastePlainModuleInterface.vcxproj", "{FC373B24-3293-453C-AAF5-CF2909DCEE6A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AllExperiments", "src\common\AllExperiments\AllExperiments.csproj", "{9CE59ED5-7087-4353-88EB-788038A73CEC}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RegistryPreviewUI", "src\modules\registrypreview\RegistryPreviewUI\RegistryPreviewUI.csproj", "{FD86C06A-FB54-4D5E-9831-1CDADF60D45F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RegistryPreviewExt", "src\modules\registrypreview\RegistryPreviewExt\RegistryPreviewExt.vcxproj", "{697C6AF9-0A48-49A9-866C-67DA12384015}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RegistryPreview", "RegistryPreview", "{929C1324-22E8-4412-A9A8-80E85F3985A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FilePreviewCommon", "src\common\FilePreviewCommon\FilePreviewCommon.csproj", "{9EBAA524-0EDA-470B-95D4-39383285CBB2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.PowerToys", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.PowerToys\Microsoft.PowerToys.Run.Plugin.PowerToys.csproj", "{500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.ValueGenerator", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.ValueGenerator\Community.PowerToys.Run.Plugin.ValueGenerator.csproj", "{D095BE44-1F2E-463E-A494-121892A75EA2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.csproj", "{90F9FA90-2C20-4004-96E6-F3B78151F5A5}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CropAndLock", "CropAndLock", "{3B227528-4BA6-4CAF-B44A-A10C78A64849}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CropAndLock", "src\modules\CropAndLock\CropAndLock\CropAndLock.vcxproj", "{F5E1146E-B7B3-4E11-85FD-270A500BD78C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CropAndLockModuleInterface", "src\modules\CropAndLock\CropAndLockModuleInterface\CropAndLockModuleInterface.vcxproj", "{3157FA75-86CF-4EE2-8F62-C43F776493C6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-FancyZonesEditor", "src\modules\fancyzones\UnitTests-FancyZonesEditor\UnitTests-FancyZonesEditor.csproj", "{FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "EnvironmentVariables", "EnvironmentVariables", "{538ED0BB-B863-4B20-98CC-BCDF7FA0B68A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EnvironmentVariables", "src\modules\EnvironmentVariables\EnvironmentVariables\EnvironmentVariables.csproj", "{51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EnvironmentVariablesModuleInterface", "src\modules\EnvironmentVariables\EnvironmentVariablesModuleInterface\EnvironmentVariablesModuleInterface.vcxproj", "{B9420661-B0E4-4241-ABD4-4A27A1F64250}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "QoiThumbnailProviderCpp", "src\modules\previewpane\QoiThumbnailProviderCpp\QoiThumbnailProviderCpp.vcxproj", "{CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QoiThumbnailProvider", "src\modules\previewpane\QoiThumbnailProvider\QoiThumbnailProvider.csproj", "{D949EC7D-48A9-4279-95D5-078E7FD1F048}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "QoiPreviewHandlerCpp", "src\modules\previewpane\QoiPreviewHandlerCpp\QoiPreviewHandlerCpp.vcxproj", "{3BAF9C81-A194-4925-A035-5E24A5D1E542}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QoiPreviewHandler", "src\modules\previewpane\QoiPreviewHandler\QoiPreviewHandler.csproj", "{6B04803D-B418-4833-A67E-B0FC966636A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-QoiPreviewHandler", "src\modules\previewpane\UnitTests-QoiPreviewHandler\UnitTests-QoiPreviewHandler.csproj", "{3940AD4D-F748-4BE4-9083-85769CD553EF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-QoiThumbnailProvider", "src\modules\previewpane\UnitTests-QoiThumbnailProvider\UnitTests-QoiThumbnailProvider.csproj", "{F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|ARM64 = Debug|ARM64 Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 Release|ARM64 = Release|ARM64 Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|ARM64.Build.0 = Debug|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x64.ActiveCfg = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x64.Build.0 = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x86.ActiveCfg = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|ARM64.ActiveCfg = Release|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|ARM64.Build.0 = Release|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x64.ActiveCfg = Release|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x64.Build.0 = Release|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x86.ActiveCfg = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|ARM64.Build.0 = Debug|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x64.ActiveCfg = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x64.Build.0 = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x86.ActiveCfg = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|ARM64.ActiveCfg = Release|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|ARM64.Build.0 = Release|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x64.ActiveCfg = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x64.Build.0 = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x86.ActiveCfg = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|ARM64.Build.0 = Debug|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x64.ActiveCfg = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x64.Build.0 = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x86.ActiveCfg = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|ARM64.ActiveCfg = Release|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|ARM64.Build.0 = Release|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x64.ActiveCfg = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x64.Build.0 = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x86.ActiveCfg = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|ARM64.Build.0 = Debug|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x64.ActiveCfg = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x64.Build.0 = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x86.ActiveCfg = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|ARM64.ActiveCfg = Release|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|ARM64.Build.0 = Release|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x64.ActiveCfg = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x64.Build.0 = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x86.ActiveCfg = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|ARM64.Build.0 = Debug|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x64.ActiveCfg = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x64.Build.0 = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x86.ActiveCfg = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|ARM64.ActiveCfg = Release|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|ARM64.Build.0 = Release|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x64.ActiveCfg = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x64.Build.0 = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x86.ActiveCfg = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|ARM64.Build.0 = Debug|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x64.ActiveCfg = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x64.Build.0 = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x86.ActiveCfg = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|ARM64.ActiveCfg = Release|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|ARM64.Build.0 = Release|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x64.ActiveCfg = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x64.Build.0 = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x86.ActiveCfg = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|ARM64.Build.0 = Debug|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x64.ActiveCfg = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x64.Build.0 = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x86.ActiveCfg = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|ARM64.ActiveCfg = Release|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|ARM64.Build.0 = Release|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x64.ActiveCfg = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x64.Build.0 = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x86.ActiveCfg = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|ARM64.Build.0 = Debug|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x64.ActiveCfg = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x64.Build.0 = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x86.ActiveCfg = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|ARM64.ActiveCfg = Release|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|ARM64.Build.0 = Release|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x64.ActiveCfg = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x64.Build.0 = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x86.ActiveCfg = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|ARM64.Build.0 = Debug|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x64.ActiveCfg = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x64.Build.0 = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x86.ActiveCfg = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|ARM64.ActiveCfg = Release|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|ARM64.Build.0 = Release|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x64.ActiveCfg = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x64.Build.0 = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x86.ActiveCfg = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|ARM64.ActiveCfg = Debug|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|ARM64.Build.0 = Debug|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x64.ActiveCfg = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x64.Build.0 = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x86.ActiveCfg = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|ARM64.ActiveCfg = Release|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|ARM64.Build.0 = Release|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x64.ActiveCfg = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x64.Build.0 = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x86.ActiveCfg = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|ARM64.Build.0 = Debug|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x64.ActiveCfg = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x64.Build.0 = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x86.ActiveCfg = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|ARM64.ActiveCfg = Release|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|ARM64.Build.0 = Release|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x64.ActiveCfg = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x64.Build.0 = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x86.ActiveCfg = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|ARM64.Build.0 = Debug|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x64.ActiveCfg = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x64.Build.0 = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x86.ActiveCfg = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|ARM64.ActiveCfg = Release|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|ARM64.Build.0 = Release|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x64.ActiveCfg = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x64.Build.0 = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x86.ActiveCfg = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|ARM64.Build.0 = Debug|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x64.ActiveCfg = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x64.Build.0 = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x86.ActiveCfg = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|ARM64.ActiveCfg = Release|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|ARM64.Build.0 = Release|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x64.ActiveCfg = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x64.Build.0 = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x86.ActiveCfg = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|ARM64.Build.0 = Debug|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x64.ActiveCfg = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x64.Build.0 = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x86.ActiveCfg = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|ARM64.ActiveCfg = Release|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|ARM64.Build.0 = Release|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x64.ActiveCfg = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x64.Build.0 = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x86.ActiveCfg = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|ARM64.Build.0 = Debug|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x64.ActiveCfg = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x64.Build.0 = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x86.ActiveCfg = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|ARM64.ActiveCfg = Release|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|ARM64.Build.0 = Release|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x64.ActiveCfg = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x64.Build.0 = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x86.ActiveCfg = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|ARM64.Build.0 = Debug|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x64.ActiveCfg = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x64.Build.0 = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x86.ActiveCfg = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|ARM64.ActiveCfg = Release|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|ARM64.Build.0 = Release|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x64.ActiveCfg = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x64.Build.0 = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x86.ActiveCfg = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|ARM64.Build.0 = Debug|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x64.ActiveCfg = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x64.Build.0 = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x86.ActiveCfg = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|ARM64.ActiveCfg = Release|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|ARM64.Build.0 = Release|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x64.ActiveCfg = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x64.Build.0 = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x86.ActiveCfg = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|ARM64.Build.0 = Debug|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x64.ActiveCfg = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x64.Build.0 = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x86.ActiveCfg = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|ARM64.ActiveCfg = Release|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|ARM64.Build.0 = Release|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x64.ActiveCfg = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x64.Build.0 = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x86.ActiveCfg = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|ARM64.Build.0 = Debug|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x64.ActiveCfg = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x64.Build.0 = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x86.ActiveCfg = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|ARM64.ActiveCfg = Release|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|ARM64.Build.0 = Release|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x64.ActiveCfg = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x64.Build.0 = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x86.ActiveCfg = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|ARM64.Build.0 = Debug|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x64.ActiveCfg = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x64.Build.0 = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x86.ActiveCfg = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|ARM64.ActiveCfg = Release|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|ARM64.Build.0 = Release|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x64.ActiveCfg = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x64.Build.0 = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x86.ActiveCfg = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|ARM64.Build.0 = Debug|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x64.ActiveCfg = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x64.Build.0 = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x86.ActiveCfg = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|ARM64.ActiveCfg = Release|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|ARM64.Build.0 = Release|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x64.ActiveCfg = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x64.Build.0 = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x86.ActiveCfg = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|ARM64.Build.0 = Debug|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x64.ActiveCfg = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x64.Build.0 = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x86.ActiveCfg = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|ARM64.ActiveCfg = Release|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|ARM64.Build.0 = Release|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x64.ActiveCfg = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x64.Build.0 = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x86.ActiveCfg = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|ARM64.Build.0 = Debug|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x64.ActiveCfg = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x64.Build.0 = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x86.ActiveCfg = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|ARM64.ActiveCfg = Release|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|ARM64.Build.0 = Release|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x64.ActiveCfg = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x64.Build.0 = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x86.ActiveCfg = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|ARM64.Build.0 = Debug|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x64.ActiveCfg = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x64.Build.0 = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x86.ActiveCfg = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|ARM64.ActiveCfg = Release|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|ARM64.Build.0 = Release|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x64.ActiveCfg = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x64.Build.0 = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x86.ActiveCfg = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|ARM64.Build.0 = Debug|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x64.ActiveCfg = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x64.Build.0 = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x86.ActiveCfg = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|ARM64.ActiveCfg = Release|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|ARM64.Build.0 = Release|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x64.ActiveCfg = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x64.Build.0 = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x86.ActiveCfg = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|ARM64.Build.0 = Debug|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x64.ActiveCfg = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x64.Build.0 = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x86.ActiveCfg = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|ARM64.ActiveCfg = Release|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|ARM64.Build.0 = Release|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x64.ActiveCfg = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x64.Build.0 = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x86.ActiveCfg = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|ARM64.Build.0 = Debug|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x64.ActiveCfg = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x64.Build.0 = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x86.ActiveCfg = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|ARM64.ActiveCfg = Release|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|ARM64.Build.0 = Release|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x64.ActiveCfg = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x64.Build.0 = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x86.ActiveCfg = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|ARM64.Build.0 = Debug|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x64.ActiveCfg = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x64.Build.0 = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x86.ActiveCfg = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|ARM64.ActiveCfg = Release|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|ARM64.Build.0 = Release|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x64.ActiveCfg = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x64.Build.0 = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x86.ActiveCfg = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|ARM64.Build.0 = Debug|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x64.ActiveCfg = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x64.Build.0 = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x86.ActiveCfg = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|ARM64.ActiveCfg = Release|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|ARM64.Build.0 = Release|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x64.ActiveCfg = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x64.Build.0 = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x86.ActiveCfg = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|ARM64.Build.0 = Debug|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x64.ActiveCfg = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x64.Build.0 = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x86.ActiveCfg = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|ARM64.ActiveCfg = Release|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|ARM64.Build.0 = Release|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x64.ActiveCfg = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x64.Build.0 = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x86.ActiveCfg = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|ARM64.Build.0 = Debug|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x64.ActiveCfg = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x64.Build.0 = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x86.ActiveCfg = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|ARM64.ActiveCfg = Release|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|ARM64.Build.0 = Release|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x64.ActiveCfg = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x64.Build.0 = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x86.ActiveCfg = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|ARM64.Build.0 = Debug|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x64.ActiveCfg = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x64.Build.0 = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x86.ActiveCfg = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|ARM64.ActiveCfg = Release|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|ARM64.Build.0 = Release|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x64.ActiveCfg = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x64.Build.0 = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x86.ActiveCfg = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|ARM64.ActiveCfg = Debug|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|ARM64.Build.0 = Debug|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x64.ActiveCfg = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x64.Build.0 = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x86.ActiveCfg = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|ARM64.ActiveCfg = Release|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|ARM64.Build.0 = Release|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x64.ActiveCfg = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x64.Build.0 = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x86.ActiveCfg = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|ARM64.ActiveCfg = Debug|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|ARM64.Build.0 = Debug|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x64.ActiveCfg = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x64.Build.0 = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x86.ActiveCfg = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|ARM64.ActiveCfg = Release|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|ARM64.Build.0 = Release|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x64.ActiveCfg = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x64.Build.0 = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x86.ActiveCfg = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|ARM64.Build.0 = Debug|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x64.ActiveCfg = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x64.Build.0 = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x86.ActiveCfg = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|ARM64.ActiveCfg = Release|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|ARM64.Build.0 = Release|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x64.ActiveCfg = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x64.Build.0 = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x86.ActiveCfg = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|ARM64.Build.0 = Debug|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.ActiveCfg = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.Build.0 = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x86.ActiveCfg = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|ARM64.ActiveCfg = Release|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|ARM64.Build.0 = Release|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x64.ActiveCfg = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x64.Build.0 = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x86.ActiveCfg = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|ARM64.Build.0 = Debug|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x64.ActiveCfg = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x64.Build.0 = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x86.ActiveCfg = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|ARM64.ActiveCfg = Release|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|ARM64.Build.0 = Release|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x64.ActiveCfg = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x64.Build.0 = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x86.ActiveCfg = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|ARM64.Build.0 = Debug|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x64.ActiveCfg = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x64.Build.0 = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x86.ActiveCfg = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|ARM64.ActiveCfg = Release|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|ARM64.Build.0 = Release|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x64.ActiveCfg = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x64.Build.0 = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x86.ActiveCfg = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|ARM64.ActiveCfg = Debug|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|ARM64.Build.0 = Debug|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x64.ActiveCfg = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x64.Build.0 = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x86.ActiveCfg = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|ARM64.ActiveCfg = Release|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|ARM64.Build.0 = Release|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x64.ActiveCfg = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x64.Build.0 = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x86.ActiveCfg = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|ARM64.Build.0 = Debug|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x64.ActiveCfg = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x64.Build.0 = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x86.ActiveCfg = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|ARM64.ActiveCfg = Release|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|ARM64.Build.0 = Release|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x64.ActiveCfg = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x64.Build.0 = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x86.ActiveCfg = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|ARM64.Build.0 = Debug|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x64.ActiveCfg = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x64.Build.0 = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x86.ActiveCfg = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|ARM64.ActiveCfg = Release|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|ARM64.Build.0 = Release|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x64.ActiveCfg = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x64.Build.0 = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x86.ActiveCfg = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|ARM64.Build.0 = Debug|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x64.ActiveCfg = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x64.Build.0 = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x86.ActiveCfg = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|ARM64.ActiveCfg = Release|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|ARM64.Build.0 = Release|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x64.ActiveCfg = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x64.Build.0 = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x86.ActiveCfg = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|ARM64.Build.0 = Debug|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x64.ActiveCfg = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x64.Build.0 = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x86.ActiveCfg = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|ARM64.ActiveCfg = Release|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|ARM64.Build.0 = Release|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x64.ActiveCfg = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x64.Build.0 = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x86.ActiveCfg = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|ARM64.Build.0 = Debug|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x64.ActiveCfg = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x64.Build.0 = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x86.ActiveCfg = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|ARM64.ActiveCfg = Release|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|ARM64.Build.0 = Release|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x64.ActiveCfg = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x64.Build.0 = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x86.ActiveCfg = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|ARM64.Build.0 = Debug|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x64.ActiveCfg = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x64.Build.0 = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x86.ActiveCfg = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|ARM64.ActiveCfg = Release|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|ARM64.Build.0 = Release|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x64.ActiveCfg = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x64.Build.0 = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x86.ActiveCfg = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|ARM64.Build.0 = Debug|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x64.ActiveCfg = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x64.Build.0 = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x86.ActiveCfg = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|ARM64.ActiveCfg = Release|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|ARM64.Build.0 = Release|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x64.ActiveCfg = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x64.Build.0 = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x86.ActiveCfg = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|ARM64.ActiveCfg = Debug|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|ARM64.Build.0 = Debug|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x64.ActiveCfg = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x64.Build.0 = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x86.ActiveCfg = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|ARM64.ActiveCfg = Release|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|ARM64.Build.0 = Release|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x64.ActiveCfg = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x64.Build.0 = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x86.ActiveCfg = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|ARM64.Build.0 = Debug|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x64.ActiveCfg = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x64.Build.0 = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x86.ActiveCfg = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|ARM64.ActiveCfg = Release|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|ARM64.Build.0 = Release|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x64.ActiveCfg = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x64.Build.0 = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x86.ActiveCfg = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|ARM64.Build.0 = Debug|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x64.ActiveCfg = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x64.Build.0 = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x86.ActiveCfg = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|ARM64.ActiveCfg = Release|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|ARM64.Build.0 = Release|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x64.ActiveCfg = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x64.Build.0 = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x86.ActiveCfg = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|ARM64.Build.0 = Debug|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x64.ActiveCfg = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x64.Build.0 = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x86.ActiveCfg = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|ARM64.ActiveCfg = Release|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|ARM64.Build.0 = Release|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x64.ActiveCfg = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x64.Build.0 = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x86.ActiveCfg = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|ARM64.Build.0 = Debug|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x64.ActiveCfg = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x64.Build.0 = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x86.ActiveCfg = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|ARM64.ActiveCfg = Release|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|ARM64.Build.0 = Release|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x64.ActiveCfg = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x64.Build.0 = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x86.ActiveCfg = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|ARM64.Build.0 = Debug|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x64.ActiveCfg = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x64.Build.0 = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x86.ActiveCfg = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|ARM64.ActiveCfg = Release|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|ARM64.Build.0 = Release|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x64.ActiveCfg = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x64.Build.0 = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x86.ActiveCfg = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|ARM64.Build.0 = Debug|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x64.ActiveCfg = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x64.Build.0 = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x86.ActiveCfg = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|ARM64.ActiveCfg = Release|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|ARM64.Build.0 = Release|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x64.ActiveCfg = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x64.Build.0 = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x86.ActiveCfg = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|ARM64.Build.0 = Debug|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x64.ActiveCfg = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x64.Build.0 = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x86.ActiveCfg = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|ARM64.ActiveCfg = Release|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|ARM64.Build.0 = Release|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x64.ActiveCfg = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x64.Build.0 = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x86.ActiveCfg = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|ARM64.ActiveCfg = Debug|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|ARM64.Build.0 = Debug|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x64.ActiveCfg = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x64.Build.0 = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x86.ActiveCfg = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|ARM64.ActiveCfg = Release|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|ARM64.Build.0 = Release|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x64.ActiveCfg = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x64.Build.0 = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x86.ActiveCfg = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|ARM64.Build.0 = Debug|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x64.ActiveCfg = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x64.Build.0 = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x86.ActiveCfg = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|ARM64.ActiveCfg = Release|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|ARM64.Build.0 = Release|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x64.ActiveCfg = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x64.Build.0 = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x86.ActiveCfg = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|ARM64.Build.0 = Debug|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x64.ActiveCfg = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x64.Build.0 = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x86.ActiveCfg = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|ARM64.ActiveCfg = Release|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|ARM64.Build.0 = Release|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x64.ActiveCfg = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x64.Build.0 = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x86.ActiveCfg = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|ARM64.Build.0 = Debug|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x64.ActiveCfg = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x64.Build.0 = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x86.ActiveCfg = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|ARM64.ActiveCfg = Release|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|ARM64.Build.0 = Release|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x64.ActiveCfg = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x64.Build.0 = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x86.ActiveCfg = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|ARM64.Build.0 = Debug|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x64.ActiveCfg = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x64.Build.0 = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x86.ActiveCfg = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|ARM64.ActiveCfg = Release|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|ARM64.Build.0 = Release|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x64.ActiveCfg = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x64.Build.0 = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x86.ActiveCfg = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|ARM64.Build.0 = Debug|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x64.ActiveCfg = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x64.Build.0 = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x86.ActiveCfg = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|ARM64.ActiveCfg = Release|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|ARM64.Build.0 = Release|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x64.ActiveCfg = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x64.Build.0 = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x86.ActiveCfg = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|ARM64.ActiveCfg = Debug|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|ARM64.Build.0 = Debug|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x64.ActiveCfg = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x64.Build.0 = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x86.ActiveCfg = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|ARM64.ActiveCfg = Release|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|ARM64.Build.0 = Release|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x64.ActiveCfg = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x64.Build.0 = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x86.ActiveCfg = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|ARM64.Build.0 = Debug|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x64.ActiveCfg = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x64.Build.0 = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x86.ActiveCfg = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|ARM64.ActiveCfg = Release|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|ARM64.Build.0 = Release|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x64.ActiveCfg = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x64.Build.0 = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x86.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|ARM64.Build.0 = Debug|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.Build.0 = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x86.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|ARM64.ActiveCfg = Release|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|ARM64.Build.0 = Release|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.Build.0 = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x86.ActiveCfg = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|ARM64.Build.0 = Debug|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x64.ActiveCfg = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x64.Build.0 = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x86.ActiveCfg = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|ARM64.ActiveCfg = Release|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|ARM64.Build.0 = Release|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x64.ActiveCfg = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x64.Build.0 = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x86.ActiveCfg = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|ARM64.Build.0 = Debug|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x64.ActiveCfg = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x64.Build.0 = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x86.ActiveCfg = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|ARM64.ActiveCfg = Release|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|ARM64.Build.0 = Release|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x64.ActiveCfg = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x64.Build.0 = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x86.ActiveCfg = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|ARM64.Build.0 = Debug|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x64.ActiveCfg = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x64.Build.0 = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x86.ActiveCfg = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|ARM64.ActiveCfg = Release|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|ARM64.Build.0 = Release|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x64.ActiveCfg = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x64.Build.0 = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x86.ActiveCfg = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|ARM64.Build.0 = Debug|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x64.ActiveCfg = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x64.Build.0 = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x86.ActiveCfg = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|ARM64.ActiveCfg = Release|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|ARM64.Build.0 = Release|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x64.ActiveCfg = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x64.Build.0 = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x86.ActiveCfg = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|ARM64.Build.0 = Debug|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x64.ActiveCfg = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x64.Build.0 = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x86.ActiveCfg = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|ARM64.ActiveCfg = Release|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|ARM64.Build.0 = Release|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x64.ActiveCfg = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x64.Build.0 = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x86.ActiveCfg = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|ARM64.Build.0 = Debug|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x64.ActiveCfg = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x64.Build.0 = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x86.ActiveCfg = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|ARM64.ActiveCfg = Release|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|ARM64.Build.0 = Release|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x64.ActiveCfg = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x64.Build.0 = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x86.ActiveCfg = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|ARM64.Build.0 = Debug|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x64.ActiveCfg = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x64.Build.0 = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x86.ActiveCfg = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|ARM64.ActiveCfg = Release|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|ARM64.Build.0 = Release|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x64.ActiveCfg = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x64.Build.0 = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x86.ActiveCfg = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|ARM64.Build.0 = Debug|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x64.ActiveCfg = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x64.Build.0 = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x86.ActiveCfg = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|ARM64.ActiveCfg = Release|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|ARM64.Build.0 = Release|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x64.ActiveCfg = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x64.Build.0 = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x86.ActiveCfg = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|ARM64.Build.0 = Debug|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x64.ActiveCfg = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x64.Build.0 = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x86.ActiveCfg = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|ARM64.ActiveCfg = Release|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|ARM64.Build.0 = Release|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x64.ActiveCfg = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x64.Build.0 = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x86.ActiveCfg = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|ARM64.Build.0 = Debug|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x64.ActiveCfg = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x64.Build.0 = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x86.ActiveCfg = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|ARM64.ActiveCfg = Release|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|ARM64.Build.0 = Release|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x64.ActiveCfg = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x64.Build.0 = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x86.ActiveCfg = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|ARM64.Build.0 = Debug|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x64.ActiveCfg = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x64.Build.0 = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x86.ActiveCfg = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|ARM64.ActiveCfg = Release|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|ARM64.Build.0 = Release|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x64.ActiveCfg = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x64.Build.0 = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x86.ActiveCfg = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|ARM64.Build.0 = Debug|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x64.ActiveCfg = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x64.Build.0 = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x86.ActiveCfg = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|ARM64.ActiveCfg = Release|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|ARM64.Build.0 = Release|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x64.ActiveCfg = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x64.Build.0 = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x86.ActiveCfg = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|ARM64.ActiveCfg = Debug|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|ARM64.Build.0 = Debug|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x64.ActiveCfg = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x64.Build.0 = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x86.ActiveCfg = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|ARM64.ActiveCfg = Release|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|ARM64.Build.0 = Release|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x64.ActiveCfg = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x64.Build.0 = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x86.ActiveCfg = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|ARM64.Build.0 = Debug|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x64.ActiveCfg = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x64.Build.0 = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x86.ActiveCfg = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|ARM64.ActiveCfg = Release|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|ARM64.Build.0 = Release|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x64.ActiveCfg = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x64.Build.0 = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x86.ActiveCfg = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|ARM64.Build.0 = Debug|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x64.ActiveCfg = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x64.Build.0 = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x86.ActiveCfg = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|ARM64.ActiveCfg = Release|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|ARM64.Build.0 = Release|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x64.ActiveCfg = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x64.Build.0 = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x86.ActiveCfg = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|ARM64.Build.0 = Debug|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x64.ActiveCfg = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x64.Build.0 = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x86.ActiveCfg = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|ARM64.ActiveCfg = Release|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|ARM64.Build.0 = Release|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x64.ActiveCfg = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x64.Build.0 = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x86.ActiveCfg = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|ARM64.Build.0 = Debug|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x64.ActiveCfg = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x64.Build.0 = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x86.ActiveCfg = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|ARM64.ActiveCfg = Release|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|ARM64.Build.0 = Release|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x64.ActiveCfg = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x64.Build.0 = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x86.ActiveCfg = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|ARM64.Build.0 = Debug|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x64.ActiveCfg = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x64.Build.0 = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x86.ActiveCfg = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|ARM64.ActiveCfg = Release|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|ARM64.Build.0 = Release|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x64.ActiveCfg = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x64.Build.0 = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x86.ActiveCfg = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|ARM64.Build.0 = Debug|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x64.ActiveCfg = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x64.Build.0 = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x86.ActiveCfg = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|ARM64.ActiveCfg = Release|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|ARM64.Build.0 = Release|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x64.ActiveCfg = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x64.Build.0 = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x86.ActiveCfg = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|ARM64.Build.0 = Debug|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x64.ActiveCfg = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x64.Build.0 = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x86.ActiveCfg = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|ARM64.ActiveCfg = Release|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|ARM64.Build.0 = Release|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x64.ActiveCfg = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x64.Build.0 = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x86.ActiveCfg = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|ARM64.ActiveCfg = Debug|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|ARM64.Build.0 = Debug|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x64.ActiveCfg = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x64.Build.0 = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x86.ActiveCfg = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|ARM64.ActiveCfg = Release|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|ARM64.Build.0 = Release|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x64.ActiveCfg = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x64.Build.0 = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x86.ActiveCfg = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|ARM64.Build.0 = Debug|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x64.ActiveCfg = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x64.Build.0 = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x86.ActiveCfg = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|ARM64.ActiveCfg = Release|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|ARM64.Build.0 = Release|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x64.ActiveCfg = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x64.Build.0 = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x86.ActiveCfg = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|ARM64.ActiveCfg = Debug|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|ARM64.Build.0 = Debug|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x64.ActiveCfg = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x64.Build.0 = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x86.ActiveCfg = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|ARM64.ActiveCfg = Release|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|ARM64.Build.0 = Release|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x64.ActiveCfg = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x64.Build.0 = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x86.ActiveCfg = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|ARM64.Build.0 = Debug|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.ActiveCfg = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.Build.0 = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x86.ActiveCfg = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|ARM64.ActiveCfg = Release|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|ARM64.Build.0 = Release|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.ActiveCfg = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.Build.0 = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x86.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|ARM64.Build.0 = Debug|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.ActiveCfg = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.Build.0 = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x86.ActiveCfg = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x86.Build.0 = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|ARM64.ActiveCfg = Release|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|ARM64.Build.0 = Release|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.Build.0 = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x86.ActiveCfg = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x86.Build.0 = Release|Win32 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|ARM64.Build.0 = Debug|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x64.ActiveCfg = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x64.Build.0 = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x86.ActiveCfg = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|ARM64.ActiveCfg = Release|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|ARM64.Build.0 = Release|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x64.ActiveCfg = Release|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x64.Build.0 = Release|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x86.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|ARM64.Build.0 = Debug|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.ActiveCfg = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.Build.0 = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x86.ActiveCfg = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x86.Build.0 = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|ARM64.ActiveCfg = Release|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|ARM64.Build.0 = Release|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.Build.0 = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x86.ActiveCfg = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x86.Build.0 = Release|Win32 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|ARM64.Build.0 = Debug|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x64.ActiveCfg = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x64.Build.0 = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x86.ActiveCfg = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|ARM64.ActiveCfg = Release|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|ARM64.Build.0 = Release|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x64.ActiveCfg = Release|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x64.Build.0 = Release|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x86.ActiveCfg = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|ARM64.Build.0 = Debug|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x64.ActiveCfg = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x64.Build.0 = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x86.ActiveCfg = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|ARM64.ActiveCfg = Release|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|ARM64.Build.0 = Release|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x64.ActiveCfg = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x64.Build.0 = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x86.ActiveCfg = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|ARM64.Build.0 = Debug|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x64.ActiveCfg = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x64.Build.0 = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x86.ActiveCfg = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|ARM64.ActiveCfg = Release|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|ARM64.Build.0 = Release|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x64.ActiveCfg = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x64.Build.0 = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x86.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|ARM64.Build.0 = Debug|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x64.ActiveCfg = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x64.Build.0 = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x86.ActiveCfg = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|ARM64.ActiveCfg = Release|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|ARM64.Build.0 = Release|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x64.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x64.Build.0 = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x86.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x86.Build.0 = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|ARM64.Build.0 = Debug|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x64.ActiveCfg = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x64.Build.0 = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x86.ActiveCfg = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|ARM64.ActiveCfg = Release|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|ARM64.Build.0 = Release|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x64.ActiveCfg = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x64.Build.0 = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x86.ActiveCfg = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|ARM64.ActiveCfg = Debug|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|ARM64.Build.0 = Debug|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x64.ActiveCfg = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x64.Build.0 = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x86.ActiveCfg = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|ARM64.ActiveCfg = Release|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|ARM64.Build.0 = Release|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x64.ActiveCfg = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x64.Build.0 = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x86.ActiveCfg = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|ARM64.Build.0 = Debug|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x64.ActiveCfg = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x64.Build.0 = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x86.ActiveCfg = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|ARM64.ActiveCfg = Release|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|ARM64.Build.0 = Release|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x64.ActiveCfg = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x64.Build.0 = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x86.ActiveCfg = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|ARM64.Build.0 = Debug|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x64.ActiveCfg = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x64.Build.0 = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x86.ActiveCfg = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|ARM64.ActiveCfg = Release|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|ARM64.Build.0 = Release|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x64.ActiveCfg = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x64.Build.0 = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x86.ActiveCfg = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|ARM64.ActiveCfg = Debug|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|ARM64.Build.0 = Debug|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x64.ActiveCfg = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x64.Build.0 = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x86.ActiveCfg = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|ARM64.ActiveCfg = Release|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|ARM64.Build.0 = Release|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x64.ActiveCfg = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x64.Build.0 = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x86.ActiveCfg = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|ARM64.Build.0 = Debug|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x64.ActiveCfg = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x64.Build.0 = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x86.ActiveCfg = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|ARM64.ActiveCfg = Release|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|ARM64.Build.0 = Release|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x64.ActiveCfg = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x64.Build.0 = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x86.ActiveCfg = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|ARM64.Build.0 = Debug|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x64.ActiveCfg = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x64.Build.0 = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x86.ActiveCfg = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|ARM64.ActiveCfg = Release|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|ARM64.Build.0 = Release|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x64.ActiveCfg = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x64.Build.0 = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x86.ActiveCfg = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|ARM64.Build.0 = Debug|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x64.ActiveCfg = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x64.Build.0 = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x86.ActiveCfg = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|ARM64.ActiveCfg = Release|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|ARM64.Build.0 = Release|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x64.ActiveCfg = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x64.Build.0 = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x86.ActiveCfg = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|ARM64.Build.0 = Debug|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x64.ActiveCfg = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x64.Build.0 = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x86.ActiveCfg = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|ARM64.ActiveCfg = Release|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|ARM64.Build.0 = Release|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x64.ActiveCfg = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x64.Build.0 = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x86.ActiveCfg = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|ARM64.Build.0 = Debug|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x64.ActiveCfg = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x64.Build.0 = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x86.ActiveCfg = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|ARM64.ActiveCfg = Release|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|ARM64.Build.0 = Release|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x64.ActiveCfg = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x64.Build.0 = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x86.ActiveCfg = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|ARM64.Build.0 = Debug|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x64.ActiveCfg = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x64.Build.0 = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x86.ActiveCfg = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|ARM64.ActiveCfg = Release|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|ARM64.Build.0 = Release|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x64.ActiveCfg = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x64.Build.0 = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x86.ActiveCfg = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|ARM64.Build.0 = Debug|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x64.ActiveCfg = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x64.Build.0 = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x86.ActiveCfg = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|ARM64.ActiveCfg = Release|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|ARM64.Build.0 = Release|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x64.ActiveCfg = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x64.Build.0 = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x86.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|ARM64.Build.0 = Debug|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x64.ActiveCfg = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x64.Build.0 = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x86.ActiveCfg = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x86.Build.0 = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|ARM64.ActiveCfg = Release|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|ARM64.Build.0 = Release|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x64.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x64.Build.0 = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x86.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x86.Build.0 = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|ARM64.Build.0 = Debug|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x64.ActiveCfg = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x64.Build.0 = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x86.ActiveCfg = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|ARM64.ActiveCfg = Release|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|ARM64.Build.0 = Release|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x64.ActiveCfg = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x64.Build.0 = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x86.ActiveCfg = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x86.Build.0 = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|ARM64.Build.0 = Debug|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x64.ActiveCfg = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x64.Build.0 = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x86.ActiveCfg = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x86.Build.0 = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|ARM64.ActiveCfg = Release|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|ARM64.Build.0 = Release|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x64.ActiveCfg = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x64.Build.0 = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x86.ActiveCfg = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x86.Build.0 = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|ARM64.Build.0 = Debug|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x64.ActiveCfg = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x64.Build.0 = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x86.ActiveCfg = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x86.Build.0 = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|ARM64.ActiveCfg = Release|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|ARM64.Build.0 = Release|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x64.ActiveCfg = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x64.Build.0 = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x86.ActiveCfg = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x86.Build.0 = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|ARM64.Build.0 = Debug|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x64.ActiveCfg = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x64.Build.0 = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x86.ActiveCfg = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x86.Build.0 = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|ARM64.ActiveCfg = Release|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|ARM64.Build.0 = Release|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x64.ActiveCfg = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x64.Build.0 = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x86.ActiveCfg = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x86.Build.0 = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|ARM64.ActiveCfg = Debug|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Debug|ARM64.Build.0 = Debug|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x64.ActiveCfg = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x64.Build.0 = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x86.ActiveCfg = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x86.Build.0 = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|ARM64.ActiveCfg = Release|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Release|ARM64.Build.0 = Release|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Release|x64.ActiveCfg = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x64.Build.0 = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x86.ActiveCfg = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x86.Build.0 = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|ARM64.Build.0 = Debug|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x64.ActiveCfg = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x64.Build.0 = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x86.ActiveCfg = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x86.Build.0 = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|ARM64.ActiveCfg = Release|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|ARM64.Build.0 = Release|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x64.ActiveCfg = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x64.Build.0 = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x86.ActiveCfg = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x86.Build.0 = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|ARM64.Build.0 = Debug|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x64.ActiveCfg = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x64.Build.0 = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x86.ActiveCfg = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x86.Build.0 = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|ARM64.ActiveCfg = Release|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|ARM64.Build.0 = Release|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x64.ActiveCfg = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x64.Build.0 = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x86.ActiveCfg = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x86.Build.0 = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|ARM64.Build.0 = Debug|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x64.ActiveCfg = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x64.Build.0 = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x86.ActiveCfg = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x86.Build.0 = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|ARM64.ActiveCfg = Release|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|ARM64.Build.0 = Release|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x64.ActiveCfg = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x64.Build.0 = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x86.ActiveCfg = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x86.Build.0 = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|ARM64.ActiveCfg = Debug|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|ARM64.Build.0 = Debug|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x64.ActiveCfg = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x64.Build.0 = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x86.ActiveCfg = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x86.Build.0 = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|ARM64.ActiveCfg = Release|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|ARM64.Build.0 = Release|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x64.ActiveCfg = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x64.Build.0 = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x86.ActiveCfg = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x86.Build.0 = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|ARM64.Build.0 = Debug|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x64.ActiveCfg = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x64.Build.0 = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x86.ActiveCfg = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x86.Build.0 = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|ARM64.ActiveCfg = Release|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|ARM64.Build.0 = Release|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x64.ActiveCfg = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x64.Build.0 = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x86.ActiveCfg = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x86.Build.0 = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|ARM64.Build.0 = Debug|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x64.ActiveCfg = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x64.Build.0 = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x86.ActiveCfg = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x86.Build.0 = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|ARM64.ActiveCfg = Release|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|ARM64.Build.0 = Release|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x64.ActiveCfg = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x64.Build.0 = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x86.ActiveCfg = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x86.Build.0 = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|ARM64.ActiveCfg = Debug|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|ARM64.Build.0 = Debug|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x64.ActiveCfg = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x64.Build.0 = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x86.ActiveCfg = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x86.Build.0 = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|ARM64.ActiveCfg = Release|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|ARM64.Build.0 = Release|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x64.ActiveCfg = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x64.Build.0 = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x86.ActiveCfg = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x86.Build.0 = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|ARM64.ActiveCfg = Debug|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|ARM64.Build.0 = Debug|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x64.ActiveCfg = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x64.Build.0 = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x86.ActiveCfg = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x86.Build.0 = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|ARM64.ActiveCfg = Release|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|ARM64.Build.0 = Release|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x64.ActiveCfg = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x64.Build.0 = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x86.ActiveCfg = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x86.Build.0 = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|ARM64.Build.0 = Debug|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x64.ActiveCfg = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x64.Build.0 = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x86.ActiveCfg = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x86.Build.0 = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|ARM64.ActiveCfg = Release|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|ARM64.Build.0 = Release|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x64.ActiveCfg = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x64.Build.0 = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x86.ActiveCfg = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x86.Build.0 = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|ARM64.Build.0 = Debug|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x64.ActiveCfg = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x64.Build.0 = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x86.ActiveCfg = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x86.Build.0 = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|ARM64.ActiveCfg = Release|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|ARM64.Build.0 = Release|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x64.ActiveCfg = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x64.Build.0 = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x86.ActiveCfg = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x86.Build.0 = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|ARM64.Build.0 = Debug|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x64.ActiveCfg = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x64.Build.0 = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x86.ActiveCfg = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x86.Build.0 = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|ARM64.ActiveCfg = Release|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|ARM64.Build.0 = Release|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x64.ActiveCfg = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x64.Build.0 = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x86.ActiveCfg = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x86.Build.0 = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|ARM64.Build.0 = Debug|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x64.ActiveCfg = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x64.Build.0 = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x86.ActiveCfg = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x86.Build.0 = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|ARM64.ActiveCfg = Release|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|ARM64.Build.0 = Release|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x64.ActiveCfg = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x64.Build.0 = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x86.ActiveCfg = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x86.Build.0 = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|ARM64.Build.0 = Debug|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x64.ActiveCfg = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x64.Build.0 = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x86.ActiveCfg = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x86.Build.0 = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|ARM64.ActiveCfg = Release|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|ARM64.Build.0 = Release|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x64.ActiveCfg = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x64.Build.0 = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x86.ActiveCfg = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x86.Build.0 = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|ARM64.Build.0 = Debug|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x64.ActiveCfg = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x64.Build.0 = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x86.ActiveCfg = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x86.Build.0 = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|ARM64.ActiveCfg = Release|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|ARM64.Build.0 = Release|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x64.ActiveCfg = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x64.Build.0 = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x86.ActiveCfg = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x86.Build.0 = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|ARM64.ActiveCfg = Debug|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|ARM64.Build.0 = Debug|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x64.ActiveCfg = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x64.Build.0 = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x86.ActiveCfg = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x86.Build.0 = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|ARM64.ActiveCfg = Release|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|ARM64.Build.0 = Release|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x64.ActiveCfg = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x64.Build.0 = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x86.ActiveCfg = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x86.Build.0 = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|ARM64.Build.0 = Debug|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x64.ActiveCfg = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x64.Build.0 = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x86.ActiveCfg = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x86.Build.0 = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|ARM64.ActiveCfg = Release|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|ARM64.Build.0 = Release|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x64.ActiveCfg = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x64.Build.0 = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x86.ActiveCfg = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x86.Build.0 = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|ARM64.Build.0 = Debug|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x64.ActiveCfg = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x64.Build.0 = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x86.ActiveCfg = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x86.Build.0 = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|ARM64.ActiveCfg = Release|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|ARM64.Build.0 = Release|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x64.ActiveCfg = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x64.Build.0 = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x86.ActiveCfg = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x86.Build.0 = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|ARM64.Build.0 = Debug|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x64.ActiveCfg = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x64.Build.0 = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x86.ActiveCfg = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|ARM64.ActiveCfg = Release|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|ARM64.Build.0 = Release|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x64.ActiveCfg = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x64.Build.0 = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x86.ActiveCfg = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|ARM64.Build.0 = Debug|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x64.ActiveCfg = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x64.Build.0 = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x86.ActiveCfg = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|ARM64.ActiveCfg = Release|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|ARM64.Build.0 = Release|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x64.ActiveCfg = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x64.Build.0 = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x86.ActiveCfg = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|ARM64.Build.0 = Debug|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x64.ActiveCfg = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x64.Build.0 = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x86.ActiveCfg = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|ARM64.ActiveCfg = Release|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|ARM64.Build.0 = Release|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x64.ActiveCfg = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x64.Build.0 = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x86.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|ARM64.Build.0 = Debug|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x64.ActiveCfg = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x64.Build.0 = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x86.ActiveCfg = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x86.Build.0 = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|ARM64.ActiveCfg = Release|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|ARM64.Build.0 = Release|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x64.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x64.Build.0 = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x86.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x86.Build.0 = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|ARM64.ActiveCfg = Debug|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|ARM64.Build.0 = Debug|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x64.ActiveCfg = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x64.Build.0 = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x86.ActiveCfg = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x86.Build.0 = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|ARM64.ActiveCfg = Release|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|ARM64.Build.0 = Release|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x64.ActiveCfg = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x64.Build.0 = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x86.ActiveCfg = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x86.Build.0 = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|ARM64.Build.0 = Debug|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x64.ActiveCfg = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x64.Build.0 = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x86.ActiveCfg = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x86.Build.0 = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|ARM64.ActiveCfg = Release|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|ARM64.Build.0 = Release|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x64.ActiveCfg = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x64.Build.0 = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x86.ActiveCfg = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x86.Build.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.Build.0 = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.Deploy.0 = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.ActiveCfg = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.Build.0 = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.Deploy.0 = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.ActiveCfg = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.Build.0 = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.Deploy.0 = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.ActiveCfg = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.Build.0 = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.Deploy.0 = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.ActiveCfg = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.Build.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.Deploy.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.ActiveCfg = Release|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.Build.0 = Release|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.Deploy.0 = Release|x86 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|ARM64.Build.0 = Debug|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x64.ActiveCfg = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x64.Build.0 = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x86.ActiveCfg = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x86.Build.0 = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|ARM64.ActiveCfg = Release|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|ARM64.Build.0 = Release|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x64.ActiveCfg = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x64.Build.0 = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x86.ActiveCfg = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x86.Build.0 = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|ARM64.Build.0 = Debug|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x64.ActiveCfg = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x64.Build.0 = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x86.ActiveCfg = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x86.Build.0 = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|ARM64.ActiveCfg = Release|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|ARM64.Build.0 = Release|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x64.ActiveCfg = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x64.Build.0 = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x86.ActiveCfg = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x86.Build.0 = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|ARM64.ActiveCfg = Debug|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|ARM64.Build.0 = Debug|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x64.ActiveCfg = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x64.Build.0 = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x86.ActiveCfg = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x86.Build.0 = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|ARM64.ActiveCfg = Release|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|ARM64.Build.0 = Release|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x64.ActiveCfg = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x64.Build.0 = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x86.ActiveCfg = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x86.Build.0 = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|ARM64.Build.0 = Debug|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x64.ActiveCfg = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x64.Build.0 = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x86.ActiveCfg = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x86.Build.0 = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|ARM64.ActiveCfg = Release|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|ARM64.Build.0 = Release|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x64.ActiveCfg = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x64.Build.0 = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x86.ActiveCfg = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x86.Build.0 = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|ARM64.Build.0 = Debug|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x64.ActiveCfg = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x64.Build.0 = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x86.ActiveCfg = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x86.Build.0 = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|ARM64.ActiveCfg = Release|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|ARM64.Build.0 = Release|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x64.ActiveCfg = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x64.Build.0 = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x86.ActiveCfg = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x86.Build.0 = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|ARM64.Build.0 = Debug|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x64.ActiveCfg = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x64.Build.0 = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x86.ActiveCfg = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x86.Build.0 = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|ARM64.ActiveCfg = Release|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|ARM64.Build.0 = Release|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x64.ActiveCfg = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x64.Build.0 = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x86.ActiveCfg = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x86.Build.0 = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|ARM64.ActiveCfg = Debug|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|ARM64.Build.0 = Debug|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x64.ActiveCfg = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x64.Build.0 = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x86.ActiveCfg = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x86.Build.0 = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|ARM64.ActiveCfg = Release|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|ARM64.Build.0 = Release|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x64.ActiveCfg = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x64.Build.0 = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x86.ActiveCfg = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x86.Build.0 = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|ARM64.ActiveCfg = Debug|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|ARM64.Build.0 = Debug|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x64.ActiveCfg = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x64.Build.0 = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x86.ActiveCfg = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x86.Build.0 = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|ARM64.ActiveCfg = Release|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|ARM64.Build.0 = Release|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x64.ActiveCfg = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x64.Build.0 = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x86.ActiveCfg = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x86.Build.0 = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|ARM64.Build.0 = Debug|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x64.ActiveCfg = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x64.Build.0 = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x86.ActiveCfg = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x86.Build.0 = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|ARM64.ActiveCfg = Release|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|ARM64.Build.0 = Release|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x64.ActiveCfg = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x64.Build.0 = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x86.ActiveCfg = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x86.Build.0 = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|ARM64.Build.0 = Debug|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x64.ActiveCfg = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x64.Build.0 = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x86.ActiveCfg = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x86.Build.0 = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|ARM64.ActiveCfg = Release|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|ARM64.Build.0 = Release|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x64.ActiveCfg = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x64.Build.0 = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x86.ActiveCfg = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x86.Build.0 = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|ARM64.Build.0 = Debug|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x64.ActiveCfg = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x64.Build.0 = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x86.ActiveCfg = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x86.Build.0 = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|ARM64.ActiveCfg = Release|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|ARM64.Build.0 = Release|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x64.ActiveCfg = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x64.Build.0 = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x86.ActiveCfg = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x86.Build.0 = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|ARM64.Build.0 = Debug|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x64.ActiveCfg = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x64.Build.0 = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x86.ActiveCfg = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x86.Build.0 = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|ARM64.ActiveCfg = Release|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|ARM64.Build.0 = Release|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x64.ActiveCfg = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x64.Build.0 = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x86.ActiveCfg = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x86.Build.0 = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|ARM64.ActiveCfg = Debug|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|ARM64.Build.0 = Debug|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x64.ActiveCfg = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x64.Build.0 = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x86.ActiveCfg = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x86.Build.0 = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|ARM64.ActiveCfg = Release|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|ARM64.Build.0 = Release|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x64.ActiveCfg = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x64.Build.0 = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x86.ActiveCfg = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x86.Build.0 = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|ARM64.Build.0 = Debug|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x64.ActiveCfg = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x64.Build.0 = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x86.ActiveCfg = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x86.Build.0 = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|ARM64.ActiveCfg = Release|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|ARM64.Build.0 = Release|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x64.ActiveCfg = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x64.Build.0 = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x86.ActiveCfg = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x86.Build.0 = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|ARM64.Build.0 = Debug|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x64.ActiveCfg = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x64.Build.0 = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x86.ActiveCfg = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x86.Build.0 = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|ARM64.ActiveCfg = Release|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|ARM64.Build.0 = Release|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x64.ActiveCfg = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x64.Build.0 = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x86.ActiveCfg = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x86.Build.0 = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|ARM64.Build.0 = Debug|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x64.ActiveCfg = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x64.Build.0 = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x86.ActiveCfg = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x86.Build.0 = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|ARM64.ActiveCfg = Release|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|ARM64.Build.0 = Release|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x64.ActiveCfg = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x64.Build.0 = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.ActiveCfg = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.Build.0 = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.Build.0 = Debug|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x64.ActiveCfg = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x64.Build.0 = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x86.ActiveCfg = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x86.Build.0 = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|ARM64.ActiveCfg = Release|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|ARM64.Build.0 = Release|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x64.ActiveCfg = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x64.Build.0 = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x86.ActiveCfg = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x86.Build.0 = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|ARM64.Build.0 = Debug|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x64.ActiveCfg = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x64.Build.0 = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x86.ActiveCfg = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x86.Build.0 = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|ARM64.ActiveCfg = Release|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|ARM64.Build.0 = Release|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x64.ActiveCfg = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x64.Build.0 = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x86.ActiveCfg = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x86.Build.0 = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|ARM64.Build.0 = Debug|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x64.ActiveCfg = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x64.Build.0 = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x86.ActiveCfg = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x86.Build.0 = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|ARM64.ActiveCfg = Release|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|ARM64.Build.0 = Release|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x64.ActiveCfg = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x64.Build.0 = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x86.ActiveCfg = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x86.Build.0 = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|ARM64.Build.0 = Debug|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x64.ActiveCfg = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x64.Build.0 = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x86.ActiveCfg = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x86.Build.0 = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|ARM64.ActiveCfg = Release|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|ARM64.Build.0 = Release|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x64.ActiveCfg = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x64.Build.0 = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x86.ActiveCfg = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x86.Build.0 = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|ARM64.Build.0 = Debug|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x64.ActiveCfg = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x64.Build.0 = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x86.ActiveCfg = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x86.Build.0 = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|ARM64.ActiveCfg = Release|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|ARM64.Build.0 = Release|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x64.ActiveCfg = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x64.Build.0 = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x86.ActiveCfg = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x86.Build.0 = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|ARM64.ActiveCfg = Debug|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|ARM64.Build.0 = Debug|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x64.ActiveCfg = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x64.Build.0 = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x86.ActiveCfg = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x86.Build.0 = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|ARM64.ActiveCfg = Release|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|ARM64.Build.0 = Release|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x64.ActiveCfg = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x64.Build.0 = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x86.ActiveCfg = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x86.Build.0 = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|ARM64.Build.0 = Debug|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x64.ActiveCfg = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x64.Build.0 = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x86.ActiveCfg = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x86.Build.0 = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|ARM64.ActiveCfg = Release|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|ARM64.Build.0 = Release|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x64.ActiveCfg = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x64.Build.0 = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x86.ActiveCfg = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x86.Build.0 = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|ARM64.Build.0 = Debug|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x64.ActiveCfg = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x64.Build.0 = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x86.ActiveCfg = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x86.Build.0 = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|ARM64.ActiveCfg = Release|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|ARM64.Build.0 = Release|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x64.ActiveCfg = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x64.Build.0 = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x86.ActiveCfg = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x86.Build.0 = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|ARM64.Build.0 = Debug|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x64.ActiveCfg = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x64.Build.0 = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x86.ActiveCfg = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x86.Build.0 = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|ARM64.ActiveCfg = Release|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|ARM64.Build.0 = Release|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x64.ActiveCfg = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x64.Build.0 = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x86.ActiveCfg = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x86.Build.0 = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|ARM64.Build.0 = Debug|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x64.ActiveCfg = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x64.Build.0 = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x86.ActiveCfg = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x86.Build.0 = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|ARM64.ActiveCfg = Release|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|ARM64.Build.0 = Release|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x64.ActiveCfg = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x64.Build.0 = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x86.ActiveCfg = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x86.Build.0 = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|ARM64.Build.0 = Debug|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x64.ActiveCfg = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x64.Build.0 = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x86.ActiveCfg = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x86.Build.0 = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|ARM64.ActiveCfg = Release|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|ARM64.Build.0 = Release|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x64.ActiveCfg = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x64.Build.0 = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x86.ActiveCfg = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x86.Build.0 = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|ARM64.Build.0 = Debug|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x64.ActiveCfg = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x64.Build.0 = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x86.ActiveCfg = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x86.Build.0 = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|ARM64.ActiveCfg = Release|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|ARM64.Build.0 = Release|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x64.ActiveCfg = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x64.Build.0 = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x86.ActiveCfg = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x86.Build.0 = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|ARM64.Build.0 = Debug|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x64.ActiveCfg = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x64.Build.0 = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x86.ActiveCfg = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x86.Build.0 = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|ARM64.ActiveCfg = Release|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|ARM64.Build.0 = Release|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x64.ActiveCfg = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x64.Build.0 = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x86.ActiveCfg = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x86.Build.0 = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|ARM64.Build.0 = Debug|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x64.ActiveCfg = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x64.Build.0 = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x86.ActiveCfg = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x86.Build.0 = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|ARM64.ActiveCfg = Release|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|ARM64.Build.0 = Release|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x64.ActiveCfg = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x64.Build.0 = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x86.ActiveCfg = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x86.Build.0 = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|ARM64.Build.0 = Debug|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x64.ActiveCfg = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x64.Build.0 = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x86.ActiveCfg = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x86.Build.0 = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|ARM64.ActiveCfg = Release|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|ARM64.Build.0 = Release|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x64.ActiveCfg = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x64.Build.0 = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x86.ActiveCfg = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x86.Build.0 = Release|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|ARM64.Build.0 = Debug|ARM64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|x64.ActiveCfg = Debug|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|x64.Build.0 = Debug|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|x86.ActiveCfg = Debug|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|x86.Build.0 = Debug|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|ARM64.ActiveCfg = Release|ARM64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|ARM64.Build.0 = Release|ARM64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|x64.ActiveCfg = Release|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|x64.Build.0 = Release|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|x86.ActiveCfg = Release|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|x86.Build.0 = Release|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|ARM64.Build.0 = Debug|ARM64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|x64.ActiveCfg = Debug|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|x64.Build.0 = Debug|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|x86.ActiveCfg = Debug|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|x86.Build.0 = Debug|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|ARM64.ActiveCfg = Release|ARM64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|ARM64.Build.0 = Release|ARM64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|x64.ActiveCfg = Release|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|x64.Build.0 = Release|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|x86.ActiveCfg = Release|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|x86.Build.0 = Release|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|ARM64.Build.0 = Debug|ARM64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|x64.ActiveCfg = Debug|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|x64.Build.0 = Debug|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|x86.ActiveCfg = Debug|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|x86.Build.0 = Debug|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|ARM64.ActiveCfg = Release|ARM64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|ARM64.Build.0 = Release|ARM64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|x64.ActiveCfg = Release|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|x64.Build.0 = Release|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|x86.ActiveCfg = Release|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|x86.Build.0 = Release|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|ARM64.Build.0 = Debug|ARM64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|x64.ActiveCfg = Debug|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|x64.Build.0 = Debug|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|x86.ActiveCfg = Debug|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|x86.Build.0 = Debug|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|ARM64.ActiveCfg = Release|ARM64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|ARM64.Build.0 = Release|ARM64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|x64.ActiveCfg = Release|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|x64.Build.0 = Release|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|x86.ActiveCfg = Release|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|x86.Build.0 = Release|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|ARM64.Build.0 = Debug|ARM64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|x64.ActiveCfg = Debug|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|x64.Build.0 = Debug|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|x86.ActiveCfg = Debug|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|x86.Build.0 = Debug|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|ARM64.ActiveCfg = Release|ARM64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|ARM64.Build.0 = Release|ARM64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|x64.ActiveCfg = Release|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|x64.Build.0 = Release|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|x86.ActiveCfg = Release|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|x86.Build.0 = Release|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|ARM64.Build.0 = Debug|ARM64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|x64.ActiveCfg = Debug|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|x64.Build.0 = Debug|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|x86.ActiveCfg = Debug|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|x86.Build.0 = Debug|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|ARM64.ActiveCfg = Release|ARM64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|ARM64.Build.0 = Release|ARM64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|x64.ActiveCfg = Release|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|x64.Build.0 = Release|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|x86.ActiveCfg = Release|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|x86.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {3BB8493E-D18E-4485-A320-CB40F90F55AE} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {1A066C63-64B3-45F8-92FE-664E1CCE8077} = {1AFB6476-670D-4E80-A464-657E01DFF482} {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {51920F1F-C28C-4ADF-8660-4238766796C2} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {2151F984-E006-4A9F-92EF-C6DDE3DC8413} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {6C7F47CC-2151-44A3-A546-41C70025132C} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} = {6C7F47CC-2151-44A3-A546-41C70025132C} {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} = {6C7F47CC-2151-44A3-A546-41C70025132C} {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8} = {6C7F47CC-2151-44A3-A546-41C70025132C} {17DA04DF-E393-4397-9CF0-84DABE11032E} = {1AFB6476-670D-4E80-A464-657E01DFF482} {38BDB927-829B-4C65-9CD9-93FB05D66D65} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {FF742965-9A80-41A5-B042-D6C7D3A21708} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {4AFC9975-2456-4C70-94A4-84073C1CED93} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {59BD9891-3837-438A-958D-ADC7F91F6F7E} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4D971245-7A70-41D5-BAA0-DDB5684CAF51} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {74F1B9ED-F59C-4FE7-B473-7B453E30837E} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {F8B870EB-D5F5-45BA-9CF7-A5C459818820} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {E364F67B-BB12-4E91-B639-355866EBCD8B} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {2F305555-C296-497E-AC20-5FA1B237996A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {AF2349B8-E5B6-4004-9502-687C1C7730B1} = {2F305555-C296-497E-AC20-5FA1B237996A} {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} = {2F305555-C296-497E-AC20-5FA1B237996A} {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A} = {2F305555-C296-497E-AC20-5FA1B237996A} {DA425894-6E13-404F-8DCB-78584EC0557A} = {2F305555-C296-497E-AC20-5FA1B237996A} {060D75DA-2D1C-48E6-A4A1-6F0718B64661} = {2F305555-C296-497E-AC20-5FA1B237996A} {748417CA-F17E-487F-9411-CAFB6D3F4877} = {2F305555-C296-497E-AC20-5FA1B237996A} {217DF501-135C-4E38-BFC8-99D4821032EA} = {2F305555-C296-497E-AC20-5FA1B237996A} {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {F055103B-F80B-4D0C-BF48-057C55620033} = {5A7818A8-109C-4E1C-850D-1A654E234B0E} {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {08C8C05F-0362-41BC-818C-724572DF8B06} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {5D00D290-4016-4CFE-9E41-1E7C724509BA} = {1AFB6476-670D-4E80-A464-657E01DFF482} {4AED67B6-55FD-486F-B917-E543DEE2CB3C} = {1AFB6476-670D-4E80-A464-657E01DFF482} {42851751-CBC8-45A6-97F5-7A0753F7B4D1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E} = {2F305555-C296-497E-AC20-5FA1B237996A} {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD} = {2F305555-C296-497E-AC20-5FA1B237996A} {655C9AF2-18D3-4DA6-80E4-85504A7722BA} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {BA58206B-1493-4C75-BFEA-A85768A1E156} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {1D78B84B-CA39-406C-98F4-71F7EC266CC0} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {03276A39-D4E9-417C-8FFD-200B0EE5E871} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {B81FB7B6-D30E-428F-908A-41422EFC1172} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0F85E674-34AE-443D-954C-8321EB8B93B1} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {632BBE62-5421-49EA-835A-7FFA4F499BD6} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4FA206A5-F69F-4193-BF8F-F6EEB496734C} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} = {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {DA5A6FE9-0040-40CC-83CC-764AE5306590} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0351ADA4-0C32-4652-9BA0-41F7B602372B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} = {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} {6955446D-23F7-4023-9BB3-8657F904AF99} = {1AFB6476-670D-4E80-A464-657E01DFF482} {58736667-1027-4AD7-BFDF-7A3A6474103A} = {5A7818A8-109C-4E1C-850D-1A654E234B0E} {D92131D6-7610-4D60-A7DB-1C169783F83B} = {1AFB6476-670D-4E80-A464-657E01DFF482} {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {0B593A6C-4143-4337-860E-DB5710FB87DB} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {1AFB6476-670D-4E80-A464-657E01DFF482} {5A7818A8-109C-4E1C-850D-1A654E234B0E} = {1AFB6476-670D-4E80-A464-657E01DFF482} {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} = {1AFB6476-670D-4E80-A464-657E01DFF482} {7319089E-46D6-4400-BC65-E39BDF1416EE} = {1AFB6476-670D-4E80-A464-657E01DFF482} {CABA8DFB-823B-4BF2-93AC-3F31984150D9} = {1AFB6476-670D-4E80-A464-657E01DFF482} {98537082-0FDB-40DE-ABD8-0DC5A4269BAB} = {1AFB6476-670D-4E80-A464-657E01DFF482} {B39DC643-4663-475E-B329-03F0C9918D48} = {1AFB6476-670D-4E80-A464-657E01DFF482} {8F62026A-294B-41C6-8839-87463613F216} = {1AFB6476-670D-4E80-A464-657E01DFF482} {C3A17DCA-217B-462C-BB0C-BE086AF80081} = {1AFB6476-670D-4E80-A464-657E01DFF482} {69E1EE8D-143A-4060-9129-4658ACF14AAF} = {2F305555-C296-497E-AC20-5FA1B237996A} {ECC20689-002A-4354-95A6-B58DF089C6FF} = {2F305555-C296-497E-AC20-5FA1B237996A} {4BABF3FE-3451-42FD-873F-3C332E18DCEF} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0648DF05-5DDA-4BE1-B5F2-584926EBDB65} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {E496B7FC-1E99-4BAB-849B-0E8367040B02} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {7F4B3A60-BC27-45A7-8000-68B0B6EA7466} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {8DF78B53-200E-451F-9328-01EB907193AE} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {23D2070D-E4AD-4ADD-85A7-083D9C76AD49} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {62173D9A-6724-4C00-A1C8-FB646480A9EC} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {127F38E0-40AA-4594-B955-5616BF206882} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} = {127F38E0-40AA-4594-B955-5616BF206882} {D940E07F-532C-4FF3-883F-790DA014F19A} = {127F38E0-40AA-4594-B955-5616BF206882} {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {3E424AD2-19E5-4AE6-B833-F53963EB5FC1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {106CBECA-0701-4FC3-838C-9DF816A19AE2} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2D604C07-51FC-46BB-9EB7-75AECC7F5E81} = {106CBECA-0701-4FC3-838C-9DF816A19AE2} {2EDB3EB4-FA92-4BFF-B2D8-566584837231} = {106CBECA-0701-4FC3-838C-9DF816A19AE2} {48804216-2A0E-4168-A6D8-9CD068D14227} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {FF1D7936-842A-4BBB-8BEA-E9FE796DE700} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {AC2857B4-103D-4D6D-9740-926EBF785042} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {11491FD8-F921-48BF-880C-7FEA185B80A1} = {2F305555-C296-497E-AC20-5FA1B237996A} {F40C3397-1834-4530-B2D9-8F8B8456BCDF} = {2F305555-C296-497E-AC20-5FA1B237996A} {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4ED320BC-BA04-4D42-8D15-CBE62151F08B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {322566EF-20DC-43A6-B9F8-616AF942579A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {E94FD11C-0591-456F-899F-EFC0CA548336} = {322566EF-20DC-43A6-B9F8-616AF942579A} {782A61BE-9D85-4081-B35C-1CCC9DCC1E88} = {322566EF-20DC-43A6-B9F8-616AF942579A} {809AA252-E17A-4FA2-B0A1-0450976B763F} = {2F305555-C296-497E-AC20-5FA1B237996A} {133281D8-1BCE-4D07-B31E-796612A9609E} = {2F305555-C296-497E-AC20-5FA1B237996A} {805306FF-A562-4415-8DEF-E493BDC45918} = {2F305555-C296-497E-AC20-5FA1B237996A} {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3} = {2F305555-C296-497E-AC20-5FA1B237996A} {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2} = {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9} = {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} {9F94B303-5E21-4364-9362-64426F8DB932} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E} = {322566EF-20DC-43A6-B9F8-616AF942579A} {F7C8C0F1-5431-4347-89D0-8E5354F93CF2} = {2F305555-C296-497E-AC20-5FA1B237996A} {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC} = {2F305555-C296-497E-AC20-5FA1B237996A} {04B193D7-3E21-46B8-A958-89B63A8A69DE} = {2F305555-C296-497E-AC20-5FA1B237996A} {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {FD464B4C-2F68-4D06-91E7-4208146C41F5} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {020A7474-3601-4160-A159-D7B70B77B15F} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {27718999-C175-450A-861C-89F911E16A88} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {1DBBB112-4BB1-444B-8EBB-E66555C76BA6} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {5A1DB2F0-0715-4B3B-98E6-79BC41540045} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {93B72A06-C8BD-484F-A6F7-C9F280B150BF} = {6C7F47CC-2151-44A3-A546-41C70025132C} {18B3DB45-4FFE-4D01-97D6-5223FEEE1853} = {6C7F47CC-2151-44A3-A546-41C70025132C} {0F14491C-6369-4C45-AAA8-135814E66E6B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {34A354C5-23C7-4343-916C-C52DAF4FC39D} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {3264DF53-C805-4B0C-867C-FCEAF7AEF762} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {31CAD28E-778A-441C-85BC-40AB3EAA2A10} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {25C91A4E-BA4E-467A-85CD-8B62545BF674} = {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1} = {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} {212AD910-8488-4036-BE20-326931B75FB2} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {7AC943C9-52E8-44CF-9083-744D8049667B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A} = {7AC943C9-52E8-44CF-9083-744D8049667B} {92C39820-9F84-4529-BC7D-22AAE514D63B} = {7AC943C9-52E8-44CF-9083-744D8049667B} {515554D1-D004-4F7F-A107-2211FC0F6B2C} = {7AC943C9-52E8-44CF-9083-744D8049667B} {C97D9A5D-206C-454E-997E-009E227D7F02} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {31D1C81D-765F-4446-AA62-E743F6325049} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {B41B888C-7DB8-4747-B262-4062E05A230D} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {AB82E5DD-C32D-4F28-9746-2C780846188E} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {E69B044A-2F8A-45AA-AD0B-256C59421807} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {C604B37E-9D0E-4484-8778-E8B31B0E1B3A} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788} = {1AFB6476-670D-4E80-A464-657E01DFF482} {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97} = {1AFB6476-670D-4E80-A464-657E01DFF482} {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {A1425B53-3D61-4679-8623-E64A0D3D0A48} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {ED9A1AC6-AEB0-4569-A6E9-E1696182B545} = {2F305555-C296-497E-AC20-5FA1B237996A} {5A5DD09D-723A-44D3-8F2B-293584C3D731} = {2F305555-C296-497E-AC20-5FA1B237996A} {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9} = {2F305555-C296-497E-AC20-5FA1B237996A} {54F7C616-FD41-4E62-BFF9-015686914F4D} = {2F305555-C296-497E-AC20-5FA1B237996A} {143F13E3-D2E3-4D83-B035-356612D99956} = {2F305555-C296-497E-AC20-5FA1B237996A} {56CC2F10-6E41-453D-BE16-C593A5E58482} = {2F305555-C296-497E-AC20-5FA1B237996A} {CA5518ED-0458-4B09-8F53-4122B9888655} = {2F305555-C296-497E-AC20-5FA1B237996A} {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D} = {2F305555-C296-497E-AC20-5FA1B237996A} {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA} = {2F305555-C296-497E-AC20-5FA1B237996A} {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2833C9C6-AB32-4048-A5C7-A70898337B57} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {50B82783-242F-42D2-BC03-B3430BF01354} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {A663E672-B26D-4EC0-BEAB-FE2E424AC46F} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {8A08D663-4995-40E3-B42C-3F910625F284} = {322566EF-20DC-43A6-B9F8-616AF942579A} {D962A009-834F-4EEC-AABB-430DF8F98E39} = {322566EF-20DC-43A6-B9F8-616AF942579A} {D9C5DE64-6849-4278-91AD-9660AECF2876} = {322566EF-20DC-43A6-B9F8-616AF942579A} {9873BA05-4C41-4819-9283-CF45D795431B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {FC373B24-3293-453C-AAF5-CF2909DCEE6A} = {9873BA05-4C41-4819-9283-CF45D795431B} {9CE59ED5-7087-4353-88EB-788038A73CEC} = {1AFB6476-670D-4E80-A464-657E01DFF482} {FD86C06A-FB54-4D5E-9831-1CDADF60D45F} = {929C1324-22E8-4412-A9A8-80E85F3985A5} {697C6AF9-0A48-49A9-866C-67DA12384015} = {929C1324-22E8-4412-A9A8-80E85F3985A5} {929C1324-22E8-4412-A9A8-80E85F3985A5} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {9EBAA524-0EDA-470B-95D4-39383285CBB2} = {1AFB6476-670D-4E80-A464-657E01DFF482} {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {D095BE44-1F2E-463E-A494-121892A75EA2} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {90F9FA90-2C20-4004-96E6-F3B78151F5A5} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {3B227528-4BA6-4CAF-B44A-A10C78A64849} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {F5E1146E-B7B3-4E11-85FD-270A500BD78C} = {3B227528-4BA6-4CAF-B44A-A10C78A64849} {3157FA75-86CF-4EE2-8F62-C43F776493C6} = {3B227528-4BA6-4CAF-B44A-A10C78A64849} {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA} = {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} {B9420661-B0E4-4241-ABD4-4A27A1F64250} = {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7} = {2F305555-C296-497E-AC20-5FA1B237996A} {D949EC7D-48A9-4279-95D5-078E7FD1F048} = {2F305555-C296-497E-AC20-5FA1B237996A} {3BAF9C81-A194-4925-A035-5E24A5D1E542} = {2F305555-C296-497E-AC20-5FA1B237996A} {6B04803D-B418-4833-A67E-B0FC966636A5} = {2F305555-C296-497E-AC20-5FA1B237996A} {3940AD4D-F748-4BE4-9083-85769CD553EF} = {2F305555-C296-497E-AC20-5FA1B237996A} {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38} = {2F305555-C296-497E-AC20-5FA1B237996A} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {C3A2F9D1-7930-4EF4-A6FC-7EE0A99821D0} EndGlobalSection EndGlobal
pedrolamas
9d2f9bcff27e71e7c16ee243961e949f821aab2e
0990724e445fae8319aeec5a1eb92f238c088f37
VS2022 changed that with no intervention from me! I think that the UnitTests-FancyZonesEditor project type GUID is actually incorrect and so VS2022 set the correct one when I added the new projects. Nevertheless, I am happy to revert that change if you want me to!
pedrolamas
227
microsoft/PowerToys
29,735
Adds QoiThumbnailProvider and QoiPreviewHandler
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds a new thumbnail provider and preview handler for qoi files (Quite Ok Images). ### Thumbnails ![image](https://github.com/microsoft/PowerToys/assets/85504/6fa0eed2-1359-4c37-bdb5-80e798cc3aae) ### Preview ![image](https://github.com/microsoft/PowerToys/assets/85504/0771e87e-c7a1-4c45-bab7-98295717241f) ### Settings ![image](https://github.com/microsoft/PowerToys/assets/85504/17e0f037-7448-4104-baa9-6b83208fdfc5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #29742 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [X] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [X] **New binaries:** Added on the required places - [X] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [X] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [x] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Local install and manual validation
null
2023-11-07 19:33:33+00:00
2023-11-14 15:41:10+00:00
PowerToys.sln
Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.32014.148 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "runner", "src\runner\runner.vcxproj", "{9412D5C6-2CF2-4FC2-A601-B55508EA9B27}" ProjectSection(ProjectDependencies) = postProject {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} = {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} = {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} {0B593A6C-4143-4337-860E-DB5710FB87DB} = {0B593A6C-4143-4337-860E-DB5710FB87DB} {17DA04DF-E393-4397-9CF0-84DABE11032E} = {17DA04DF-E393-4397-9CF0-84DABE11032E} {217DF501-135C-4E38-BFC8-99D4821032EA} = {217DF501-135C-4E38-BFC8-99D4821032EA} {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} = {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} {48804216-2A0E-4168-A6D8-9CD068D14227} = {48804216-2A0E-4168-A6D8-9CD068D14227} {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} = {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} = {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} {655C9AF2-18D3-4DA6-80E4-85504A7722BA} = {655C9AF2-18D3-4DA6-80E4-85504A7722BA} {69E1EE8D-143A-4060-9129-4658ACF14AAF} = {69E1EE8D-143A-4060-9129-4658ACF14AAF} {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} = {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} = {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} {AF2349B8-E5B6-4004-9502-687C1C7730B1} = {AF2349B8-E5B6-4004-9502-687C1C7730B1} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {B25AC7A5-FB9F-4789-B392-D5C85E948670} {BA58206B-1493-4C75-BFEA-A85768A1E156} = {BA58206B-1493-4C75-BFEA-A85768A1E156} {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D} = {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D} {D940E07F-532C-4FF3-883F-790DA014F19A} = {D940E07F-532C-4FF3-883F-790DA014F19A} {DA425894-6E13-404F-8DCB-78584EC0557A} = {DA425894-6E13-404F-8DCB-78584EC0557A} {E364F67B-BB12-4E91-B639-355866EBCD8B} = {E364F67B-BB12-4E91-B639-355866EBCD8B} {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "modules", "modules", "{4574FDD0-F61D-4376-98BF-E5A1262C11EC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "interface", "interface", "{3BB8493E-D18E-4485-A320-CB40F90F55AE}" ProjectSection(SolutionItems) = preProject src\modules\interface\powertoy_module_interface.h = src\modules\interface\powertoy_module_interface.h EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "fancyzones", "fancyzones", "{D1D6BC88-09AE-4FB4-AD24-5DED46A791DD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZonesLib", "src\modules\fancyzones\FancyZonesLib\FancyZonesLib.vcxproj", "{F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnitTests-FancyZones", "src\modules\fancyzones\FancyZonesTests\UnitTests\UnitTests.vcxproj", "{9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}" ProjectSection(ProjectDependencies) = postProject {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "common", "common", "{1AFB6476-670D-4E80-A464-657E01DFF482}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnitTests-CommonLib", "src\common\UnitTests-CommonLib\UnitTests-CommonLib.vcxproj", "{1A066C63-64B3-45F8-92FE-664E1CCE8077}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FancyZonesEditor", "src\modules\fancyzones\editor\FancyZonesEditor\FancyZonesEditor.csproj", "{5CCC8468-DEC8-4D36-99D4-5C891BEBD481}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "powerrename", "powerrename", "{89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameExt", "src\modules\powerrename\dll\PowerRenameExt.vcxproj", "{B25AC7A5-FB9F-4789-B392-D5C85E948670}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameLib", "src\modules\powerrename\lib\PowerRenameLib.vcxproj", "{51920F1F-C28C-4ADF-8660-4238766796C2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameTest", "src\modules\powerrename\testapp\PowerRenameTest.vcxproj", "{A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameUnitTests", "src\modules\powerrename\unittests\PowerRenameLibUnitTests.vcxproj", "{2151F984-E006-4A9F-92EF-C6DDE3DC8413}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {B25AC7A5-FB9F-4789-B392-D5C85E948670} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ModuleTemplateCompileTest", "tools\project_template\ModuleTemplate\ModuleTemplateCompileTest.vcxproj", "{64A80062-4D8B-4229-8A38-DFA1D7497749}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManager", "src\modules\keyboardmanager\dll\KeyboardManager.vcxproj", "{89F34AF7-1C34-4A72-AA6E-534BCF972BD9}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "imageresizer", "imageresizer", "{6C7F47CC-2151-44A3-A546-41C70025132C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageResizerUI", "src\modules\imageresizer\ui\ImageResizerUI.csproj", "{2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerExt", "src\modules\imageresizer\dll\ImageResizerExt.vcxproj", "{0B43679E-EDFA-4DA0-AD30-F4628B308B1B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageResizerUITest", "src\modules\imageresizer\tests\ImageResizerUITest.csproj", "{E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.ActionRunner", "src\ActionRunner\ActionRunner.vcxproj", "{D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}" ProjectSection(ProjectDependencies) = postProject {17DA04DF-E393-4397-9CF0-84DABE11032E} = {17DA04DF-E393-4397-9CF0-84DABE11032E} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ApplicationUpdate", "src\common\updating\updating.vcxproj", "{17DA04DF-E393-4397-9CF0-84DABE11032E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "keyboardmanager", "keyboardmanager", "{38BDB927-829B-4C65-9CD9-93FB05D66D65}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerCommon", "src\modules\keyboardmanager\common\KeyboardManagerCommon.vcxproj", "{8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "launcher", "launcher", "{C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Infrastructure", "src\modules\launcher\Wox.Infrastructure\Wox.Infrastructure.csproj", "{4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin", "src\modules\launcher\Wox.Plugin\Wox.Plugin.csproj", "{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Test", "src\modules\launcher\Wox.Test\Wox.Test.csproj", "{FF742965-9A80-41A5-B042-D6C7D3A21708}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{4AFC9975-2456-4C70-94A4-84073C1CED93}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Calculator", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Calculator\Microsoft.PowerToys.Run.Plugin.Calculator.csproj", "{59BD9891-3837-438A-958D-ADC7F91F6F7E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.VSCodeWorkspaces", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.VSCodeWorkspaces\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.csproj", "{4D971245-7A70-41D5-BAA0-DDB5684CAF51}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowWalker", "src\modules\launcher\Plugins\Microsoft.Plugin.WindowWalker\Microsoft.Plugin.WindowWalker.csproj", "{74F1B9ED-F59C-4FE7-B473-7B453E30837E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Program", "src\modules\launcher\Plugins\Microsoft.Plugin.Program\Microsoft.Plugin.Program.csproj", "{FDB3555B-58EF-4AE6-B5F1-904719637AB4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Shell", "src\modules\launcher\Plugins\Microsoft.Plugin.Shell\Microsoft.Plugin.Shell.csproj", "{C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Indexer", "src\modules\launcher\Plugins\Microsoft.Plugin.Indexer\Microsoft.Plugin.Indexer.csproj", "{F8B870EB-D5F5-45BA-9CF7-A5C459818820}" ProjectSection(ProjectDependencies) = postProject {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} = {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.Launcher", "src\modules\launcher\Microsoft.Launcher\Microsoft.Launcher.vcxproj", "{E364F67B-BB12-4E91-B639-355866EBCD8B}" ProjectSection(ProjectDependencies) = postProject {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} = {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerLauncher", "src\modules\launcher\PowerLauncher\PowerLauncher.csproj", "{F97E5003-F263-4D4A-A964-0F1F3C82DEF2}" ProjectSection(ProjectDependencies) = postProject {03276A39-D4E9-417C-8FFD-200B0EE5E871} = {03276A39-D4E9-417C-8FFD-200B0EE5E871} {0351ADA4-0C32-4652-9BA0-41F7B602372B} = {0351ADA4-0C32-4652-9BA0-41F7B602372B} {4BABF3FE-3451-42FD-873F-3C332E18DCEF} = {4BABF3FE-3451-42FD-873F-3C332E18DCEF} {4D971245-7A70-41D5-BAA0-DDB5684CAF51} = {4D971245-7A70-41D5-BAA0-DDB5684CAF51} {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} = {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {5043CECE-E6A7-4867-9CBE-02D27D83747A} {59BD9891-3837-438A-958D-ADC7F91F6F7E} = {59BD9891-3837-438A-958D-ADC7F91F6F7E} {5A1DB2F0-0715-4B3B-98E6-79BC41540045} = {5A1DB2F0-0715-4B3B-98E6-79BC41540045} {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} = {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} {74F1B9ED-F59C-4FE7-B473-7B453E30837E} = {74F1B9ED-F59C-4FE7-B473-7B453E30837E} {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} = {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} {9F94B303-5E21-4364-9362-64426F8DB932} = {9F94B303-5E21-4364-9362-64426F8DB932} {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} = {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} = {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} = {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} {D095BE44-1F2E-463E-A494-121892A75EA2} = {D095BE44-1F2E-463E-A494-121892A75EA2} {F8B870EB-D5F5-45BA-9CF7-A5C459818820} = {F8B870EB-D5F5-45BA-9CF7-A5C459818820} {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} = {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {FDB3555B-58EF-4AE6-B5F1-904719637AB4} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{E775CC2C-24CB-48D6-9C3A-BE4CCE0DB17A}" ProjectSection(SolutionItems) = preProject src\tests\win-app-driver\README.md = src\tests\win-app-driver\README.md EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "previewpane", "previewpane", "{2F305555-C296-497E-AC20-5FA1B237996A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PreviewHandlerCommon", "src\modules\previewpane\Common\PreviewHandlerCommon.csproj", "{AF2349B8-E5B6-4004-9502-687C1C7730B1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MarkdownPreviewHandler", "src\modules\previewpane\MarkdownPreviewHandler\MarkdownPreviewHandler.csproj", "{6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-MarkdownPreviewHandler", "src\modules\previewpane\UnitTests-MarkdownPreviewHandler\UnitTests-MarkdownPreviewHandler.csproj", "{A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SvgPreviewHandler", "src\modules\previewpane\SvgPreviewHandler\SvgPreviewHandler.csproj", "{DA425894-6E13-404F-8DCB-78584EC0557A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-SvgPreviewHandler", "src\modules\previewpane\UnitTests-SvgPreviewHandler\UnitTests-SvgPreviewHandler.csproj", "{060D75DA-2D1C-48E6-A4A1-6F0718B64661}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PreviewHandlerCommon", "src\modules\previewpane\UnitTests-PreviewHandlerCommon\UnitTests-PreviewHandlerCommon.csproj", "{748417CA-F17E-487F-9411-CAFB6D3F4877}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "powerpreview", "src\modules\previewpane\powerpreview\powerpreview.vcxproj", "{217DF501-135C-4E38-BFC8-99D4821032EA}" ProjectSection(ProjectDependencies) = postProject {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "settings-ui", "settings-ui", "{C3081D9A-1586-441A-B5F4-ED815B3719C1}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4981CCD1-4CD9-4A49-B240-00AA46493FF8}" ProjectSection(SolutionItems) = preProject src\.editorconfig = src\.editorconfig .vsconfig = .vsconfig Directory.Build.props = Directory.Build.props Directory.Build.targets = Directory.Build.targets Directory.Packages.props = Directory.Packages.props Solution.props = Solution.props EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Settings.UI.Library", "src\settings-ui\Settings.UI.Library\Settings.UI.Library.csproj", "{B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.Interop", "src\common\interop\PowerToys.Interop.vcxproj", "{F055103B-F80B-4D0C-BF48-057C55620033}" ProjectSection(ProjectDependencies) = postProject {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Folder", "src\modules\launcher\Plugins\Microsoft.Plugin.Folder\Microsoft.Plugin.Folder.csproj", "{787B8AA6-CA93-4C84-96FE-DF31110AD1C4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerLauncher.Telemetry", "src\modules\launcher\PowerLauncher.Telemetry\PowerLauncher.Telemetry.csproj", "{08C8C05F-0362-41BC-818C-724572DF8B06}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedTelemetry", "src\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj", "{5D00D290-4016-4CFE-9E41-1E7C724509BA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedCommon", "src\common\ManagedCommon\ManagedCommon.csproj", "{4AED67B6-55FD-486F-B917-E543DEE2CB3C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Program.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Program.UnitTests\Microsoft.Plugin.Program.UnitTests.csproj", "{42851751-CBC8-45A6-97F5-7A0753F7B4D1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-SvgThumbnailProvider", "src\modules\previewpane\UnitTests-SvgThumbnailProvider\UnitTests-SvgThumbnailProvider.csproj", "{1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SvgThumbnailProvider", "src\modules\previewpane\SvgThumbnailProvider\SvgThumbnailProvider.csproj", "{8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ColorPicker", "src\modules\colorPicker\ColorPicker\ColorPicker.vcxproj", "{655C9AF2-18D3-4DA6-80E4-85504A7722BA}" ProjectSection(ProjectDependencies) = postProject {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} = {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ColorPickerUI", "src\modules\colorPicker\ColorPickerUI\ColorPickerUI.csproj", "{BA58206B-1493-4C75-BFEA-A85768A1E156}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "colorpicker", "colorpicker", "{1D78B84B-CA39-406C-98F4-71F7EC266CC0}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Uri", "src\modules\launcher\Plugins\Microsoft.Plugin.Uri\Microsoft.Plugin.Uri.csproj", "{03276A39-D4E9-417C-8FFD-200B0EE5E871}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Uri.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Uri.UnitTests\Microsoft.Plugin.Uri.UnitTests.csproj", "{B81FB7B6-D30E-428F-908A-41422EFC1172}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Settings.UI.UnitTests", "src\settings-ui\Settings.UI.UnitTests\Settings.UI.UnitTests.csproj", "{0F85E674-34AE-443D-954C-8321EB8B93B1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.csproj", "{632BBE62-5421-49EA-835A-7FFA4F499BD6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Folder.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Folder.UnitTests\Microsoft.Plugin.Folder.UnitTests.csproj", "{4FA206A5-F69F-4193-BF8F-F6EEB496734C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTest-ColorPickerUI", "src\modules\colorPicker\UnitTest-ColorPickerUI\UnitTest-ColorPickerUI.csproj", "{090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "spdlog", "src\logging\logging.vcxproj", "{7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.System", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.System\Microsoft.PowerToys.Run.Plugin.System.csproj", "{FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.System.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.System.UnitTests\Microsoft.PowerToys.Run.Plugin.System.UnitTests.csproj", "{DA5A6FE9-0040-40CC-83CC-764AE5306590}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Service", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Service\Microsoft.PowerToys.Run.Plugin.Service.csproj", "{0351ADA4-0C32-4652-9BA0-41F7B602372B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "logger", "src\common\logger\logger.vcxproj", "{D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}" ProjectSection(ProjectDependencies) = postProject {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} = {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SettingsAPI", "src\common\SettingsAPI\SettingsAPI.vcxproj", "{6955446D-23F7-4023-9BB3-8657F904AF99}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Interop.Tests", "src\common\interop\interop-tests\Microsoft.Interop.Tests.csproj", "{58736667-1027-4AD7-BFDF-7A3A6474103A}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "notifications", "notifications", "{D92131D6-7610-4D60-A7DB-1C169783F83B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Notifications", "src\common\notifications\notifications.vcxproj", "{1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BackgroundActivatorDLL", "src\common\notifications\BackgroundActivatorDLL\BackgroundActivatorDLL.vcxproj", "{031AC72E-FA28-4AB7-B690-6F7B9C28AA73}" ProjectSection(ProjectDependencies) = postProject {0B593A6C-4143-4337-860E-DB5710FB87DB} = {0B593A6C-4143-4337-860E-DB5710FB87DB} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BackgroundActivator", "src\common\notifications\BackgroundActivator\BackgroundActivator.vcxproj", "{0B593A6C-4143-4337-860E-DB5710FB87DB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Version", "src\common\version\version.vcxproj", "{CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "interop", "interop", "{5A7818A8-109C-4E1C-850D-1A654E234B0E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "log", "log", "{E4E03FE0-94FD-47C7-88C5-F17D0AA549D3}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "COMUtils", "src\common\COMUtils\COMUtils.vcxproj", "{7319089E-46D6-4400-BC65-E39BDF1416EE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Display", "src\common\Display\Display.vcxproj", "{CABA8DFB-823B-4BF2-93AC-3F31984150D9}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Themes", "src\common\Themes\Themes.vcxproj", "{98537082-0FDB-40DE-ABD8-0DC5A4269BAB}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "utils", "utils", "{B39DC643-4663-475E-B329-03F0C9918D48}" ProjectSection(SolutionItems) = preProject src\common\utils\appMutex.h = src\common\utils\appMutex.h src\common\utils\color.h = src\common\utils\color.h src\common\utils\com_object_factory.h = src\common\utils\com_object_factory.h src\common\utils\elevation.h = src\common\utils\elevation.h src\common\utils\EventLocker.h = src\common\utils\EventLocker.h src\common\utils\EventWaiter.h = src\common\utils\EventWaiter.h src\common\utils\excluded_apps.h = src\common\utils\excluded_apps.h src\common\utils\exec.h = src\common\utils\exec.h src\common\utils\game_mode.h = src\common\utils\game_mode.h src\common\utils\gpo.h = src\common\utils\gpo.h src\common\utils\HDropIterator.h = src\common\utils\HDropIterator.h src\common\utils\HttpClient.h = src\common\utils\HttpClient.h src\common\utils\json.h = src\common\utils\json.h src\common\utils\logger_helper.h = src\common\utils\logger_helper.h src\common\utils\modulesRegistry.h = src\common\utils\modulesRegistry.h src\common\utils\MsiUtils.h = src\common\utils\MsiUtils.h src\common\utils\MsWindowsSettings.h = src\common\utils\MsWindowsSettings.h src\common\utils\os-detect.h = src\common\utils\os-detect.h src\common\utils\package.h = src\common\utils\package.h src\common\utils\ProcessWaiter.h = src\common\utils\ProcessWaiter.h src\common\utils\process_path.h = src\common\utils\process_path.h src\common\utils\registry.h = src\common\utils\registry.h src\common\utils\resources.h = src\common\utils\resources.h src\common\utils\serialized.h = src\common\utils\serialized.h src\common\utils\string_utils.h = src\common\utils\string_utils.h src\common\utils\timeutil.h = src\common\utils\timeutil.h src\common\utils\UnhandledExceptionHandler.h = src\common\utils\UnhandledExceptionHandler.h src\common\utils\winapi_error.h = src\common\utils\winapi_error.h src\common\utils\window.h = src\common\utils\window.h EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Telemetry", "Telemetry", "{8F62026A-294B-41C6-8839-87463613F216}" ProjectSection(SolutionItems) = preProject src\common\Telemetry\ProjectTelemetry.h = src\common\Telemetry\ProjectTelemetry.h src\common\Telemetry\TelemetryBase.cs = src\common\Telemetry\TelemetryBase.cs src\common\Telemetry\TraceLoggingDefines.h = src\common\Telemetry\TraceLoggingDefines.h EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common.UI", "src\common\Common.UI\Common.UI.csproj", "{C3A17DCA-217B-462C-BB0C-BE086AF80081}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PdfPreviewHandler", "src\modules\previewpane\PdfPreviewHandler\PdfPreviewHandler.csproj", "{69E1EE8D-143A-4060-9129-4658ACF14AAF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PdfPreviewHandler", "src\modules\previewpane\UnitTests-PdfPreviewHandler\UnitTests-PdfPreviewHandler.csproj", "{ECC20689-002A-4354-95A6-B58DF089C6FF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Registry", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Registry\Microsoft.PowerToys.Run.Plugin.Registry.csproj", "{4BABF3FE-3451-42FD-873F-3C332E18DCEF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Registry.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Registry.UnitTest\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.csproj", "{0648DF05-5DDA-4BE1-B5F2-584926EBDB65}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngine", "src\modules\keyboardmanager\KeyboardManagerEngine\KeyboardManagerEngine.vcxproj", "{BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngineLibrary", "src\modules\keyboardmanager\KeyboardManagerEngineLibrary\KeyboardManagerEngineLibrary.vcxproj", "{E496B7FC-1E99-4BAB-849B-0E8367040B02}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngineTest", "src\modules\keyboardmanager\KeyboardManagerEngineTest\KeyboardManagerEngineTest.vcxproj", "{7F4B3A60-BC27-45A7-8000-68B0B6EA7466}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditor", "src\modules\keyboardmanager\KeyboardManagerEditor\KeyboardManagerEditor.vcxproj", "{8DF78B53-200E-451F-9328-01EB907193AE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditorLibrary", "src\modules\keyboardmanager\KeyboardManagerEditorLibrary\KeyboardManagerEditorLibrary.vcxproj", "{23D2070D-E4AD-4ADD-85A7-083D9C76AD49}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditorTest", "src\modules\keyboardmanager\KeyboardManagerEditorTest\KeyboardManagerEditorTest.vcxproj", "{62173D9A-6724-4C00-A1C8-FB646480A9EC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "awake", "awake", "{127F38E0-40AA-4594-B955-5616BF206882}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AwakeModuleInterface", "src\modules\awake\AwakeModuleInterface\AwakeModuleInterface.vcxproj", "{5E7360A8-D048-4ED3-8F09-0BFD64C5529A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Awake", "src\modules\awake\Awake\Awake.csproj", "{D940E07F-532C-4FF3-883F-790DA014F19A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.UnitConverter", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.UnitConverter\Community.PowerToys.Run.Plugin.UnitConverter.csproj", "{BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.UnitConverter.UnitTest", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.csproj", "{3E424AD2-19E5-4AE6-B833-F53963EB5FC1}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "shortcutguide", "shortcutguide", "{106CBECA-0701-4FC3-838C-9DF816A19AE2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShortcutGuideModuleInterface", "src\modules\ShortcutGuide\ShortcutGuideModuleInterface\ShortcutGuideModuleInterface.vcxproj", "{2D604C07-51FC-46BB-9EB7-75AECC7F5E81}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShortcutGuide", "src\modules\ShortcutGuide\ShortcutGuide\ShortcutGuide.vcxproj", "{2EDB3EB4-FA92-4BFF-B2D8-566584837231}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZonesModuleInterface", "src\modules\fancyzones\FancyZonesModuleInterface\FancyZonesModuleInterface.vcxproj", "{48804216-2A0E-4168-A6D8-9CD068D14227}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZones", "src\modules\fancyzones\FancyZones\FancyZones.vcxproj", "{FF1D7936-842A-4BBB-8BEA-E9FE796DE700}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.Update", "src\Update\PowerToys.Update.vcxproj", "{44CE9AE1-4390-42C5-BACC-0FD6B40AA203}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.WindowsSettings", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsSettings\Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj", "{5043CECE-E6A7-4867-9CBE-02D27D83747A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceShared", "src\modules\videoconference\VideoConferenceShared\VideoConferenceShared.vcxproj", "{459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceModule", "src\modules\videoconference\VideoConferenceModule\VideoConference.vcxproj", "{5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceProxyFilter", "src\modules\videoconference\VideoConferenceProxyFilter\VideoConferenceProxyFilter.vcxproj", "{AC2857B4-103D-4D6D-9740-926EBF785042}" ProjectSection(ProjectDependencies) = postProject {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} = {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VideoConference", "VideoConference", "{470FBAF9-E1F8-4F3E-8786-198A1C81C8A8}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PdfThumbnailProvider", "src\modules\previewpane\PdfThumbnailProvider\PdfThumbnailProvider.csproj", "{11491FD8-F921-48BF-880C-7FEA185B80A1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PdfThumbnailProvider", "src\modules\previewpane\UnitTests-PdfThumbnailProvider\UnitTests-PdfThumbnailProvider.csproj", "{F40C3397-1834-4530-B2D9-8F8B8456BCDF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.WindowsTerminal", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsTerminal\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.csproj", "{A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowsTerminal.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.UnitTests\Microsoft.Plugin.WindowsTerminal.UnitTests.csproj", "{4ED320BC-BA04-4D42-8D15-CBE62151F08B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MouseUtils", "MouseUtils", "{322566EF-20DC-43A6-B9F8-616AF942579A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FindMyMouse", "src\modules\MouseUtils\FindMyMouse\FindMyMouse.vcxproj", "{E94FD11C-0591-456F-899F-EFC0CA548336}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseHighlighter", "src\modules\MouseUtils\MouseHighlighter\MouseHighlighter.vcxproj", "{782A61BE-9D85-4081-B35C-1CCC9DCC1E88}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GcodeThumbnailProvider", "src\modules\previewpane\GcodeThumbnailProvider\GcodeThumbnailProvider.csproj", "{809AA252-E17A-4FA2-B0A1-0450976B763F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-GcodeThumbnailProvider", "src\modules\previewpane\UnitTests-GcodeThumbnailProvider\UnitTests-GcodeThumbnailProvider.csproj", "{133281D8-1BCE-4D07-B31E-796612A9609E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GcodePreviewHandler", "src\modules\previewpane\GcodePreviewHandler\GcodePreviewHandler.csproj", "{805306FF-A562-4415-8DEF-E493BDC45918}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-GcodePreviewHandler", "src\modules\previewpane\UnitTests-GcodePreviewHandler\UnitTests-GcodePreviewHandler.csproj", "{FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AlwaysOnTop", "AlwaysOnTop", "{60CD2D4F-C3B9-4897-9821-FCA5098B41CE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlwaysOnTop", "src\modules\alwaysontop\AlwaysOnTop\AlwaysOnTop.vcxproj", "{1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlwaysOnTopModuleInterface", "src\modules\alwaysontop\AlwaysOnTopModuleInterface\AlwaysOnTopModuleInterface.vcxproj", "{48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.WebSearch", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.WebSearch\Community.PowerToys.Run.Plugin.WebSearch.csproj", "{9F94B303-5E21-4364-9362-64426F8DB932}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MousePointerCrosshairs", "src\modules\MouseUtils\MousePointerCrosshairs\MousePointerCrosshairs.vcxproj", "{EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StlThumbnailProvider", "src\modules\previewpane\StlThumbnailProvider\StlThumbnailProvider.csproj", "{F7C8C0F1-5431-4347-89D0-8E5354F93CF2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-StlThumbnailProvider", "src\modules\previewpane\UnitTests-StlThumbnailProvider\UnitTests-StlThumbnailProvider.csproj", "{F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MonacoPreviewHandler", "src\modules\previewpane\MonacoPreviewHandler\MonacoPreviewHandler.csproj", "{04B193D7-3E21-46B8-A958-89B63A8A69DE}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.TimeDate", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.TimeDate\Microsoft.PowerToys.Run.Plugin.TimeDate.csproj", "{5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.csproj", "{FD464B4C-2F68-4D06-91E7-4208146C41F5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowWalker.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.WindowWalker.UnitTests\Microsoft.Plugin.WindowWalker.UnitTests.csproj", "{8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerToys.Settings", "src\settings-ui\Settings.UI\PowerToys.Settings.csproj", "{020A7474-3601-4160-A159-D7B70B77B15F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameUI", "src\modules\powerrename\PowerRenameUILib\PowerRenameUI.vcxproj", "{27718999-C175-450A-861C-89F911E16A88}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameContextMenu", "src\modules\powerrename\PowerRenameContextMenu\PowerRenameContextMenu.vcxproj", "{1DBBB112-4BB1-444B-8EBB-E66555C76BA6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.OneNote", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.OneNote\Microsoft.PowerToys.Run.Plugin.OneNote.csproj", "{5A1DB2F0-0715-4B3B-98E6-79BC41540045}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerContextMenu", "src\modules\imageresizer\ImageResizerContextMenu\ImageResizerContextMenu.vcxproj", "{93B72A06-C8BD-484F-A6F7-C9F280B150BF}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerLib", "src\modules\imageresizer\ImageResizerLib\ImageResizerLib.vcxproj", "{18B3DB45-4FFE-4D01-97D6-5223FEEE1853}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PowerAccent", "PowerAccent", "{0F14491C-6369-4C45-AAA8-135814E66E6B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerAccentModuleInterface", "src\modules\poweraccent\PowerAccentModuleInterface\PowerAccentModuleInterface.vcxproj", "{34A354C5-23C7-4343-916C-C52DAF4FC39D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerAccent.Core", "src\modules\poweraccent\PowerAccent.Core\PowerAccent.Core.csproj", "{3264DF53-C805-4B0C-867C-FCEAF7AEF762}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerAccent.UI", "src\modules\poweraccent\PowerAccent.UI\PowerAccent.UI.csproj", "{31CAD28E-778A-441C-85BC-40AB3EAA2A10}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PowerOCR", "PowerOCR", "{A50C70A6-2DA0-4027-B90E-B1A40755A8A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerOCR", "src\modules\PowerOCR\PowerOCR\PowerOCR.csproj", "{25C91A4E-BA4E-467A-85CD-8B62545BF674}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerOCRModuleInterface", "src\modules\PowerOCR\PowerOCRModuleInterface\PowerOCRModuleInterface.vcxproj", "{6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.History", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.History\Microsoft.PowerToys.Run.Plugin.History.csproj", "{212AD910-8488-4036-BE20-326931B75FB2}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MeasureTool", "MeasureTool", "{7AC943C9-52E8-44CF-9083-744D8049667B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.MeasureToolCore", "src\modules\MeasureTool\MeasureToolCore\PowerToys.MeasureToolCore.vcxproj", "{54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}" ProjectSection(ProjectDependencies) = postProject {6955446D-23F7-4023-9BB3-8657F904AF99} = {6955446D-23F7-4023-9BB3-8657F904AF99} {CABA8DFB-823B-4BF2-93AC-3F31984150D9} = {CABA8DFB-823B-4BF2-93AC-3F31984150D9} {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MeasureToolModuleInterface", "src\modules\MeasureTool\MeasureToolModuleInterface\MeasureToolModuleInterface.vcxproj", "{92C39820-9F84-4529-BC7D-22AAE514D63B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MeasureToolUI", "src\modules\MeasureTool\MeasureToolUI\MeasureToolUI.csproj", "{515554D1-D004-4F7F-A107-2211FC0F6B2C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerAccentKeyboardService", "src\modules\poweraccent\PowerAccentKeyboardService\PowerAccentKeyboardService.vcxproj", "{C97D9A5D-206C-454E-997E-009E227D7F02}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hosts", "src\modules\Hosts\Hosts\Hosts.csproj", "{31D1C81D-765F-4446-AA62-E743F6325049}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Hosts", "Hosts", "{F05E590D-AD46-42BE-9C25-6A63ADD2E3EA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hosts.Tests", "src\modules\Hosts\Hosts.Tests\Hosts.Tests.csproj", "{E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HostsModuleInterface", "src\modules\Hosts\HostsModuleInterface\HostsModuleInterface.vcxproj", "{B41B888C-7DB8-4747-B262-4062E05A230D}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "FileLocksmith", "FileLocksmith", "{AB82E5DD-C32D-4F28-9746-2C780846188E}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileLocksmithExt", "src\modules\FileLocksmith\FileLocksmithExt\FileLocksmithExt.vcxproj", "{57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileLocksmithUI", "src\modules\FileLocksmith\FileLocksmithUI\FileLocksmithUI.csproj", "{E69B044A-2F8A-45AA-AD0B-256C59421807}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileLocksmithLibInterop", "src\modules\FileLocksmith\FileLocksmithLibInterop\FileLocksmithLibInterop.vcxproj", "{C604B37E-9D0E-4484-8778-E8B31B0E1B3A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GPOWrapper", "src\common\GPOWrapper\GPOWrapper.vcxproj", "{E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GPOWrapperProjection", "src\common\GPOWrapperProjection\GPOWrapperProjection.csproj", "{00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Peek", "Peek", "{17B4FA70-001E-4D33-BBBB-0D142DBC2E20}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Peek", "src\modules\peek\peek\peek.vcxproj", "{A1425B53-3D61-4679-8623-E64A0D3D0A48}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.UI", "src\modules\peek\Peek.UI\Peek.UI.csproj", "{9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.Common", "src\modules\peek\Peek.Common\Peek.Common.csproj", "{17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.FilePreviewer", "src\modules\peek\Peek.FilePreviewer\Peek.FilePreviewer.csproj", "{AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MarkdownPreviewHandlerCpp", "src\modules\previewpane\MarkdownPreviewHandlerCpp\MarkdownPreviewHandlerCpp.vcxproj", "{ED9A1AC6-AEB0-4569-A6E9-E1696182B545}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GcodePreviewHandlerCpp", "src\modules\previewpane\GcodePreviewHandlerCpp\GcodePreviewHandlerCpp.vcxproj", "{5A5DD09D-723A-44D3-8F2B-293584C3D731}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MonacoPreviewHandlerCpp", "src\modules\previewpane\MonacoPreviewHandlerCpp\MonacoPreviewHandlerCpp.vcxproj", "{B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PdfPreviewHandlerCpp", "src\modules\previewpane\PdfPreviewHandlerCpp\PdfPreviewHandlerCpp.vcxproj", "{54F7C616-FD41-4E62-BFF9-015686914F4D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SvgPreviewHandlerCpp", "src\modules\previewpane\SvgPreviewHandlerCpp\SvgPreviewHandlerCpp.vcxproj", "{143F13E3-D2E3-4D83-B035-356612D99956}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GcodeThumbnailProviderCpp", "src\modules\previewpane\GcodeThumbnailProviderCpp\GcodeThumbnailProviderCpp.vcxproj", "{56CC2F10-6E41-453D-BE16-C593A5E58482}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PdfThumbnailProviderCpp", "src\modules\previewpane\PdfThumbnailProviderCpp\PdfThumbnailProviderCpp.vcxproj", "{CA5518ED-0458-4B09-8F53-4122B9888655}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StlThumbnailProviderCpp", "src\modules\previewpane\StlThumbnailProviderCpp\StlThumbnailProviderCpp.vcxproj", "{D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SvgThumbnailProviderCpp", "src\modules\previewpane\SvgThumbnailProviderCpp\SvgThumbnailProviderCpp.vcxproj", "{2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MouseWithoutBorders", "MouseWithoutBorders", "{B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseWithoutBordersModuleInterface", "src\modules\MouseWithoutBorders\ModuleInterface\MouseWithoutBordersModuleInterface.vcxproj", "{2833C9C6-AB32-4048-A5C7-A70898337B57}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBorders", "src\modules\MouseWithoutBorders\App\MouseWithoutBorders.csproj", "{50B82783-242F-42D2-BC03-B3430BF01354}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBordersService", "src\modules\MouseWithoutBorders\App\Service\MouseWithoutBordersService.csproj", "{B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBordersHelper", "src\modules\MouseWithoutBorders\App\Helper\MouseWithoutBordersHelper.csproj", "{A663E672-B26D-4EC0-BEAB-FE2E424AC46F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseJump", "src\modules\MouseUtils\MouseJump\MouseJump.vcxproj", "{8A08D663-4995-40E3-B42C-3F910625F284}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseJumpUI", "src\modules\MouseUtils\MouseJumpUI\MouseJumpUI.csproj", "{D962A009-834F-4EEC-AABB-430DF8F98E39}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseJumpUI.UnitTests", "src\modules\MouseUtils\MouseJumpUI.UnitTests\MouseJumpUI.UnitTests.csproj", "{D9C5DE64-6849-4278-91AD-9660AECF2876}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "pasteplain", "pasteplain", "{9873BA05-4C41-4819-9283-CF45D795431B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PastePlainModuleInterface", "src\modules\pasteplain\PastePlainModuleInterface\PastePlainModuleInterface.vcxproj", "{FC373B24-3293-453C-AAF5-CF2909DCEE6A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AllExperiments", "src\common\AllExperiments\AllExperiments.csproj", "{9CE59ED5-7087-4353-88EB-788038A73CEC}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RegistryPreviewUI", "src\modules\registrypreview\RegistryPreviewUI\RegistryPreviewUI.csproj", "{FD86C06A-FB54-4D5E-9831-1CDADF60D45F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RegistryPreviewExt", "src\modules\registrypreview\RegistryPreviewExt\RegistryPreviewExt.vcxproj", "{697C6AF9-0A48-49A9-866C-67DA12384015}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RegistryPreview", "RegistryPreview", "{929C1324-22E8-4412-A9A8-80E85F3985A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FilePreviewCommon", "src\common\FilePreviewCommon\FilePreviewCommon.csproj", "{9EBAA524-0EDA-470B-95D4-39383285CBB2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.PowerToys", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.PowerToys\Microsoft.PowerToys.Run.Plugin.PowerToys.csproj", "{500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.ValueGenerator", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.ValueGenerator\Community.PowerToys.Run.Plugin.ValueGenerator.csproj", "{D095BE44-1F2E-463E-A494-121892A75EA2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.csproj", "{90F9FA90-2C20-4004-96E6-F3B78151F5A5}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CropAndLock", "CropAndLock", "{3B227528-4BA6-4CAF-B44A-A10C78A64849}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CropAndLock", "src\modules\CropAndLock\CropAndLock\CropAndLock.vcxproj", "{F5E1146E-B7B3-4E11-85FD-270A500BD78C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CropAndLockModuleInterface", "src\modules\CropAndLock\CropAndLockModuleInterface\CropAndLockModuleInterface.vcxproj", "{3157FA75-86CF-4EE2-8F62-C43F776493C6}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests-FancyZonesEditor", "src\modules\fancyzones\UnitTests-FancyZonesEditor\UnitTests-FancyZonesEditor.csproj", "{FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "EnvironmentVariables", "EnvironmentVariables", "{538ED0BB-B863-4B20-98CC-BCDF7FA0B68A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EnvironmentVariables", "src\modules\EnvironmentVariables\EnvironmentVariables\EnvironmentVariables.csproj", "{51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EnvironmentVariablesModuleInterface", "src\modules\EnvironmentVariables\EnvironmentVariablesModuleInterface\EnvironmentVariablesModuleInterface.vcxproj", "{B9420661-B0E4-4241-ABD4-4A27A1F64250}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|ARM64 = Debug|ARM64 Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 Release|ARM64 = Release|ARM64 Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|ARM64.Build.0 = Debug|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x64.ActiveCfg = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x64.Build.0 = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x86.ActiveCfg = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|ARM64.ActiveCfg = Release|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|ARM64.Build.0 = Release|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x64.ActiveCfg = Release|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x64.Build.0 = Release|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x86.ActiveCfg = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|ARM64.Build.0 = Debug|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x64.ActiveCfg = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x64.Build.0 = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x86.ActiveCfg = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|ARM64.ActiveCfg = Release|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|ARM64.Build.0 = Release|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x64.ActiveCfg = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x64.Build.0 = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x86.ActiveCfg = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|ARM64.Build.0 = Debug|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x64.ActiveCfg = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x64.Build.0 = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x86.ActiveCfg = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|ARM64.ActiveCfg = Release|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|ARM64.Build.0 = Release|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x64.ActiveCfg = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x64.Build.0 = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x86.ActiveCfg = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|ARM64.Build.0 = Debug|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x64.ActiveCfg = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x64.Build.0 = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x86.ActiveCfg = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|ARM64.ActiveCfg = Release|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|ARM64.Build.0 = Release|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x64.ActiveCfg = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x64.Build.0 = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x86.ActiveCfg = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|ARM64.Build.0 = Debug|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x64.ActiveCfg = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x64.Build.0 = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x86.ActiveCfg = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|ARM64.ActiveCfg = Release|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|ARM64.Build.0 = Release|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x64.ActiveCfg = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x64.Build.0 = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x86.ActiveCfg = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|ARM64.Build.0 = Debug|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x64.ActiveCfg = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x64.Build.0 = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x86.ActiveCfg = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|ARM64.ActiveCfg = Release|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|ARM64.Build.0 = Release|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x64.ActiveCfg = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x64.Build.0 = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x86.ActiveCfg = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|ARM64.Build.0 = Debug|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x64.ActiveCfg = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x64.Build.0 = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x86.ActiveCfg = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|ARM64.ActiveCfg = Release|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|ARM64.Build.0 = Release|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x64.ActiveCfg = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x64.Build.0 = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x86.ActiveCfg = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|ARM64.Build.0 = Debug|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x64.ActiveCfg = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x64.Build.0 = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x86.ActiveCfg = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|ARM64.ActiveCfg = Release|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|ARM64.Build.0 = Release|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x64.ActiveCfg = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x64.Build.0 = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x86.ActiveCfg = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|ARM64.Build.0 = Debug|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x64.ActiveCfg = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x64.Build.0 = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x86.ActiveCfg = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|ARM64.ActiveCfg = Release|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|ARM64.Build.0 = Release|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x64.ActiveCfg = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x64.Build.0 = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x86.ActiveCfg = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|ARM64.ActiveCfg = Debug|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|ARM64.Build.0 = Debug|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x64.ActiveCfg = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x64.Build.0 = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x86.ActiveCfg = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|ARM64.ActiveCfg = Release|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|ARM64.Build.0 = Release|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x64.ActiveCfg = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x64.Build.0 = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x86.ActiveCfg = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|ARM64.Build.0 = Debug|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x64.ActiveCfg = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x64.Build.0 = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x86.ActiveCfg = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|ARM64.ActiveCfg = Release|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|ARM64.Build.0 = Release|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x64.ActiveCfg = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x64.Build.0 = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x86.ActiveCfg = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|ARM64.Build.0 = Debug|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x64.ActiveCfg = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x64.Build.0 = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x86.ActiveCfg = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|ARM64.ActiveCfg = Release|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|ARM64.Build.0 = Release|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x64.ActiveCfg = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x64.Build.0 = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x86.ActiveCfg = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|ARM64.Build.0 = Debug|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x64.ActiveCfg = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x64.Build.0 = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x86.ActiveCfg = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|ARM64.ActiveCfg = Release|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|ARM64.Build.0 = Release|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x64.ActiveCfg = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x64.Build.0 = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x86.ActiveCfg = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|ARM64.Build.0 = Debug|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x64.ActiveCfg = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x64.Build.0 = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x86.ActiveCfg = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|ARM64.ActiveCfg = Release|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|ARM64.Build.0 = Release|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x64.ActiveCfg = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x64.Build.0 = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x86.ActiveCfg = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|ARM64.Build.0 = Debug|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x64.ActiveCfg = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x64.Build.0 = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x86.ActiveCfg = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|ARM64.ActiveCfg = Release|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|ARM64.Build.0 = Release|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x64.ActiveCfg = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x64.Build.0 = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x86.ActiveCfg = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|ARM64.Build.0 = Debug|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x64.ActiveCfg = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x64.Build.0 = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x86.ActiveCfg = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|ARM64.ActiveCfg = Release|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|ARM64.Build.0 = Release|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x64.ActiveCfg = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x64.Build.0 = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x86.ActiveCfg = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|ARM64.Build.0 = Debug|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x64.ActiveCfg = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x64.Build.0 = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x86.ActiveCfg = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|ARM64.ActiveCfg = Release|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|ARM64.Build.0 = Release|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x64.ActiveCfg = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x64.Build.0 = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x86.ActiveCfg = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|ARM64.Build.0 = Debug|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x64.ActiveCfg = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x64.Build.0 = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x86.ActiveCfg = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|ARM64.ActiveCfg = Release|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|ARM64.Build.0 = Release|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x64.ActiveCfg = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x64.Build.0 = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x86.ActiveCfg = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|ARM64.Build.0 = Debug|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x64.ActiveCfg = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x64.Build.0 = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x86.ActiveCfg = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|ARM64.ActiveCfg = Release|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|ARM64.Build.0 = Release|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x64.ActiveCfg = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x64.Build.0 = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x86.ActiveCfg = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|ARM64.Build.0 = Debug|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x64.ActiveCfg = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x64.Build.0 = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x86.ActiveCfg = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|ARM64.ActiveCfg = Release|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|ARM64.Build.0 = Release|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x64.ActiveCfg = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x64.Build.0 = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x86.ActiveCfg = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|ARM64.Build.0 = Debug|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x64.ActiveCfg = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x64.Build.0 = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x86.ActiveCfg = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|ARM64.ActiveCfg = Release|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|ARM64.Build.0 = Release|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x64.ActiveCfg = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x64.Build.0 = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x86.ActiveCfg = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|ARM64.Build.0 = Debug|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x64.ActiveCfg = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x64.Build.0 = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x86.ActiveCfg = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|ARM64.ActiveCfg = Release|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|ARM64.Build.0 = Release|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x64.ActiveCfg = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x64.Build.0 = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x86.ActiveCfg = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|ARM64.Build.0 = Debug|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x64.ActiveCfg = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x64.Build.0 = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x86.ActiveCfg = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|ARM64.ActiveCfg = Release|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|ARM64.Build.0 = Release|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x64.ActiveCfg = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x64.Build.0 = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x86.ActiveCfg = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|ARM64.Build.0 = Debug|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x64.ActiveCfg = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x64.Build.0 = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x86.ActiveCfg = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|ARM64.ActiveCfg = Release|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|ARM64.Build.0 = Release|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x64.ActiveCfg = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x64.Build.0 = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x86.ActiveCfg = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|ARM64.Build.0 = Debug|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x64.ActiveCfg = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x64.Build.0 = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x86.ActiveCfg = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|ARM64.ActiveCfg = Release|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|ARM64.Build.0 = Release|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x64.ActiveCfg = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x64.Build.0 = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x86.ActiveCfg = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|ARM64.Build.0 = Debug|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x64.ActiveCfg = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x64.Build.0 = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x86.ActiveCfg = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|ARM64.ActiveCfg = Release|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|ARM64.Build.0 = Release|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x64.ActiveCfg = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x64.Build.0 = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x86.ActiveCfg = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|ARM64.Build.0 = Debug|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x64.ActiveCfg = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x64.Build.0 = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x86.ActiveCfg = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|ARM64.ActiveCfg = Release|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|ARM64.Build.0 = Release|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x64.ActiveCfg = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x64.Build.0 = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x86.ActiveCfg = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|ARM64.Build.0 = Debug|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x64.ActiveCfg = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x64.Build.0 = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x86.ActiveCfg = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|ARM64.ActiveCfg = Release|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|ARM64.Build.0 = Release|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x64.ActiveCfg = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x64.Build.0 = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x86.ActiveCfg = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|ARM64.Build.0 = Debug|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x64.ActiveCfg = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x64.Build.0 = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x86.ActiveCfg = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|ARM64.ActiveCfg = Release|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|ARM64.Build.0 = Release|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x64.ActiveCfg = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x64.Build.0 = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x86.ActiveCfg = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|ARM64.Build.0 = Debug|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x64.ActiveCfg = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x64.Build.0 = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x86.ActiveCfg = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|ARM64.ActiveCfg = Release|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|ARM64.Build.0 = Release|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x64.ActiveCfg = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x64.Build.0 = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x86.ActiveCfg = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|ARM64.Build.0 = Debug|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x64.ActiveCfg = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x64.Build.0 = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x86.ActiveCfg = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|ARM64.ActiveCfg = Release|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|ARM64.Build.0 = Release|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x64.ActiveCfg = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x64.Build.0 = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x86.ActiveCfg = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|ARM64.Build.0 = Debug|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x64.ActiveCfg = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x64.Build.0 = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x86.ActiveCfg = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|ARM64.ActiveCfg = Release|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|ARM64.Build.0 = Release|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x64.ActiveCfg = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x64.Build.0 = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x86.ActiveCfg = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|ARM64.ActiveCfg = Debug|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|ARM64.Build.0 = Debug|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x64.ActiveCfg = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x64.Build.0 = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x86.ActiveCfg = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|ARM64.ActiveCfg = Release|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|ARM64.Build.0 = Release|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x64.ActiveCfg = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x64.Build.0 = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x86.ActiveCfg = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|ARM64.ActiveCfg = Debug|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|ARM64.Build.0 = Debug|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x64.ActiveCfg = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x64.Build.0 = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x86.ActiveCfg = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|ARM64.ActiveCfg = Release|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|ARM64.Build.0 = Release|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x64.ActiveCfg = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x64.Build.0 = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x86.ActiveCfg = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|ARM64.Build.0 = Debug|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x64.ActiveCfg = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x64.Build.0 = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x86.ActiveCfg = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|ARM64.ActiveCfg = Release|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|ARM64.Build.0 = Release|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x64.ActiveCfg = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x64.Build.0 = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x86.ActiveCfg = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|ARM64.Build.0 = Debug|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.ActiveCfg = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.Build.0 = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x86.ActiveCfg = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|ARM64.ActiveCfg = Release|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|ARM64.Build.0 = Release|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x64.ActiveCfg = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x64.Build.0 = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x86.ActiveCfg = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|ARM64.Build.0 = Debug|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x64.ActiveCfg = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x64.Build.0 = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x86.ActiveCfg = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|ARM64.ActiveCfg = Release|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|ARM64.Build.0 = Release|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x64.ActiveCfg = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x64.Build.0 = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x86.ActiveCfg = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|ARM64.Build.0 = Debug|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x64.ActiveCfg = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x64.Build.0 = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x86.ActiveCfg = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|ARM64.ActiveCfg = Release|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|ARM64.Build.0 = Release|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x64.ActiveCfg = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x64.Build.0 = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x86.ActiveCfg = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|ARM64.ActiveCfg = Debug|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|ARM64.Build.0 = Debug|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x64.ActiveCfg = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x64.Build.0 = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x86.ActiveCfg = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|ARM64.ActiveCfg = Release|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|ARM64.Build.0 = Release|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x64.ActiveCfg = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x64.Build.0 = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x86.ActiveCfg = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|ARM64.Build.0 = Debug|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x64.ActiveCfg = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x64.Build.0 = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x86.ActiveCfg = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|ARM64.ActiveCfg = Release|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|ARM64.Build.0 = Release|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x64.ActiveCfg = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x64.Build.0 = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x86.ActiveCfg = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|ARM64.Build.0 = Debug|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x64.ActiveCfg = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x64.Build.0 = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x86.ActiveCfg = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|ARM64.ActiveCfg = Release|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|ARM64.Build.0 = Release|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x64.ActiveCfg = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x64.Build.0 = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x86.ActiveCfg = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|ARM64.Build.0 = Debug|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x64.ActiveCfg = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x64.Build.0 = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x86.ActiveCfg = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|ARM64.ActiveCfg = Release|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|ARM64.Build.0 = Release|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x64.ActiveCfg = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x64.Build.0 = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x86.ActiveCfg = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|ARM64.Build.0 = Debug|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x64.ActiveCfg = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x64.Build.0 = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x86.ActiveCfg = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|ARM64.ActiveCfg = Release|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|ARM64.Build.0 = Release|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x64.ActiveCfg = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x64.Build.0 = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x86.ActiveCfg = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|ARM64.Build.0 = Debug|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x64.ActiveCfg = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x64.Build.0 = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x86.ActiveCfg = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|ARM64.ActiveCfg = Release|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|ARM64.Build.0 = Release|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x64.ActiveCfg = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x64.Build.0 = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x86.ActiveCfg = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|ARM64.Build.0 = Debug|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x64.ActiveCfg = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x64.Build.0 = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x86.ActiveCfg = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|ARM64.ActiveCfg = Release|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|ARM64.Build.0 = Release|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x64.ActiveCfg = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x64.Build.0 = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x86.ActiveCfg = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|ARM64.Build.0 = Debug|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x64.ActiveCfg = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x64.Build.0 = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x86.ActiveCfg = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|ARM64.ActiveCfg = Release|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|ARM64.Build.0 = Release|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x64.ActiveCfg = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x64.Build.0 = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x86.ActiveCfg = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|ARM64.ActiveCfg = Debug|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|ARM64.Build.0 = Debug|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x64.ActiveCfg = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x64.Build.0 = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x86.ActiveCfg = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|ARM64.ActiveCfg = Release|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|ARM64.Build.0 = Release|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x64.ActiveCfg = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x64.Build.0 = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x86.ActiveCfg = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|ARM64.Build.0 = Debug|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x64.ActiveCfg = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x64.Build.0 = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x86.ActiveCfg = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|ARM64.ActiveCfg = Release|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|ARM64.Build.0 = Release|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x64.ActiveCfg = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x64.Build.0 = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x86.ActiveCfg = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|ARM64.Build.0 = Debug|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x64.ActiveCfg = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x64.Build.0 = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x86.ActiveCfg = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|ARM64.ActiveCfg = Release|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|ARM64.Build.0 = Release|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x64.ActiveCfg = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x64.Build.0 = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x86.ActiveCfg = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|ARM64.Build.0 = Debug|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x64.ActiveCfg = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x64.Build.0 = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x86.ActiveCfg = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|ARM64.ActiveCfg = Release|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|ARM64.Build.0 = Release|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x64.ActiveCfg = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x64.Build.0 = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x86.ActiveCfg = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|ARM64.Build.0 = Debug|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x64.ActiveCfg = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x64.Build.0 = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x86.ActiveCfg = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|ARM64.ActiveCfg = Release|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|ARM64.Build.0 = Release|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x64.ActiveCfg = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x64.Build.0 = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x86.ActiveCfg = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|ARM64.Build.0 = Debug|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x64.ActiveCfg = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x64.Build.0 = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x86.ActiveCfg = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|ARM64.ActiveCfg = Release|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|ARM64.Build.0 = Release|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x64.ActiveCfg = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x64.Build.0 = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x86.ActiveCfg = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|ARM64.Build.0 = Debug|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x64.ActiveCfg = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x64.Build.0 = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x86.ActiveCfg = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|ARM64.ActiveCfg = Release|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|ARM64.Build.0 = Release|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x64.ActiveCfg = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x64.Build.0 = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x86.ActiveCfg = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|ARM64.Build.0 = Debug|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x64.ActiveCfg = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x64.Build.0 = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x86.ActiveCfg = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|ARM64.ActiveCfg = Release|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|ARM64.Build.0 = Release|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x64.ActiveCfg = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x64.Build.0 = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x86.ActiveCfg = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|ARM64.ActiveCfg = Debug|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|ARM64.Build.0 = Debug|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x64.ActiveCfg = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x64.Build.0 = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x86.ActiveCfg = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|ARM64.ActiveCfg = Release|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|ARM64.Build.0 = Release|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x64.ActiveCfg = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x64.Build.0 = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x86.ActiveCfg = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|ARM64.Build.0 = Debug|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x64.ActiveCfg = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x64.Build.0 = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x86.ActiveCfg = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|ARM64.ActiveCfg = Release|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|ARM64.Build.0 = Release|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x64.ActiveCfg = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x64.Build.0 = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x86.ActiveCfg = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|ARM64.Build.0 = Debug|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x64.ActiveCfg = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x64.Build.0 = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x86.ActiveCfg = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|ARM64.ActiveCfg = Release|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|ARM64.Build.0 = Release|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x64.ActiveCfg = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x64.Build.0 = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x86.ActiveCfg = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|ARM64.Build.0 = Debug|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x64.ActiveCfg = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x64.Build.0 = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x86.ActiveCfg = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|ARM64.ActiveCfg = Release|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|ARM64.Build.0 = Release|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x64.ActiveCfg = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x64.Build.0 = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x86.ActiveCfg = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|ARM64.Build.0 = Debug|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x64.ActiveCfg = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x64.Build.0 = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x86.ActiveCfg = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|ARM64.ActiveCfg = Release|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|ARM64.Build.0 = Release|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x64.ActiveCfg = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x64.Build.0 = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x86.ActiveCfg = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|ARM64.Build.0 = Debug|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x64.ActiveCfg = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x64.Build.0 = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x86.ActiveCfg = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|ARM64.ActiveCfg = Release|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|ARM64.Build.0 = Release|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x64.ActiveCfg = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x64.Build.0 = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x86.ActiveCfg = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|ARM64.ActiveCfg = Debug|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|ARM64.Build.0 = Debug|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x64.ActiveCfg = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x64.Build.0 = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x86.ActiveCfg = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|ARM64.ActiveCfg = Release|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|ARM64.Build.0 = Release|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x64.ActiveCfg = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x64.Build.0 = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x86.ActiveCfg = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|ARM64.Build.0 = Debug|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x64.ActiveCfg = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x64.Build.0 = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x86.ActiveCfg = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|ARM64.ActiveCfg = Release|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|ARM64.Build.0 = Release|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x64.ActiveCfg = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x64.Build.0 = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x86.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|ARM64.Build.0 = Debug|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.Build.0 = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x86.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|ARM64.ActiveCfg = Release|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|ARM64.Build.0 = Release|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.Build.0 = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x86.ActiveCfg = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|ARM64.Build.0 = Debug|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x64.ActiveCfg = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x64.Build.0 = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x86.ActiveCfg = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|ARM64.ActiveCfg = Release|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|ARM64.Build.0 = Release|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x64.ActiveCfg = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x64.Build.0 = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x86.ActiveCfg = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|ARM64.Build.0 = Debug|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x64.ActiveCfg = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x64.Build.0 = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x86.ActiveCfg = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|ARM64.ActiveCfg = Release|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|ARM64.Build.0 = Release|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x64.ActiveCfg = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x64.Build.0 = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x86.ActiveCfg = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|ARM64.Build.0 = Debug|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x64.ActiveCfg = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x64.Build.0 = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x86.ActiveCfg = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|ARM64.ActiveCfg = Release|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|ARM64.Build.0 = Release|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x64.ActiveCfg = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x64.Build.0 = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x86.ActiveCfg = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|ARM64.Build.0 = Debug|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x64.ActiveCfg = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x64.Build.0 = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x86.ActiveCfg = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|ARM64.ActiveCfg = Release|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|ARM64.Build.0 = Release|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x64.ActiveCfg = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x64.Build.0 = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x86.ActiveCfg = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|ARM64.Build.0 = Debug|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x64.ActiveCfg = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x64.Build.0 = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x86.ActiveCfg = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|ARM64.ActiveCfg = Release|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|ARM64.Build.0 = Release|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x64.ActiveCfg = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x64.Build.0 = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x86.ActiveCfg = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|ARM64.Build.0 = Debug|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x64.ActiveCfg = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x64.Build.0 = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x86.ActiveCfg = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|ARM64.ActiveCfg = Release|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|ARM64.Build.0 = Release|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x64.ActiveCfg = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x64.Build.0 = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x86.ActiveCfg = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|ARM64.Build.0 = Debug|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x64.ActiveCfg = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x64.Build.0 = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x86.ActiveCfg = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|ARM64.ActiveCfg = Release|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|ARM64.Build.0 = Release|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x64.ActiveCfg = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x64.Build.0 = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x86.ActiveCfg = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|ARM64.Build.0 = Debug|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x64.ActiveCfg = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x64.Build.0 = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x86.ActiveCfg = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|ARM64.ActiveCfg = Release|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|ARM64.Build.0 = Release|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x64.ActiveCfg = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x64.Build.0 = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x86.ActiveCfg = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|ARM64.Build.0 = Debug|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x64.ActiveCfg = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x64.Build.0 = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x86.ActiveCfg = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|ARM64.ActiveCfg = Release|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|ARM64.Build.0 = Release|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x64.ActiveCfg = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x64.Build.0 = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x86.ActiveCfg = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|ARM64.Build.0 = Debug|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x64.ActiveCfg = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x64.Build.0 = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x86.ActiveCfg = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|ARM64.ActiveCfg = Release|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|ARM64.Build.0 = Release|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x64.ActiveCfg = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x64.Build.0 = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x86.ActiveCfg = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|ARM64.Build.0 = Debug|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x64.ActiveCfg = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x64.Build.0 = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x86.ActiveCfg = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|ARM64.ActiveCfg = Release|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|ARM64.Build.0 = Release|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x64.ActiveCfg = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x64.Build.0 = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x86.ActiveCfg = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|ARM64.Build.0 = Debug|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x64.ActiveCfg = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x64.Build.0 = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x86.ActiveCfg = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|ARM64.ActiveCfg = Release|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|ARM64.Build.0 = Release|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x64.ActiveCfg = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x64.Build.0 = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x86.ActiveCfg = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|ARM64.ActiveCfg = Debug|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|ARM64.Build.0 = Debug|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x64.ActiveCfg = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x64.Build.0 = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x86.ActiveCfg = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|ARM64.ActiveCfg = Release|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|ARM64.Build.0 = Release|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x64.ActiveCfg = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x64.Build.0 = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x86.ActiveCfg = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|ARM64.Build.0 = Debug|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x64.ActiveCfg = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x64.Build.0 = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x86.ActiveCfg = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|ARM64.ActiveCfg = Release|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|ARM64.Build.0 = Release|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x64.ActiveCfg = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x64.Build.0 = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x86.ActiveCfg = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|ARM64.Build.0 = Debug|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x64.ActiveCfg = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x64.Build.0 = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x86.ActiveCfg = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|ARM64.ActiveCfg = Release|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|ARM64.Build.0 = Release|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x64.ActiveCfg = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x64.Build.0 = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x86.ActiveCfg = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|ARM64.Build.0 = Debug|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x64.ActiveCfg = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x64.Build.0 = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x86.ActiveCfg = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|ARM64.ActiveCfg = Release|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|ARM64.Build.0 = Release|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x64.ActiveCfg = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x64.Build.0 = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x86.ActiveCfg = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|ARM64.Build.0 = Debug|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x64.ActiveCfg = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x64.Build.0 = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x86.ActiveCfg = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|ARM64.ActiveCfg = Release|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|ARM64.Build.0 = Release|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x64.ActiveCfg = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x64.Build.0 = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x86.ActiveCfg = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|ARM64.Build.0 = Debug|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x64.ActiveCfg = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x64.Build.0 = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x86.ActiveCfg = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|ARM64.ActiveCfg = Release|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|ARM64.Build.0 = Release|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x64.ActiveCfg = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x64.Build.0 = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x86.ActiveCfg = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|ARM64.Build.0 = Debug|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x64.ActiveCfg = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x64.Build.0 = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x86.ActiveCfg = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|ARM64.ActiveCfg = Release|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|ARM64.Build.0 = Release|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x64.ActiveCfg = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x64.Build.0 = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x86.ActiveCfg = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|ARM64.Build.0 = Debug|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x64.ActiveCfg = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x64.Build.0 = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x86.ActiveCfg = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|ARM64.ActiveCfg = Release|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|ARM64.Build.0 = Release|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x64.ActiveCfg = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x64.Build.0 = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x86.ActiveCfg = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|ARM64.ActiveCfg = Debug|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|ARM64.Build.0 = Debug|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x64.ActiveCfg = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x64.Build.0 = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x86.ActiveCfg = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|ARM64.ActiveCfg = Release|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|ARM64.Build.0 = Release|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x64.ActiveCfg = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x64.Build.0 = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x86.ActiveCfg = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|ARM64.Build.0 = Debug|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x64.ActiveCfg = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x64.Build.0 = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x86.ActiveCfg = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|ARM64.ActiveCfg = Release|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|ARM64.Build.0 = Release|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x64.ActiveCfg = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x64.Build.0 = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x86.ActiveCfg = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|ARM64.ActiveCfg = Debug|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|ARM64.Build.0 = Debug|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x64.ActiveCfg = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x64.Build.0 = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x86.ActiveCfg = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|ARM64.ActiveCfg = Release|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|ARM64.Build.0 = Release|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x64.ActiveCfg = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x64.Build.0 = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x86.ActiveCfg = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|ARM64.Build.0 = Debug|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.ActiveCfg = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.Build.0 = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x86.ActiveCfg = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|ARM64.ActiveCfg = Release|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|ARM64.Build.0 = Release|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.ActiveCfg = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.Build.0 = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x86.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|ARM64.Build.0 = Debug|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.ActiveCfg = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.Build.0 = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x86.ActiveCfg = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x86.Build.0 = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|ARM64.ActiveCfg = Release|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|ARM64.Build.0 = Release|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.Build.0 = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x86.ActiveCfg = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x86.Build.0 = Release|Win32 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|ARM64.Build.0 = Debug|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x64.ActiveCfg = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x64.Build.0 = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x86.ActiveCfg = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|ARM64.ActiveCfg = Release|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|ARM64.Build.0 = Release|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x64.ActiveCfg = Release|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x64.Build.0 = Release|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x86.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|ARM64.Build.0 = Debug|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.ActiveCfg = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.Build.0 = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x86.ActiveCfg = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x86.Build.0 = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|ARM64.ActiveCfg = Release|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|ARM64.Build.0 = Release|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.Build.0 = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x86.ActiveCfg = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x86.Build.0 = Release|Win32 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|ARM64.Build.0 = Debug|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x64.ActiveCfg = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x64.Build.0 = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x86.ActiveCfg = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|ARM64.ActiveCfg = Release|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|ARM64.Build.0 = Release|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x64.ActiveCfg = Release|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x64.Build.0 = Release|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x86.ActiveCfg = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|ARM64.Build.0 = Debug|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x64.ActiveCfg = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x64.Build.0 = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x86.ActiveCfg = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|ARM64.ActiveCfg = Release|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|ARM64.Build.0 = Release|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x64.ActiveCfg = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x64.Build.0 = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x86.ActiveCfg = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|ARM64.Build.0 = Debug|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x64.ActiveCfg = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x64.Build.0 = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x86.ActiveCfg = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|ARM64.ActiveCfg = Release|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|ARM64.Build.0 = Release|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x64.ActiveCfg = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x64.Build.0 = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x86.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|ARM64.Build.0 = Debug|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x64.ActiveCfg = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x64.Build.0 = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x86.ActiveCfg = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|ARM64.ActiveCfg = Release|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|ARM64.Build.0 = Release|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x64.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x64.Build.0 = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x86.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x86.Build.0 = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|ARM64.Build.0 = Debug|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x64.ActiveCfg = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x64.Build.0 = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x86.ActiveCfg = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|ARM64.ActiveCfg = Release|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|ARM64.Build.0 = Release|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x64.ActiveCfg = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x64.Build.0 = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x86.ActiveCfg = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|ARM64.ActiveCfg = Debug|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|ARM64.Build.0 = Debug|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x64.ActiveCfg = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x64.Build.0 = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x86.ActiveCfg = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|ARM64.ActiveCfg = Release|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|ARM64.Build.0 = Release|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x64.ActiveCfg = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x64.Build.0 = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x86.ActiveCfg = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|ARM64.Build.0 = Debug|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x64.ActiveCfg = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x64.Build.0 = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x86.ActiveCfg = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|ARM64.ActiveCfg = Release|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|ARM64.Build.0 = Release|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x64.ActiveCfg = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x64.Build.0 = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x86.ActiveCfg = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|ARM64.Build.0 = Debug|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x64.ActiveCfg = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x64.Build.0 = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x86.ActiveCfg = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|ARM64.ActiveCfg = Release|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|ARM64.Build.0 = Release|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x64.ActiveCfg = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x64.Build.0 = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x86.ActiveCfg = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|ARM64.ActiveCfg = Debug|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|ARM64.Build.0 = Debug|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x64.ActiveCfg = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x64.Build.0 = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x86.ActiveCfg = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|ARM64.ActiveCfg = Release|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|ARM64.Build.0 = Release|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x64.ActiveCfg = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x64.Build.0 = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x86.ActiveCfg = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|ARM64.Build.0 = Debug|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x64.ActiveCfg = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x64.Build.0 = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x86.ActiveCfg = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|ARM64.ActiveCfg = Release|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|ARM64.Build.0 = Release|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x64.ActiveCfg = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x64.Build.0 = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x86.ActiveCfg = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|ARM64.Build.0 = Debug|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x64.ActiveCfg = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x64.Build.0 = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x86.ActiveCfg = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|ARM64.ActiveCfg = Release|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|ARM64.Build.0 = Release|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x64.ActiveCfg = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x64.Build.0 = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x86.ActiveCfg = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|ARM64.Build.0 = Debug|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x64.ActiveCfg = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x64.Build.0 = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x86.ActiveCfg = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|ARM64.ActiveCfg = Release|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|ARM64.Build.0 = Release|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x64.ActiveCfg = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x64.Build.0 = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x86.ActiveCfg = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|ARM64.Build.0 = Debug|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x64.ActiveCfg = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x64.Build.0 = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x86.ActiveCfg = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|ARM64.ActiveCfg = Release|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|ARM64.Build.0 = Release|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x64.ActiveCfg = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x64.Build.0 = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x86.ActiveCfg = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|ARM64.Build.0 = Debug|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x64.ActiveCfg = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x64.Build.0 = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x86.ActiveCfg = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|ARM64.ActiveCfg = Release|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|ARM64.Build.0 = Release|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x64.ActiveCfg = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x64.Build.0 = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x86.ActiveCfg = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|ARM64.Build.0 = Debug|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x64.ActiveCfg = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x64.Build.0 = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x86.ActiveCfg = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|ARM64.ActiveCfg = Release|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|ARM64.Build.0 = Release|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x64.ActiveCfg = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x64.Build.0 = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x86.ActiveCfg = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|ARM64.Build.0 = Debug|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x64.ActiveCfg = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x64.Build.0 = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x86.ActiveCfg = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|ARM64.ActiveCfg = Release|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|ARM64.Build.0 = Release|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x64.ActiveCfg = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x64.Build.0 = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x86.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|ARM64.Build.0 = Debug|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x64.ActiveCfg = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x64.Build.0 = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x86.ActiveCfg = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x86.Build.0 = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|ARM64.ActiveCfg = Release|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|ARM64.Build.0 = Release|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x64.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x64.Build.0 = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x86.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x86.Build.0 = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|ARM64.Build.0 = Debug|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x64.ActiveCfg = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x64.Build.0 = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x86.ActiveCfg = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|ARM64.ActiveCfg = Release|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|ARM64.Build.0 = Release|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x64.ActiveCfg = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x64.Build.0 = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x86.ActiveCfg = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x86.Build.0 = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|ARM64.Build.0 = Debug|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x64.ActiveCfg = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x64.Build.0 = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x86.ActiveCfg = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x86.Build.0 = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|ARM64.ActiveCfg = Release|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|ARM64.Build.0 = Release|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x64.ActiveCfg = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x64.Build.0 = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x86.ActiveCfg = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x86.Build.0 = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|ARM64.Build.0 = Debug|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x64.ActiveCfg = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x64.Build.0 = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x86.ActiveCfg = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x86.Build.0 = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|ARM64.ActiveCfg = Release|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|ARM64.Build.0 = Release|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x64.ActiveCfg = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x64.Build.0 = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x86.ActiveCfg = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x86.Build.0 = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|ARM64.Build.0 = Debug|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x64.ActiveCfg = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x64.Build.0 = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x86.ActiveCfg = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x86.Build.0 = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|ARM64.ActiveCfg = Release|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|ARM64.Build.0 = Release|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x64.ActiveCfg = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x64.Build.0 = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x86.ActiveCfg = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x86.Build.0 = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|ARM64.ActiveCfg = Debug|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Debug|ARM64.Build.0 = Debug|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x64.ActiveCfg = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x64.Build.0 = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x86.ActiveCfg = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x86.Build.0 = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|ARM64.ActiveCfg = Release|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Release|ARM64.Build.0 = Release|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Release|x64.ActiveCfg = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x64.Build.0 = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x86.ActiveCfg = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x86.Build.0 = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|ARM64.Build.0 = Debug|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x64.ActiveCfg = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x64.Build.0 = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x86.ActiveCfg = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x86.Build.0 = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|ARM64.ActiveCfg = Release|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|ARM64.Build.0 = Release|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x64.ActiveCfg = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x64.Build.0 = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x86.ActiveCfg = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x86.Build.0 = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|ARM64.Build.0 = Debug|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x64.ActiveCfg = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x64.Build.0 = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x86.ActiveCfg = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x86.Build.0 = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|ARM64.ActiveCfg = Release|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|ARM64.Build.0 = Release|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x64.ActiveCfg = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x64.Build.0 = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x86.ActiveCfg = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x86.Build.0 = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|ARM64.Build.0 = Debug|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x64.ActiveCfg = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x64.Build.0 = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x86.ActiveCfg = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x86.Build.0 = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|ARM64.ActiveCfg = Release|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|ARM64.Build.0 = Release|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x64.ActiveCfg = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x64.Build.0 = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x86.ActiveCfg = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x86.Build.0 = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|ARM64.ActiveCfg = Debug|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|ARM64.Build.0 = Debug|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x64.ActiveCfg = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x64.Build.0 = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x86.ActiveCfg = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x86.Build.0 = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|ARM64.ActiveCfg = Release|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|ARM64.Build.0 = Release|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x64.ActiveCfg = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x64.Build.0 = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x86.ActiveCfg = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x86.Build.0 = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|ARM64.Build.0 = Debug|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x64.ActiveCfg = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x64.Build.0 = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x86.ActiveCfg = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x86.Build.0 = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|ARM64.ActiveCfg = Release|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|ARM64.Build.0 = Release|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x64.ActiveCfg = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x64.Build.0 = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x86.ActiveCfg = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x86.Build.0 = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|ARM64.Build.0 = Debug|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x64.ActiveCfg = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x64.Build.0 = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x86.ActiveCfg = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x86.Build.0 = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|ARM64.ActiveCfg = Release|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|ARM64.Build.0 = Release|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x64.ActiveCfg = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x64.Build.0 = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x86.ActiveCfg = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x86.Build.0 = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|ARM64.ActiveCfg = Debug|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|ARM64.Build.0 = Debug|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x64.ActiveCfg = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x64.Build.0 = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x86.ActiveCfg = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x86.Build.0 = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|ARM64.ActiveCfg = Release|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|ARM64.Build.0 = Release|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x64.ActiveCfg = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x64.Build.0 = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x86.ActiveCfg = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x86.Build.0 = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|ARM64.ActiveCfg = Debug|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|ARM64.Build.0 = Debug|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x64.ActiveCfg = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x64.Build.0 = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x86.ActiveCfg = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x86.Build.0 = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|ARM64.ActiveCfg = Release|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|ARM64.Build.0 = Release|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x64.ActiveCfg = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x64.Build.0 = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x86.ActiveCfg = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x86.Build.0 = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|ARM64.Build.0 = Debug|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x64.ActiveCfg = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x64.Build.0 = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x86.ActiveCfg = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x86.Build.0 = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|ARM64.ActiveCfg = Release|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|ARM64.Build.0 = Release|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x64.ActiveCfg = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x64.Build.0 = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x86.ActiveCfg = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x86.Build.0 = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|ARM64.Build.0 = Debug|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x64.ActiveCfg = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x64.Build.0 = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x86.ActiveCfg = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x86.Build.0 = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|ARM64.ActiveCfg = Release|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|ARM64.Build.0 = Release|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x64.ActiveCfg = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x64.Build.0 = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x86.ActiveCfg = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x86.Build.0 = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|ARM64.Build.0 = Debug|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x64.ActiveCfg = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x64.Build.0 = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x86.ActiveCfg = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x86.Build.0 = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|ARM64.ActiveCfg = Release|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|ARM64.Build.0 = Release|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x64.ActiveCfg = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x64.Build.0 = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x86.ActiveCfg = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x86.Build.0 = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|ARM64.Build.0 = Debug|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x64.ActiveCfg = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x64.Build.0 = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x86.ActiveCfg = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x86.Build.0 = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|ARM64.ActiveCfg = Release|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|ARM64.Build.0 = Release|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x64.ActiveCfg = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x64.Build.0 = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x86.ActiveCfg = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x86.Build.0 = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|ARM64.Build.0 = Debug|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x64.ActiveCfg = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x64.Build.0 = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x86.ActiveCfg = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x86.Build.0 = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|ARM64.ActiveCfg = Release|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|ARM64.Build.0 = Release|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x64.ActiveCfg = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x64.Build.0 = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x86.ActiveCfg = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x86.Build.0 = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|ARM64.Build.0 = Debug|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x64.ActiveCfg = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x64.Build.0 = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x86.ActiveCfg = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x86.Build.0 = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|ARM64.ActiveCfg = Release|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|ARM64.Build.0 = Release|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x64.ActiveCfg = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x64.Build.0 = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x86.ActiveCfg = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x86.Build.0 = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|ARM64.ActiveCfg = Debug|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|ARM64.Build.0 = Debug|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x64.ActiveCfg = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x64.Build.0 = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x86.ActiveCfg = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x86.Build.0 = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|ARM64.ActiveCfg = Release|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|ARM64.Build.0 = Release|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x64.ActiveCfg = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x64.Build.0 = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x86.ActiveCfg = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x86.Build.0 = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|ARM64.Build.0 = Debug|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x64.ActiveCfg = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x64.Build.0 = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x86.ActiveCfg = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x86.Build.0 = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|ARM64.ActiveCfg = Release|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|ARM64.Build.0 = Release|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x64.ActiveCfg = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x64.Build.0 = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x86.ActiveCfg = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x86.Build.0 = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|ARM64.Build.0 = Debug|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x64.ActiveCfg = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x64.Build.0 = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x86.ActiveCfg = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x86.Build.0 = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|ARM64.ActiveCfg = Release|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|ARM64.Build.0 = Release|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x64.ActiveCfg = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x64.Build.0 = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x86.ActiveCfg = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x86.Build.0 = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|ARM64.Build.0 = Debug|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x64.ActiveCfg = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x64.Build.0 = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x86.ActiveCfg = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|ARM64.ActiveCfg = Release|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|ARM64.Build.0 = Release|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x64.ActiveCfg = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x64.Build.0 = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x86.ActiveCfg = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|ARM64.Build.0 = Debug|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x64.ActiveCfg = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x64.Build.0 = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x86.ActiveCfg = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|ARM64.ActiveCfg = Release|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|ARM64.Build.0 = Release|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x64.ActiveCfg = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x64.Build.0 = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x86.ActiveCfg = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|ARM64.Build.0 = Debug|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x64.ActiveCfg = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x64.Build.0 = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x86.ActiveCfg = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|ARM64.ActiveCfg = Release|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|ARM64.Build.0 = Release|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x64.ActiveCfg = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x64.Build.0 = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x86.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|ARM64.Build.0 = Debug|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x64.ActiveCfg = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x64.Build.0 = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x86.ActiveCfg = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x86.Build.0 = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|ARM64.ActiveCfg = Release|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|ARM64.Build.0 = Release|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x64.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x64.Build.0 = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x86.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x86.Build.0 = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|ARM64.ActiveCfg = Debug|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|ARM64.Build.0 = Debug|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x64.ActiveCfg = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x64.Build.0 = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x86.ActiveCfg = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x86.Build.0 = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|ARM64.ActiveCfg = Release|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|ARM64.Build.0 = Release|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x64.ActiveCfg = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x64.Build.0 = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x86.ActiveCfg = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x86.Build.0 = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|ARM64.Build.0 = Debug|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x64.ActiveCfg = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x64.Build.0 = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x86.ActiveCfg = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x86.Build.0 = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|ARM64.ActiveCfg = Release|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|ARM64.Build.0 = Release|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x64.ActiveCfg = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x64.Build.0 = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x86.ActiveCfg = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x86.Build.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.Build.0 = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.Deploy.0 = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.ActiveCfg = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.Build.0 = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.Deploy.0 = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.ActiveCfg = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.Build.0 = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.Deploy.0 = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.ActiveCfg = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.Build.0 = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.Deploy.0 = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.ActiveCfg = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.Build.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.Deploy.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.ActiveCfg = Release|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.Build.0 = Release|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.Deploy.0 = Release|x86 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|ARM64.Build.0 = Debug|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x64.ActiveCfg = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x64.Build.0 = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x86.ActiveCfg = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x86.Build.0 = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|ARM64.ActiveCfg = Release|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|ARM64.Build.0 = Release|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x64.ActiveCfg = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x64.Build.0 = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x86.ActiveCfg = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x86.Build.0 = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|ARM64.Build.0 = Debug|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x64.ActiveCfg = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x64.Build.0 = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x86.ActiveCfg = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x86.Build.0 = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|ARM64.ActiveCfg = Release|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|ARM64.Build.0 = Release|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x64.ActiveCfg = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x64.Build.0 = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x86.ActiveCfg = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x86.Build.0 = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|ARM64.ActiveCfg = Debug|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|ARM64.Build.0 = Debug|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x64.ActiveCfg = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x64.Build.0 = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x86.ActiveCfg = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x86.Build.0 = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|ARM64.ActiveCfg = Release|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|ARM64.Build.0 = Release|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x64.ActiveCfg = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x64.Build.0 = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x86.ActiveCfg = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x86.Build.0 = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|ARM64.Build.0 = Debug|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x64.ActiveCfg = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x64.Build.0 = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x86.ActiveCfg = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x86.Build.0 = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|ARM64.ActiveCfg = Release|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|ARM64.Build.0 = Release|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x64.ActiveCfg = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x64.Build.0 = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x86.ActiveCfg = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x86.Build.0 = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|ARM64.Build.0 = Debug|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x64.ActiveCfg = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x64.Build.0 = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x86.ActiveCfg = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x86.Build.0 = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|ARM64.ActiveCfg = Release|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|ARM64.Build.0 = Release|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x64.ActiveCfg = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x64.Build.0 = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x86.ActiveCfg = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x86.Build.0 = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|ARM64.Build.0 = Debug|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x64.ActiveCfg = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x64.Build.0 = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x86.ActiveCfg = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x86.Build.0 = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|ARM64.ActiveCfg = Release|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|ARM64.Build.0 = Release|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x64.ActiveCfg = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x64.Build.0 = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x86.ActiveCfg = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x86.Build.0 = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|ARM64.ActiveCfg = Debug|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|ARM64.Build.0 = Debug|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x64.ActiveCfg = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x64.Build.0 = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x86.ActiveCfg = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x86.Build.0 = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|ARM64.ActiveCfg = Release|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|ARM64.Build.0 = Release|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x64.ActiveCfg = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x64.Build.0 = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x86.ActiveCfg = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x86.Build.0 = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|ARM64.ActiveCfg = Debug|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|ARM64.Build.0 = Debug|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x64.ActiveCfg = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x64.Build.0 = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x86.ActiveCfg = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x86.Build.0 = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|ARM64.ActiveCfg = Release|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|ARM64.Build.0 = Release|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x64.ActiveCfg = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x64.Build.0 = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x86.ActiveCfg = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x86.Build.0 = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|ARM64.Build.0 = Debug|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x64.ActiveCfg = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x64.Build.0 = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x86.ActiveCfg = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x86.Build.0 = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|ARM64.ActiveCfg = Release|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|ARM64.Build.0 = Release|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x64.ActiveCfg = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x64.Build.0 = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x86.ActiveCfg = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x86.Build.0 = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|ARM64.Build.0 = Debug|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x64.ActiveCfg = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x64.Build.0 = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x86.ActiveCfg = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x86.Build.0 = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|ARM64.ActiveCfg = Release|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|ARM64.Build.0 = Release|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x64.ActiveCfg = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x64.Build.0 = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x86.ActiveCfg = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x86.Build.0 = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|ARM64.Build.0 = Debug|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x64.ActiveCfg = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x64.Build.0 = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x86.ActiveCfg = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x86.Build.0 = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|ARM64.ActiveCfg = Release|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|ARM64.Build.0 = Release|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x64.ActiveCfg = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x64.Build.0 = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x86.ActiveCfg = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x86.Build.0 = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|ARM64.Build.0 = Debug|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x64.ActiveCfg = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x64.Build.0 = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x86.ActiveCfg = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x86.Build.0 = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|ARM64.ActiveCfg = Release|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|ARM64.Build.0 = Release|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x64.ActiveCfg = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x64.Build.0 = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x86.ActiveCfg = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x86.Build.0 = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|ARM64.ActiveCfg = Debug|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|ARM64.Build.0 = Debug|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x64.ActiveCfg = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x64.Build.0 = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x86.ActiveCfg = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x86.Build.0 = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|ARM64.ActiveCfg = Release|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|ARM64.Build.0 = Release|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x64.ActiveCfg = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x64.Build.0 = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x86.ActiveCfg = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x86.Build.0 = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|ARM64.Build.0 = Debug|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x64.ActiveCfg = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x64.Build.0 = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x86.ActiveCfg = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x86.Build.0 = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|ARM64.ActiveCfg = Release|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|ARM64.Build.0 = Release|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x64.ActiveCfg = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x64.Build.0 = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x86.ActiveCfg = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x86.Build.0 = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|ARM64.Build.0 = Debug|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x64.ActiveCfg = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x64.Build.0 = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x86.ActiveCfg = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x86.Build.0 = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|ARM64.ActiveCfg = Release|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|ARM64.Build.0 = Release|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x64.ActiveCfg = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x64.Build.0 = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x86.ActiveCfg = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x86.Build.0 = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|ARM64.Build.0 = Debug|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x64.ActiveCfg = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x64.Build.0 = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x86.ActiveCfg = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x86.Build.0 = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|ARM64.ActiveCfg = Release|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|ARM64.Build.0 = Release|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x64.ActiveCfg = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x64.Build.0 = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.ActiveCfg = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.Build.0 = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.Build.0 = Debug|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x64.ActiveCfg = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x64.Build.0 = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x86.ActiveCfg = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x86.Build.0 = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|ARM64.ActiveCfg = Release|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|ARM64.Build.0 = Release|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x64.ActiveCfg = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x64.Build.0 = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x86.ActiveCfg = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x86.Build.0 = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|ARM64.Build.0 = Debug|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x64.ActiveCfg = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x64.Build.0 = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x86.ActiveCfg = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x86.Build.0 = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|ARM64.ActiveCfg = Release|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|ARM64.Build.0 = Release|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x64.ActiveCfg = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x64.Build.0 = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x86.ActiveCfg = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x86.Build.0 = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|ARM64.Build.0 = Debug|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x64.ActiveCfg = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x64.Build.0 = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x86.ActiveCfg = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x86.Build.0 = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|ARM64.ActiveCfg = Release|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|ARM64.Build.0 = Release|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x64.ActiveCfg = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x64.Build.0 = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x86.ActiveCfg = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x86.Build.0 = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|ARM64.Build.0 = Debug|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x64.ActiveCfg = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x64.Build.0 = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x86.ActiveCfg = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x86.Build.0 = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|ARM64.ActiveCfg = Release|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|ARM64.Build.0 = Release|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x64.ActiveCfg = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x64.Build.0 = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x86.ActiveCfg = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x86.Build.0 = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|ARM64.Build.0 = Debug|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x64.ActiveCfg = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x64.Build.0 = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x86.ActiveCfg = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x86.Build.0 = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|ARM64.ActiveCfg = Release|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|ARM64.Build.0 = Release|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x64.ActiveCfg = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x64.Build.0 = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x86.ActiveCfg = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x86.Build.0 = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|ARM64.ActiveCfg = Debug|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|ARM64.Build.0 = Debug|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x64.ActiveCfg = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x64.Build.0 = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x86.ActiveCfg = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x86.Build.0 = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|ARM64.ActiveCfg = Release|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|ARM64.Build.0 = Release|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x64.ActiveCfg = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x64.Build.0 = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x86.ActiveCfg = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x86.Build.0 = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|ARM64.Build.0 = Debug|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x64.ActiveCfg = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x64.Build.0 = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x86.ActiveCfg = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x86.Build.0 = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|ARM64.ActiveCfg = Release|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|ARM64.Build.0 = Release|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x64.ActiveCfg = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x64.Build.0 = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x86.ActiveCfg = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x86.Build.0 = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|ARM64.Build.0 = Debug|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x64.ActiveCfg = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x64.Build.0 = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x86.ActiveCfg = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x86.Build.0 = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|ARM64.ActiveCfg = Release|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|ARM64.Build.0 = Release|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x64.ActiveCfg = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x64.Build.0 = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x86.ActiveCfg = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x86.Build.0 = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|ARM64.Build.0 = Debug|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x64.ActiveCfg = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x64.Build.0 = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x86.ActiveCfg = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x86.Build.0 = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|ARM64.ActiveCfg = Release|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|ARM64.Build.0 = Release|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x64.ActiveCfg = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x64.Build.0 = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x86.ActiveCfg = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x86.Build.0 = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|ARM64.Build.0 = Debug|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x64.ActiveCfg = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x64.Build.0 = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x86.ActiveCfg = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x86.Build.0 = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|ARM64.ActiveCfg = Release|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|ARM64.Build.0 = Release|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x64.ActiveCfg = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x64.Build.0 = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x86.ActiveCfg = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x86.Build.0 = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|ARM64.Build.0 = Debug|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x64.ActiveCfg = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x64.Build.0 = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x86.ActiveCfg = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x86.Build.0 = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|ARM64.ActiveCfg = Release|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|ARM64.Build.0 = Release|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x64.ActiveCfg = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x64.Build.0 = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x86.ActiveCfg = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x86.Build.0 = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|ARM64.Build.0 = Debug|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x64.ActiveCfg = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x64.Build.0 = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x86.ActiveCfg = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x86.Build.0 = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|ARM64.ActiveCfg = Release|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|ARM64.Build.0 = Release|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x64.ActiveCfg = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x64.Build.0 = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x86.ActiveCfg = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x86.Build.0 = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|ARM64.Build.0 = Debug|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x64.ActiveCfg = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x64.Build.0 = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x86.ActiveCfg = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x86.Build.0 = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|ARM64.ActiveCfg = Release|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|ARM64.Build.0 = Release|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x64.ActiveCfg = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x64.Build.0 = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x86.ActiveCfg = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x86.Build.0 = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|ARM64.Build.0 = Debug|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x64.ActiveCfg = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x64.Build.0 = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x86.ActiveCfg = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x86.Build.0 = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|ARM64.ActiveCfg = Release|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|ARM64.Build.0 = Release|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x64.ActiveCfg = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x64.Build.0 = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x86.ActiveCfg = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x86.Build.0 = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|ARM64.Build.0 = Debug|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x64.ActiveCfg = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x64.Build.0 = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x86.ActiveCfg = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x86.Build.0 = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|ARM64.ActiveCfg = Release|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|ARM64.Build.0 = Release|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x64.ActiveCfg = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x64.Build.0 = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x86.ActiveCfg = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x86.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {3BB8493E-D18E-4485-A320-CB40F90F55AE} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {1A066C63-64B3-45F8-92FE-664E1CCE8077} = {1AFB6476-670D-4E80-A464-657E01DFF482} {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {51920F1F-C28C-4ADF-8660-4238766796C2} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {2151F984-E006-4A9F-92EF-C6DDE3DC8413} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {6C7F47CC-2151-44A3-A546-41C70025132C} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} = {6C7F47CC-2151-44A3-A546-41C70025132C} {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} = {6C7F47CC-2151-44A3-A546-41C70025132C} {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8} = {6C7F47CC-2151-44A3-A546-41C70025132C} {17DA04DF-E393-4397-9CF0-84DABE11032E} = {1AFB6476-670D-4E80-A464-657E01DFF482} {38BDB927-829B-4C65-9CD9-93FB05D66D65} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {FF742965-9A80-41A5-B042-D6C7D3A21708} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {4AFC9975-2456-4C70-94A4-84073C1CED93} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {59BD9891-3837-438A-958D-ADC7F91F6F7E} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4D971245-7A70-41D5-BAA0-DDB5684CAF51} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {74F1B9ED-F59C-4FE7-B473-7B453E30837E} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {F8B870EB-D5F5-45BA-9CF7-A5C459818820} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {E364F67B-BB12-4E91-B639-355866EBCD8B} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {2F305555-C296-497E-AC20-5FA1B237996A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {AF2349B8-E5B6-4004-9502-687C1C7730B1} = {2F305555-C296-497E-AC20-5FA1B237996A} {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} = {2F305555-C296-497E-AC20-5FA1B237996A} {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A} = {2F305555-C296-497E-AC20-5FA1B237996A} {DA425894-6E13-404F-8DCB-78584EC0557A} = {2F305555-C296-497E-AC20-5FA1B237996A} {060D75DA-2D1C-48E6-A4A1-6F0718B64661} = {2F305555-C296-497E-AC20-5FA1B237996A} {748417CA-F17E-487F-9411-CAFB6D3F4877} = {2F305555-C296-497E-AC20-5FA1B237996A} {217DF501-135C-4E38-BFC8-99D4821032EA} = {2F305555-C296-497E-AC20-5FA1B237996A} {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {F055103B-F80B-4D0C-BF48-057C55620033} = {5A7818A8-109C-4E1C-850D-1A654E234B0E} {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {08C8C05F-0362-41BC-818C-724572DF8B06} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {5D00D290-4016-4CFE-9E41-1E7C724509BA} = {1AFB6476-670D-4E80-A464-657E01DFF482} {4AED67B6-55FD-486F-B917-E543DEE2CB3C} = {1AFB6476-670D-4E80-A464-657E01DFF482} {42851751-CBC8-45A6-97F5-7A0753F7B4D1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E} = {2F305555-C296-497E-AC20-5FA1B237996A} {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD} = {2F305555-C296-497E-AC20-5FA1B237996A} {655C9AF2-18D3-4DA6-80E4-85504A7722BA} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {BA58206B-1493-4C75-BFEA-A85768A1E156} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {1D78B84B-CA39-406C-98F4-71F7EC266CC0} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {03276A39-D4E9-417C-8FFD-200B0EE5E871} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {B81FB7B6-D30E-428F-908A-41422EFC1172} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0F85E674-34AE-443D-954C-8321EB8B93B1} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {632BBE62-5421-49EA-835A-7FFA4F499BD6} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4FA206A5-F69F-4193-BF8F-F6EEB496734C} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} = {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {DA5A6FE9-0040-40CC-83CC-764AE5306590} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0351ADA4-0C32-4652-9BA0-41F7B602372B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} = {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} {6955446D-23F7-4023-9BB3-8657F904AF99} = {1AFB6476-670D-4E80-A464-657E01DFF482} {58736667-1027-4AD7-BFDF-7A3A6474103A} = {5A7818A8-109C-4E1C-850D-1A654E234B0E} {D92131D6-7610-4D60-A7DB-1C169783F83B} = {1AFB6476-670D-4E80-A464-657E01DFF482} {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {0B593A6C-4143-4337-860E-DB5710FB87DB} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {1AFB6476-670D-4E80-A464-657E01DFF482} {5A7818A8-109C-4E1C-850D-1A654E234B0E} = {1AFB6476-670D-4E80-A464-657E01DFF482} {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} = {1AFB6476-670D-4E80-A464-657E01DFF482} {7319089E-46D6-4400-BC65-E39BDF1416EE} = {1AFB6476-670D-4E80-A464-657E01DFF482} {CABA8DFB-823B-4BF2-93AC-3F31984150D9} = {1AFB6476-670D-4E80-A464-657E01DFF482} {98537082-0FDB-40DE-ABD8-0DC5A4269BAB} = {1AFB6476-670D-4E80-A464-657E01DFF482} {B39DC643-4663-475E-B329-03F0C9918D48} = {1AFB6476-670D-4E80-A464-657E01DFF482} {8F62026A-294B-41C6-8839-87463613F216} = {1AFB6476-670D-4E80-A464-657E01DFF482} {C3A17DCA-217B-462C-BB0C-BE086AF80081} = {1AFB6476-670D-4E80-A464-657E01DFF482} {69E1EE8D-143A-4060-9129-4658ACF14AAF} = {2F305555-C296-497E-AC20-5FA1B237996A} {ECC20689-002A-4354-95A6-B58DF089C6FF} = {2F305555-C296-497E-AC20-5FA1B237996A} {4BABF3FE-3451-42FD-873F-3C332E18DCEF} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0648DF05-5DDA-4BE1-B5F2-584926EBDB65} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {E496B7FC-1E99-4BAB-849B-0E8367040B02} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {7F4B3A60-BC27-45A7-8000-68B0B6EA7466} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {8DF78B53-200E-451F-9328-01EB907193AE} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {23D2070D-E4AD-4ADD-85A7-083D9C76AD49} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {62173D9A-6724-4C00-A1C8-FB646480A9EC} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {127F38E0-40AA-4594-B955-5616BF206882} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} = {127F38E0-40AA-4594-B955-5616BF206882} {D940E07F-532C-4FF3-883F-790DA014F19A} = {127F38E0-40AA-4594-B955-5616BF206882} {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {3E424AD2-19E5-4AE6-B833-F53963EB5FC1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {106CBECA-0701-4FC3-838C-9DF816A19AE2} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2D604C07-51FC-46BB-9EB7-75AECC7F5E81} = {106CBECA-0701-4FC3-838C-9DF816A19AE2} {2EDB3EB4-FA92-4BFF-B2D8-566584837231} = {106CBECA-0701-4FC3-838C-9DF816A19AE2} {48804216-2A0E-4168-A6D8-9CD068D14227} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {FF1D7936-842A-4BBB-8BEA-E9FE796DE700} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {AC2857B4-103D-4D6D-9740-926EBF785042} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {11491FD8-F921-48BF-880C-7FEA185B80A1} = {2F305555-C296-497E-AC20-5FA1B237996A} {F40C3397-1834-4530-B2D9-8F8B8456BCDF} = {2F305555-C296-497E-AC20-5FA1B237996A} {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4ED320BC-BA04-4D42-8D15-CBE62151F08B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {322566EF-20DC-43A6-B9F8-616AF942579A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {E94FD11C-0591-456F-899F-EFC0CA548336} = {322566EF-20DC-43A6-B9F8-616AF942579A} {782A61BE-9D85-4081-B35C-1CCC9DCC1E88} = {322566EF-20DC-43A6-B9F8-616AF942579A} {809AA252-E17A-4FA2-B0A1-0450976B763F} = {2F305555-C296-497E-AC20-5FA1B237996A} {133281D8-1BCE-4D07-B31E-796612A9609E} = {2F305555-C296-497E-AC20-5FA1B237996A} {805306FF-A562-4415-8DEF-E493BDC45918} = {2F305555-C296-497E-AC20-5FA1B237996A} {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3} = {2F305555-C296-497E-AC20-5FA1B237996A} {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2} = {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9} = {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} {9F94B303-5E21-4364-9362-64426F8DB932} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E} = {322566EF-20DC-43A6-B9F8-616AF942579A} {F7C8C0F1-5431-4347-89D0-8E5354F93CF2} = {2F305555-C296-497E-AC20-5FA1B237996A} {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC} = {2F305555-C296-497E-AC20-5FA1B237996A} {04B193D7-3E21-46B8-A958-89B63A8A69DE} = {2F305555-C296-497E-AC20-5FA1B237996A} {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {FD464B4C-2F68-4D06-91E7-4208146C41F5} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {020A7474-3601-4160-A159-D7B70B77B15F} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {27718999-C175-450A-861C-89F911E16A88} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {1DBBB112-4BB1-444B-8EBB-E66555C76BA6} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {5A1DB2F0-0715-4B3B-98E6-79BC41540045} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {93B72A06-C8BD-484F-A6F7-C9F280B150BF} = {6C7F47CC-2151-44A3-A546-41C70025132C} {18B3DB45-4FFE-4D01-97D6-5223FEEE1853} = {6C7F47CC-2151-44A3-A546-41C70025132C} {0F14491C-6369-4C45-AAA8-135814E66E6B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {34A354C5-23C7-4343-916C-C52DAF4FC39D} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {3264DF53-C805-4B0C-867C-FCEAF7AEF762} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {31CAD28E-778A-441C-85BC-40AB3EAA2A10} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {25C91A4E-BA4E-467A-85CD-8B62545BF674} = {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1} = {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} {212AD910-8488-4036-BE20-326931B75FB2} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {7AC943C9-52E8-44CF-9083-744D8049667B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A} = {7AC943C9-52E8-44CF-9083-744D8049667B} {92C39820-9F84-4529-BC7D-22AAE514D63B} = {7AC943C9-52E8-44CF-9083-744D8049667B} {515554D1-D004-4F7F-A107-2211FC0F6B2C} = {7AC943C9-52E8-44CF-9083-744D8049667B} {C97D9A5D-206C-454E-997E-009E227D7F02} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {31D1C81D-765F-4446-AA62-E743F6325049} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {B41B888C-7DB8-4747-B262-4062E05A230D} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {AB82E5DD-C32D-4F28-9746-2C780846188E} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {E69B044A-2F8A-45AA-AD0B-256C59421807} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {C604B37E-9D0E-4484-8778-E8B31B0E1B3A} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788} = {1AFB6476-670D-4E80-A464-657E01DFF482} {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97} = {1AFB6476-670D-4E80-A464-657E01DFF482} {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {A1425B53-3D61-4679-8623-E64A0D3D0A48} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {ED9A1AC6-AEB0-4569-A6E9-E1696182B545} = {2F305555-C296-497E-AC20-5FA1B237996A} {5A5DD09D-723A-44D3-8F2B-293584C3D731} = {2F305555-C296-497E-AC20-5FA1B237996A} {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9} = {2F305555-C296-497E-AC20-5FA1B237996A} {54F7C616-FD41-4E62-BFF9-015686914F4D} = {2F305555-C296-497E-AC20-5FA1B237996A} {143F13E3-D2E3-4D83-B035-356612D99956} = {2F305555-C296-497E-AC20-5FA1B237996A} {56CC2F10-6E41-453D-BE16-C593A5E58482} = {2F305555-C296-497E-AC20-5FA1B237996A} {CA5518ED-0458-4B09-8F53-4122B9888655} = {2F305555-C296-497E-AC20-5FA1B237996A} {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D} = {2F305555-C296-497E-AC20-5FA1B237996A} {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA} = {2F305555-C296-497E-AC20-5FA1B237996A} {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2833C9C6-AB32-4048-A5C7-A70898337B57} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {50B82783-242F-42D2-BC03-B3430BF01354} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {A663E672-B26D-4EC0-BEAB-FE2E424AC46F} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {8A08D663-4995-40E3-B42C-3F910625F284} = {322566EF-20DC-43A6-B9F8-616AF942579A} {D962A009-834F-4EEC-AABB-430DF8F98E39} = {322566EF-20DC-43A6-B9F8-616AF942579A} {D9C5DE64-6849-4278-91AD-9660AECF2876} = {322566EF-20DC-43A6-B9F8-616AF942579A} {9873BA05-4C41-4819-9283-CF45D795431B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {FC373B24-3293-453C-AAF5-CF2909DCEE6A} = {9873BA05-4C41-4819-9283-CF45D795431B} {9CE59ED5-7087-4353-88EB-788038A73CEC} = {1AFB6476-670D-4E80-A464-657E01DFF482} {FD86C06A-FB54-4D5E-9831-1CDADF60D45F} = {929C1324-22E8-4412-A9A8-80E85F3985A5} {697C6AF9-0A48-49A9-866C-67DA12384015} = {929C1324-22E8-4412-A9A8-80E85F3985A5} {929C1324-22E8-4412-A9A8-80E85F3985A5} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {9EBAA524-0EDA-470B-95D4-39383285CBB2} = {1AFB6476-670D-4E80-A464-657E01DFF482} {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {D095BE44-1F2E-463E-A494-121892A75EA2} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {90F9FA90-2C20-4004-96E6-F3B78151F5A5} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {3B227528-4BA6-4CAF-B44A-A10C78A64849} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {F5E1146E-B7B3-4E11-85FD-270A500BD78C} = {3B227528-4BA6-4CAF-B44A-A10C78A64849} {3157FA75-86CF-4EE2-8F62-C43F776493C6} = {3B227528-4BA6-4CAF-B44A-A10C78A64849} {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA} = {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} {B9420661-B0E4-4241-ABD4-4A27A1F64250} = {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {C3A2F9D1-7930-4EF4-A6FC-7EE0A99821D0} EndGlobalSection EndGlobal
Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.32014.148 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "runner", "src\runner\runner.vcxproj", "{9412D5C6-2CF2-4FC2-A601-B55508EA9B27}" ProjectSection(ProjectDependencies) = postProject {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} = {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} = {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} {0B593A6C-4143-4337-860E-DB5710FB87DB} = {0B593A6C-4143-4337-860E-DB5710FB87DB} {17DA04DF-E393-4397-9CF0-84DABE11032E} = {17DA04DF-E393-4397-9CF0-84DABE11032E} {217DF501-135C-4E38-BFC8-99D4821032EA} = {217DF501-135C-4E38-BFC8-99D4821032EA} {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} = {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} {48804216-2A0E-4168-A6D8-9CD068D14227} = {48804216-2A0E-4168-A6D8-9CD068D14227} {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} = {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} = {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} {655C9AF2-18D3-4DA6-80E4-85504A7722BA} = {655C9AF2-18D3-4DA6-80E4-85504A7722BA} {69E1EE8D-143A-4060-9129-4658ACF14AAF} = {69E1EE8D-143A-4060-9129-4658ACF14AAF} {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} = {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} = {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} {AF2349B8-E5B6-4004-9502-687C1C7730B1} = {AF2349B8-E5B6-4004-9502-687C1C7730B1} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {B25AC7A5-FB9F-4789-B392-D5C85E948670} {BA58206B-1493-4C75-BFEA-A85768A1E156} = {BA58206B-1493-4C75-BFEA-A85768A1E156} {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D} = {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D} {D940E07F-532C-4FF3-883F-790DA014F19A} = {D940E07F-532C-4FF3-883F-790DA014F19A} {DA425894-6E13-404F-8DCB-78584EC0557A} = {DA425894-6E13-404F-8DCB-78584EC0557A} {E364F67B-BB12-4E91-B639-355866EBCD8B} = {E364F67B-BB12-4E91-B639-355866EBCD8B} {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "modules", "modules", "{4574FDD0-F61D-4376-98BF-E5A1262C11EC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "interface", "interface", "{3BB8493E-D18E-4485-A320-CB40F90F55AE}" ProjectSection(SolutionItems) = preProject src\modules\interface\powertoy_module_interface.h = src\modules\interface\powertoy_module_interface.h EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "fancyzones", "fancyzones", "{D1D6BC88-09AE-4FB4-AD24-5DED46A791DD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZonesLib", "src\modules\fancyzones\FancyZonesLib\FancyZonesLib.vcxproj", "{F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnitTests-FancyZones", "src\modules\fancyzones\FancyZonesTests\UnitTests\UnitTests.vcxproj", "{9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}" ProjectSection(ProjectDependencies) = postProject {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "common", "common", "{1AFB6476-670D-4E80-A464-657E01DFF482}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnitTests-CommonLib", "src\common\UnitTests-CommonLib\UnitTests-CommonLib.vcxproj", "{1A066C63-64B3-45F8-92FE-664E1CCE8077}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FancyZonesEditor", "src\modules\fancyzones\editor\FancyZonesEditor\FancyZonesEditor.csproj", "{5CCC8468-DEC8-4D36-99D4-5C891BEBD481}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "powerrename", "powerrename", "{89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameExt", "src\modules\powerrename\dll\PowerRenameExt.vcxproj", "{B25AC7A5-FB9F-4789-B392-D5C85E948670}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameLib", "src\modules\powerrename\lib\PowerRenameLib.vcxproj", "{51920F1F-C28C-4ADF-8660-4238766796C2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameTest", "src\modules\powerrename\testapp\PowerRenameTest.vcxproj", "{A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameUnitTests", "src\modules\powerrename\unittests\PowerRenameLibUnitTests.vcxproj", "{2151F984-E006-4A9F-92EF-C6DDE3DC8413}" ProjectSection(ProjectDependencies) = postProject {51920F1F-C28C-4ADF-8660-4238766796C2} = {51920F1F-C28C-4ADF-8660-4238766796C2} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {B25AC7A5-FB9F-4789-B392-D5C85E948670} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ModuleTemplateCompileTest", "tools\project_template\ModuleTemplate\ModuleTemplateCompileTest.vcxproj", "{64A80062-4D8B-4229-8A38-DFA1D7497749}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManager", "src\modules\keyboardmanager\dll\KeyboardManager.vcxproj", "{89F34AF7-1C34-4A72-AA6E-534BCF972BD9}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "imageresizer", "imageresizer", "{6C7F47CC-2151-44A3-A546-41C70025132C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageResizerUI", "src\modules\imageresizer\ui\ImageResizerUI.csproj", "{2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerExt", "src\modules\imageresizer\dll\ImageResizerExt.vcxproj", "{0B43679E-EDFA-4DA0-AD30-F4628B308B1B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ImageResizerUITest", "src\modules\imageresizer\tests\ImageResizerUITest.csproj", "{E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.ActionRunner", "src\ActionRunner\ActionRunner.vcxproj", "{D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}" ProjectSection(ProjectDependencies) = postProject {17DA04DF-E393-4397-9CF0-84DABE11032E} = {17DA04DF-E393-4397-9CF0-84DABE11032E} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ApplicationUpdate", "src\common\updating\updating.vcxproj", "{17DA04DF-E393-4397-9CF0-84DABE11032E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "keyboardmanager", "keyboardmanager", "{38BDB927-829B-4C65-9CD9-93FB05D66D65}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerCommon", "src\modules\keyboardmanager\common\KeyboardManagerCommon.vcxproj", "{8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "launcher", "launcher", "{C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Infrastructure", "src\modules\launcher\Wox.Infrastructure\Wox.Infrastructure.csproj", "{4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Plugin", "src\modules\launcher\Wox.Plugin\Wox.Plugin.csproj", "{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Wox.Test", "src\modules\launcher\Wox.Test\Wox.Test.csproj", "{FF742965-9A80-41A5-B042-D6C7D3A21708}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{4AFC9975-2456-4C70-94A4-84073C1CED93}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Calculator", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Calculator\Microsoft.PowerToys.Run.Plugin.Calculator.csproj", "{59BD9891-3837-438A-958D-ADC7F91F6F7E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.VSCodeWorkspaces", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.VSCodeWorkspaces\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.csproj", "{4D971245-7A70-41D5-BAA0-DDB5684CAF51}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowWalker", "src\modules\launcher\Plugins\Microsoft.Plugin.WindowWalker\Microsoft.Plugin.WindowWalker.csproj", "{74F1B9ED-F59C-4FE7-B473-7B453E30837E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Program", "src\modules\launcher\Plugins\Microsoft.Plugin.Program\Microsoft.Plugin.Program.csproj", "{FDB3555B-58EF-4AE6-B5F1-904719637AB4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Shell", "src\modules\launcher\Plugins\Microsoft.Plugin.Shell\Microsoft.Plugin.Shell.csproj", "{C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Indexer", "src\modules\launcher\Plugins\Microsoft.Plugin.Indexer\Microsoft.Plugin.Indexer.csproj", "{F8B870EB-D5F5-45BA-9CF7-A5C459818820}" ProjectSection(ProjectDependencies) = postProject {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} = {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.Launcher", "src\modules\launcher\Microsoft.Launcher\Microsoft.Launcher.vcxproj", "{E364F67B-BB12-4E91-B639-355866EBCD8B}" ProjectSection(ProjectDependencies) = postProject {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} = {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerLauncher", "src\modules\launcher\PowerLauncher\PowerLauncher.csproj", "{F97E5003-F263-4D4A-A964-0F1F3C82DEF2}" ProjectSection(ProjectDependencies) = postProject {03276A39-D4E9-417C-8FFD-200B0EE5E871} = {03276A39-D4E9-417C-8FFD-200B0EE5E871} {0351ADA4-0C32-4652-9BA0-41F7B602372B} = {0351ADA4-0C32-4652-9BA0-41F7B602372B} {4BABF3FE-3451-42FD-873F-3C332E18DCEF} = {4BABF3FE-3451-42FD-873F-3C332E18DCEF} {4D971245-7A70-41D5-BAA0-DDB5684CAF51} = {4D971245-7A70-41D5-BAA0-DDB5684CAF51} {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} = {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {5043CECE-E6A7-4867-9CBE-02D27D83747A} {59BD9891-3837-438A-958D-ADC7F91F6F7E} = {59BD9891-3837-438A-958D-ADC7F91F6F7E} {5A1DB2F0-0715-4B3B-98E6-79BC41540045} = {5A1DB2F0-0715-4B3B-98E6-79BC41540045} {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} = {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} {74F1B9ED-F59C-4FE7-B473-7B453E30837E} = {74F1B9ED-F59C-4FE7-B473-7B453E30837E} {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} = {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} {9F94B303-5E21-4364-9362-64426F8DB932} = {9F94B303-5E21-4364-9362-64426F8DB932} {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} = {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} = {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} = {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} {D095BE44-1F2E-463E-A494-121892A75EA2} = {D095BE44-1F2E-463E-A494-121892A75EA2} {F8B870EB-D5F5-45BA-9CF7-A5C459818820} = {F8B870EB-D5F5-45BA-9CF7-A5C459818820} {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} = {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {FDB3555B-58EF-4AE6-B5F1-904719637AB4} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{E775CC2C-24CB-48D6-9C3A-BE4CCE0DB17A}" ProjectSection(SolutionItems) = preProject src\tests\win-app-driver\README.md = src\tests\win-app-driver\README.md EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "previewpane", "previewpane", "{2F305555-C296-497E-AC20-5FA1B237996A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PreviewHandlerCommon", "src\modules\previewpane\Common\PreviewHandlerCommon.csproj", "{AF2349B8-E5B6-4004-9502-687C1C7730B1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MarkdownPreviewHandler", "src\modules\previewpane\MarkdownPreviewHandler\MarkdownPreviewHandler.csproj", "{6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-MarkdownPreviewHandler", "src\modules\previewpane\UnitTests-MarkdownPreviewHandler\UnitTests-MarkdownPreviewHandler.csproj", "{A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SvgPreviewHandler", "src\modules\previewpane\SvgPreviewHandler\SvgPreviewHandler.csproj", "{DA425894-6E13-404F-8DCB-78584EC0557A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-SvgPreviewHandler", "src\modules\previewpane\UnitTests-SvgPreviewHandler\UnitTests-SvgPreviewHandler.csproj", "{060D75DA-2D1C-48E6-A4A1-6F0718B64661}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PreviewHandlerCommon", "src\modules\previewpane\UnitTests-PreviewHandlerCommon\UnitTests-PreviewHandlerCommon.csproj", "{748417CA-F17E-487F-9411-CAFB6D3F4877}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "powerpreview", "src\modules\previewpane\powerpreview\powerpreview.vcxproj", "{217DF501-135C-4E38-BFC8-99D4821032EA}" ProjectSection(ProjectDependencies) = postProject {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "settings-ui", "settings-ui", "{C3081D9A-1586-441A-B5F4-ED815B3719C1}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4981CCD1-4CD9-4A49-B240-00AA46493FF8}" ProjectSection(SolutionItems) = preProject src\.editorconfig = src\.editorconfig .vsconfig = .vsconfig Directory.Build.props = Directory.Build.props Directory.Build.targets = Directory.Build.targets Directory.Packages.props = Directory.Packages.props Solution.props = Solution.props EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Settings.UI.Library", "src\settings-ui\Settings.UI.Library\Settings.UI.Library.csproj", "{B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.Interop", "src\common\interop\PowerToys.Interop.vcxproj", "{F055103B-F80B-4D0C-BF48-057C55620033}" ProjectSection(ProjectDependencies) = postProject {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Folder", "src\modules\launcher\Plugins\Microsoft.Plugin.Folder\Microsoft.Plugin.Folder.csproj", "{787B8AA6-CA93-4C84-96FE-DF31110AD1C4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerLauncher.Telemetry", "src\modules\launcher\PowerLauncher.Telemetry\PowerLauncher.Telemetry.csproj", "{08C8C05F-0362-41BC-818C-724572DF8B06}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedTelemetry", "src\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj", "{5D00D290-4016-4CFE-9E41-1E7C724509BA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ManagedCommon", "src\common\ManagedCommon\ManagedCommon.csproj", "{4AED67B6-55FD-486F-B917-E543DEE2CB3C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Program.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Program.UnitTests\Microsoft.Plugin.Program.UnitTests.csproj", "{42851751-CBC8-45A6-97F5-7A0753F7B4D1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-SvgThumbnailProvider", "src\modules\previewpane\UnitTests-SvgThumbnailProvider\UnitTests-SvgThumbnailProvider.csproj", "{1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SvgThumbnailProvider", "src\modules\previewpane\SvgThumbnailProvider\SvgThumbnailProvider.csproj", "{8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ColorPicker", "src\modules\colorPicker\ColorPicker\ColorPicker.vcxproj", "{655C9AF2-18D3-4DA6-80E4-85504A7722BA}" ProjectSection(ProjectDependencies) = postProject {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} = {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ColorPickerUI", "src\modules\colorPicker\ColorPickerUI\ColorPickerUI.csproj", "{BA58206B-1493-4C75-BFEA-A85768A1E156}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "colorpicker", "colorpicker", "{1D78B84B-CA39-406C-98F4-71F7EC266CC0}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Uri", "src\modules\launcher\Plugins\Microsoft.Plugin.Uri\Microsoft.Plugin.Uri.csproj", "{03276A39-D4E9-417C-8FFD-200B0EE5E871}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Uri.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Uri.UnitTests\Microsoft.Plugin.Uri.UnitTests.csproj", "{B81FB7B6-D30E-428F-908A-41422EFC1172}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Settings.UI.UnitTests", "src\settings-ui\Settings.UI.UnitTests\Settings.UI.UnitTests.csproj", "{0F85E674-34AE-443D-954C-8321EB8B93B1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest\Microsoft.PowerToys.Run.Plugin.Calculator.UnitTest.csproj", "{632BBE62-5421-49EA-835A-7FFA4F499BD6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.Folder.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.Folder.UnitTests\Microsoft.Plugin.Folder.UnitTests.csproj", "{4FA206A5-F69F-4193-BF8F-F6EEB496734C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTest-ColorPickerUI", "src\modules\colorPicker\UnitTest-ColorPickerUI\UnitTest-ColorPickerUI.csproj", "{090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "spdlog", "src\logging\logging.vcxproj", "{7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.System", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.System\Microsoft.PowerToys.Run.Plugin.System.csproj", "{FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.System.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.System.UnitTests\Microsoft.PowerToys.Run.Plugin.System.UnitTests.csproj", "{DA5A6FE9-0040-40CC-83CC-764AE5306590}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Service", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Service\Microsoft.PowerToys.Run.Plugin.Service.csproj", "{0351ADA4-0C32-4652-9BA0-41F7B602372B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "logger", "src\common\logger\logger.vcxproj", "{D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}" ProjectSection(ProjectDependencies) = postProject {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} = {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SettingsAPI", "src\common\SettingsAPI\SettingsAPI.vcxproj", "{6955446D-23F7-4023-9BB3-8657F904AF99}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Interop.Tests", "src\common\interop\interop-tests\Microsoft.Interop.Tests.csproj", "{58736667-1027-4AD7-BFDF-7A3A6474103A}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "notifications", "notifications", "{D92131D6-7610-4D60-A7DB-1C169783F83B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Notifications", "src\common\notifications\notifications.vcxproj", "{1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BackgroundActivatorDLL", "src\common\notifications\BackgroundActivatorDLL\BackgroundActivatorDLL.vcxproj", "{031AC72E-FA28-4AB7-B690-6F7B9C28AA73}" ProjectSection(ProjectDependencies) = postProject {0B593A6C-4143-4337-860E-DB5710FB87DB} = {0B593A6C-4143-4337-860E-DB5710FB87DB} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BackgroundActivator", "src\common\notifications\BackgroundActivator\BackgroundActivator.vcxproj", "{0B593A6C-4143-4337-860E-DB5710FB87DB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Version", "src\common\version\version.vcxproj", "{CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "interop", "interop", "{5A7818A8-109C-4E1C-850D-1A654E234B0E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "log", "log", "{E4E03FE0-94FD-47C7-88C5-F17D0AA549D3}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "COMUtils", "src\common\COMUtils\COMUtils.vcxproj", "{7319089E-46D6-4400-BC65-E39BDF1416EE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Display", "src\common\Display\Display.vcxproj", "{CABA8DFB-823B-4BF2-93AC-3F31984150D9}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Themes", "src\common\Themes\Themes.vcxproj", "{98537082-0FDB-40DE-ABD8-0DC5A4269BAB}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "utils", "utils", "{B39DC643-4663-475E-B329-03F0C9918D48}" ProjectSection(SolutionItems) = preProject src\common\utils\appMutex.h = src\common\utils\appMutex.h src\common\utils\color.h = src\common\utils\color.h src\common\utils\com_object_factory.h = src\common\utils\com_object_factory.h src\common\utils\elevation.h = src\common\utils\elevation.h src\common\utils\EventLocker.h = src\common\utils\EventLocker.h src\common\utils\EventWaiter.h = src\common\utils\EventWaiter.h src\common\utils\excluded_apps.h = src\common\utils\excluded_apps.h src\common\utils\exec.h = src\common\utils\exec.h src\common\utils\game_mode.h = src\common\utils\game_mode.h src\common\utils\gpo.h = src\common\utils\gpo.h src\common\utils\HDropIterator.h = src\common\utils\HDropIterator.h src\common\utils\HttpClient.h = src\common\utils\HttpClient.h src\common\utils\json.h = src\common\utils\json.h src\common\utils\logger_helper.h = src\common\utils\logger_helper.h src\common\utils\modulesRegistry.h = src\common\utils\modulesRegistry.h src\common\utils\MsiUtils.h = src\common\utils\MsiUtils.h src\common\utils\MsWindowsSettings.h = src\common\utils\MsWindowsSettings.h src\common\utils\os-detect.h = src\common\utils\os-detect.h src\common\utils\package.h = src\common\utils\package.h src\common\utils\ProcessWaiter.h = src\common\utils\ProcessWaiter.h src\common\utils\process_path.h = src\common\utils\process_path.h src\common\utils\registry.h = src\common\utils\registry.h src\common\utils\resources.h = src\common\utils\resources.h src\common\utils\serialized.h = src\common\utils\serialized.h src\common\utils\string_utils.h = src\common\utils\string_utils.h src\common\utils\timeutil.h = src\common\utils\timeutil.h src\common\utils\UnhandledExceptionHandler.h = src\common\utils\UnhandledExceptionHandler.h src\common\utils\winapi_error.h = src\common\utils\winapi_error.h src\common\utils\window.h = src\common\utils\window.h EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Telemetry", "Telemetry", "{8F62026A-294B-41C6-8839-87463613F216}" ProjectSection(SolutionItems) = preProject src\common\Telemetry\ProjectTelemetry.h = src\common\Telemetry\ProjectTelemetry.h src\common\Telemetry\TelemetryBase.cs = src\common\Telemetry\TelemetryBase.cs src\common\Telemetry\TraceLoggingDefines.h = src\common\Telemetry\TraceLoggingDefines.h EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common.UI", "src\common\Common.UI\Common.UI.csproj", "{C3A17DCA-217B-462C-BB0C-BE086AF80081}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PdfPreviewHandler", "src\modules\previewpane\PdfPreviewHandler\PdfPreviewHandler.csproj", "{69E1EE8D-143A-4060-9129-4658ACF14AAF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PdfPreviewHandler", "src\modules\previewpane\UnitTests-PdfPreviewHandler\UnitTests-PdfPreviewHandler.csproj", "{ECC20689-002A-4354-95A6-B58DF089C6FF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Registry", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Registry\Microsoft.PowerToys.Run.Plugin.Registry.csproj", "{4BABF3FE-3451-42FD-873F-3C332E18DCEF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.Registry.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.Registry.UnitTest\Microsoft.PowerToys.Run.Plugin.Registry.UnitTests.csproj", "{0648DF05-5DDA-4BE1-B5F2-584926EBDB65}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngine", "src\modules\keyboardmanager\KeyboardManagerEngine\KeyboardManagerEngine.vcxproj", "{BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngineLibrary", "src\modules\keyboardmanager\KeyboardManagerEngineLibrary\KeyboardManagerEngineLibrary.vcxproj", "{E496B7FC-1E99-4BAB-849B-0E8367040B02}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEngineTest", "src\modules\keyboardmanager\KeyboardManagerEngineTest\KeyboardManagerEngineTest.vcxproj", "{7F4B3A60-BC27-45A7-8000-68B0B6EA7466}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditor", "src\modules\keyboardmanager\KeyboardManagerEditor\KeyboardManagerEditor.vcxproj", "{8DF78B53-200E-451F-9328-01EB907193AE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditorLibrary", "src\modules\keyboardmanager\KeyboardManagerEditorLibrary\KeyboardManagerEditorLibrary.vcxproj", "{23D2070D-E4AD-4ADD-85A7-083D9C76AD49}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KeyboardManagerEditorTest", "src\modules\keyboardmanager\KeyboardManagerEditorTest\KeyboardManagerEditorTest.vcxproj", "{62173D9A-6724-4C00-A1C8-FB646480A9EC}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "awake", "awake", "{127F38E0-40AA-4594-B955-5616BF206882}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AwakeModuleInterface", "src\modules\awake\AwakeModuleInterface\AwakeModuleInterface.vcxproj", "{5E7360A8-D048-4ED3-8F09-0BFD64C5529A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Awake", "src\modules\awake\Awake\Awake.csproj", "{D940E07F-532C-4FF3-883F-790DA014F19A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.UnitConverter", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.UnitConverter\Community.PowerToys.Run.Plugin.UnitConverter.csproj", "{BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.UnitConverter.UnitTest", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest\Community.PowerToys.Run.Plugin.UnitConverter.UnitTest.csproj", "{3E424AD2-19E5-4AE6-B833-F53963EB5FC1}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "shortcutguide", "shortcutguide", "{106CBECA-0701-4FC3-838C-9DF816A19AE2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShortcutGuideModuleInterface", "src\modules\ShortcutGuide\ShortcutGuideModuleInterface\ShortcutGuideModuleInterface.vcxproj", "{2D604C07-51FC-46BB-9EB7-75AECC7F5E81}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShortcutGuide", "src\modules\ShortcutGuide\ShortcutGuide\ShortcutGuide.vcxproj", "{2EDB3EB4-FA92-4BFF-B2D8-566584837231}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZonesModuleInterface", "src\modules\fancyzones\FancyZonesModuleInterface\FancyZonesModuleInterface.vcxproj", "{48804216-2A0E-4168-A6D8-9CD068D14227}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZones", "src\modules\fancyzones\FancyZones\FancyZones.vcxproj", "{FF1D7936-842A-4BBB-8BEA-E9FE796DE700}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.Update", "src\Update\PowerToys.Update.vcxproj", "{44CE9AE1-4390-42C5-BACC-0FD6B40AA203}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.WindowsSettings", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsSettings\Microsoft.PowerToys.Run.Plugin.WindowsSettings.csproj", "{5043CECE-E6A7-4867-9CBE-02D27D83747A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceShared", "src\modules\videoconference\VideoConferenceShared\VideoConferenceShared.vcxproj", "{459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceModule", "src\modules\videoconference\VideoConferenceModule\VideoConference.vcxproj", "{5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VideoConferenceProxyFilter", "src\modules\videoconference\VideoConferenceProxyFilter\VideoConferenceProxyFilter.vcxproj", "{AC2857B4-103D-4D6D-9740-926EBF785042}" ProjectSection(ProjectDependencies) = postProject {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} = {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "VideoConference", "VideoConference", "{470FBAF9-E1F8-4F3E-8786-198A1C81C8A8}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PdfThumbnailProvider", "src\modules\previewpane\PdfThumbnailProvider\PdfThumbnailProvider.csproj", "{11491FD8-F921-48BF-880C-7FEA185B80A1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-PdfThumbnailProvider", "src\modules\previewpane\UnitTests-PdfThumbnailProvider\UnitTests-PdfThumbnailProvider.csproj", "{F40C3397-1834-4530-B2D9-8F8B8456BCDF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.WindowsTerminal", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsTerminal\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.csproj", "{A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowsTerminal.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.UnitTests\Microsoft.Plugin.WindowsTerminal.UnitTests.csproj", "{4ED320BC-BA04-4D42-8D15-CBE62151F08B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MouseUtils", "MouseUtils", "{322566EF-20DC-43A6-B9F8-616AF942579A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FindMyMouse", "src\modules\MouseUtils\FindMyMouse\FindMyMouse.vcxproj", "{E94FD11C-0591-456F-899F-EFC0CA548336}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseHighlighter", "src\modules\MouseUtils\MouseHighlighter\MouseHighlighter.vcxproj", "{782A61BE-9D85-4081-B35C-1CCC9DCC1E88}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GcodeThumbnailProvider", "src\modules\previewpane\GcodeThumbnailProvider\GcodeThumbnailProvider.csproj", "{809AA252-E17A-4FA2-B0A1-0450976B763F}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-GcodeThumbnailProvider", "src\modules\previewpane\UnitTests-GcodeThumbnailProvider\UnitTests-GcodeThumbnailProvider.csproj", "{133281D8-1BCE-4D07-B31E-796612A9609E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GcodePreviewHandler", "src\modules\previewpane\GcodePreviewHandler\GcodePreviewHandler.csproj", "{805306FF-A562-4415-8DEF-E493BDC45918}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-GcodePreviewHandler", "src\modules\previewpane\UnitTests-GcodePreviewHandler\UnitTests-GcodePreviewHandler.csproj", "{FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AlwaysOnTop", "AlwaysOnTop", "{60CD2D4F-C3B9-4897-9821-FCA5098B41CE}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlwaysOnTop", "src\modules\alwaysontop\AlwaysOnTop\AlwaysOnTop.vcxproj", "{1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AlwaysOnTopModuleInterface", "src\modules\alwaysontop\AlwaysOnTopModuleInterface\AlwaysOnTopModuleInterface.vcxproj", "{48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.WebSearch", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.WebSearch\Community.PowerToys.Run.Plugin.WebSearch.csproj", "{9F94B303-5E21-4364-9362-64426F8DB932}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MousePointerCrosshairs", "src\modules\MouseUtils\MousePointerCrosshairs\MousePointerCrosshairs.vcxproj", "{EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StlThumbnailProvider", "src\modules\previewpane\StlThumbnailProvider\StlThumbnailProvider.csproj", "{F7C8C0F1-5431-4347-89D0-8E5354F93CF2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-StlThumbnailProvider", "src\modules\previewpane\UnitTests-StlThumbnailProvider\UnitTests-StlThumbnailProvider.csproj", "{F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MonacoPreviewHandler", "src\modules\previewpane\MonacoPreviewHandler\MonacoPreviewHandler.csproj", "{04B193D7-3E21-46B8-A958-89B63A8A69DE}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.TimeDate", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.TimeDate\Microsoft.PowerToys.Run.Plugin.TimeDate.csproj", "{5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests\Microsoft.PowerToys.Run.Plugin.TimeDate.UnitTests.csproj", "{FD464B4C-2F68-4D06-91E7-4208146C41F5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Plugin.WindowWalker.UnitTests", "src\modules\launcher\Plugins\Microsoft.Plugin.WindowWalker.UnitTests\Microsoft.Plugin.WindowWalker.UnitTests.csproj", "{8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerToys.Settings", "src\settings-ui\Settings.UI\PowerToys.Settings.csproj", "{020A7474-3601-4160-A159-D7B70B77B15F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameUI", "src\modules\powerrename\PowerRenameUILib\PowerRenameUI.vcxproj", "{27718999-C175-450A-861C-89F911E16A88}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerRenameContextMenu", "src\modules\powerrename\PowerRenameContextMenu\PowerRenameContextMenu.vcxproj", "{1DBBB112-4BB1-444B-8EBB-E66555C76BA6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.OneNote", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.OneNote\Microsoft.PowerToys.Run.Plugin.OneNote.csproj", "{5A1DB2F0-0715-4B3B-98E6-79BC41540045}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerContextMenu", "src\modules\imageresizer\ImageResizerContextMenu\ImageResizerContextMenu.vcxproj", "{93B72A06-C8BD-484F-A6F7-C9F280B150BF}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageResizerLib", "src\modules\imageresizer\ImageResizerLib\ImageResizerLib.vcxproj", "{18B3DB45-4FFE-4D01-97D6-5223FEEE1853}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PowerAccent", "PowerAccent", "{0F14491C-6369-4C45-AAA8-135814E66E6B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerAccentModuleInterface", "src\modules\poweraccent\PowerAccentModuleInterface\PowerAccentModuleInterface.vcxproj", "{34A354C5-23C7-4343-916C-C52DAF4FC39D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerAccent.Core", "src\modules\poweraccent\PowerAccent.Core\PowerAccent.Core.csproj", "{3264DF53-C805-4B0C-867C-FCEAF7AEF762}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerAccent.UI", "src\modules\poweraccent\PowerAccent.UI\PowerAccent.UI.csproj", "{31CAD28E-778A-441C-85BC-40AB3EAA2A10}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PowerOCR", "PowerOCR", "{A50C70A6-2DA0-4027-B90E-B1A40755A8A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PowerOCR", "src\modules\PowerOCR\PowerOCR\PowerOCR.csproj", "{25C91A4E-BA4E-467A-85CD-8B62545BF674}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerOCRModuleInterface", "src\modules\PowerOCR\PowerOCRModuleInterface\PowerOCRModuleInterface.vcxproj", "{6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.History", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.History\Microsoft.PowerToys.Run.Plugin.History.csproj", "{212AD910-8488-4036-BE20-326931B75FB2}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MeasureTool", "MeasureTool", "{7AC943C9-52E8-44CF-9083-744D8049667B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerToys.MeasureToolCore", "src\modules\MeasureTool\MeasureToolCore\PowerToys.MeasureToolCore.vcxproj", "{54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}" ProjectSection(ProjectDependencies) = postProject {6955446D-23F7-4023-9BB3-8657F904AF99} = {6955446D-23F7-4023-9BB3-8657F904AF99} {CABA8DFB-823B-4BF2-93AC-3F31984150D9} = {CABA8DFB-823B-4BF2-93AC-3F31984150D9} {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MeasureToolModuleInterface", "src\modules\MeasureTool\MeasureToolModuleInterface\MeasureToolModuleInterface.vcxproj", "{92C39820-9F84-4529-BC7D-22AAE514D63B}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MeasureToolUI", "src\modules\MeasureTool\MeasureToolUI\MeasureToolUI.csproj", "{515554D1-D004-4F7F-A107-2211FC0F6B2C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PowerAccentKeyboardService", "src\modules\poweraccent\PowerAccentKeyboardService\PowerAccentKeyboardService.vcxproj", "{C97D9A5D-206C-454E-997E-009E227D7F02}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hosts", "src\modules\Hosts\Hosts\Hosts.csproj", "{31D1C81D-765F-4446-AA62-E743F6325049}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Hosts", "Hosts", "{F05E590D-AD46-42BE-9C25-6A63ADD2E3EA}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hosts.Tests", "src\modules\Hosts\Hosts.Tests\Hosts.Tests.csproj", "{E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HostsModuleInterface", "src\modules\Hosts\HostsModuleInterface\HostsModuleInterface.vcxproj", "{B41B888C-7DB8-4747-B262-4062E05A230D}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "FileLocksmith", "FileLocksmith", "{AB82E5DD-C32D-4F28-9746-2C780846188E}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileLocksmithExt", "src\modules\FileLocksmith\FileLocksmithExt\FileLocksmithExt.vcxproj", "{57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileLocksmithUI", "src\modules\FileLocksmith\FileLocksmithUI\FileLocksmithUI.csproj", "{E69B044A-2F8A-45AA-AD0B-256C59421807}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileLocksmithLibInterop", "src\modules\FileLocksmith\FileLocksmithLibInterop\FileLocksmithLibInterop.vcxproj", "{C604B37E-9D0E-4484-8778-E8B31B0E1B3A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GPOWrapper", "src\common\GPOWrapper\GPOWrapper.vcxproj", "{E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GPOWrapperProjection", "src\common\GPOWrapperProjection\GPOWrapperProjection.csproj", "{00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Peek", "Peek", "{17B4FA70-001E-4D33-BBBB-0D142DBC2E20}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Peek", "src\modules\peek\peek\peek.vcxproj", "{A1425B53-3D61-4679-8623-E64A0D3D0A48}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.UI", "src\modules\peek\Peek.UI\Peek.UI.csproj", "{9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.Common", "src\modules\peek\Peek.Common\Peek.Common.csproj", "{17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Peek.FilePreviewer", "src\modules\peek\Peek.FilePreviewer\Peek.FilePreviewer.csproj", "{AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MarkdownPreviewHandlerCpp", "src\modules\previewpane\MarkdownPreviewHandlerCpp\MarkdownPreviewHandlerCpp.vcxproj", "{ED9A1AC6-AEB0-4569-A6E9-E1696182B545}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GcodePreviewHandlerCpp", "src\modules\previewpane\GcodePreviewHandlerCpp\GcodePreviewHandlerCpp.vcxproj", "{5A5DD09D-723A-44D3-8F2B-293584C3D731}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MonacoPreviewHandlerCpp", "src\modules\previewpane\MonacoPreviewHandlerCpp\MonacoPreviewHandlerCpp.vcxproj", "{B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PdfPreviewHandlerCpp", "src\modules\previewpane\PdfPreviewHandlerCpp\PdfPreviewHandlerCpp.vcxproj", "{54F7C616-FD41-4E62-BFF9-015686914F4D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SvgPreviewHandlerCpp", "src\modules\previewpane\SvgPreviewHandlerCpp\SvgPreviewHandlerCpp.vcxproj", "{143F13E3-D2E3-4D83-B035-356612D99956}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GcodeThumbnailProviderCpp", "src\modules\previewpane\GcodeThumbnailProviderCpp\GcodeThumbnailProviderCpp.vcxproj", "{56CC2F10-6E41-453D-BE16-C593A5E58482}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PdfThumbnailProviderCpp", "src\modules\previewpane\PdfThumbnailProviderCpp\PdfThumbnailProviderCpp.vcxproj", "{CA5518ED-0458-4B09-8F53-4122B9888655}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StlThumbnailProviderCpp", "src\modules\previewpane\StlThumbnailProviderCpp\StlThumbnailProviderCpp.vcxproj", "{D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SvgThumbnailProviderCpp", "src\modules\previewpane\SvgThumbnailProviderCpp\SvgThumbnailProviderCpp.vcxproj", "{2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MouseWithoutBorders", "MouseWithoutBorders", "{B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseWithoutBordersModuleInterface", "src\modules\MouseWithoutBorders\ModuleInterface\MouseWithoutBordersModuleInterface.vcxproj", "{2833C9C6-AB32-4048-A5C7-A70898337B57}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBorders", "src\modules\MouseWithoutBorders\App\MouseWithoutBorders.csproj", "{50B82783-242F-42D2-BC03-B3430BF01354}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBordersService", "src\modules\MouseWithoutBorders\App\Service\MouseWithoutBordersService.csproj", "{B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBordersHelper", "src\modules\MouseWithoutBorders\App\Helper\MouseWithoutBordersHelper.csproj", "{A663E672-B26D-4EC0-BEAB-FE2E424AC46F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MouseJump", "src\modules\MouseUtils\MouseJump\MouseJump.vcxproj", "{8A08D663-4995-40E3-B42C-3F910625F284}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseJumpUI", "src\modules\MouseUtils\MouseJumpUI\MouseJumpUI.csproj", "{D962A009-834F-4EEC-AABB-430DF8F98E39}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseJumpUI.UnitTests", "src\modules\MouseUtils\MouseJumpUI.UnitTests\MouseJumpUI.UnitTests.csproj", "{D9C5DE64-6849-4278-91AD-9660AECF2876}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "pasteplain", "pasteplain", "{9873BA05-4C41-4819-9283-CF45D795431B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PastePlainModuleInterface", "src\modules\pasteplain\PastePlainModuleInterface\PastePlainModuleInterface.vcxproj", "{FC373B24-3293-453C-AAF5-CF2909DCEE6A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AllExperiments", "src\common\AllExperiments\AllExperiments.csproj", "{9CE59ED5-7087-4353-88EB-788038A73CEC}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RegistryPreviewUI", "src\modules\registrypreview\RegistryPreviewUI\RegistryPreviewUI.csproj", "{FD86C06A-FB54-4D5E-9831-1CDADF60D45F}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RegistryPreviewExt", "src\modules\registrypreview\RegistryPreviewExt\RegistryPreviewExt.vcxproj", "{697C6AF9-0A48-49A9-866C-67DA12384015}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RegistryPreview", "RegistryPreview", "{929C1324-22E8-4412-A9A8-80E85F3985A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FilePreviewCommon", "src\common\FilePreviewCommon\FilePreviewCommon.csproj", "{9EBAA524-0EDA-470B-95D4-39383285CBB2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.PowerToys.Run.Plugin.PowerToys", "src\modules\launcher\Plugins\Microsoft.PowerToys.Run.Plugin.PowerToys\Microsoft.PowerToys.Run.Plugin.PowerToys.csproj", "{500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.ValueGenerator", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.ValueGenerator\Community.PowerToys.Run.Plugin.ValueGenerator.csproj", "{D095BE44-1F2E-463E-A494-121892A75EA2}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests", "src\modules\launcher\Plugins\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests\Community.PowerToys.Run.Plugin.ValueGenerator.UnitTests.csproj", "{90F9FA90-2C20-4004-96E6-F3B78151F5A5}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CropAndLock", "CropAndLock", "{3B227528-4BA6-4CAF-B44A-A10C78A64849}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CropAndLock", "src\modules\CropAndLock\CropAndLock\CropAndLock.vcxproj", "{F5E1146E-B7B3-4E11-85FD-270A500BD78C}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CropAndLockModuleInterface", "src\modules\CropAndLock\CropAndLockModuleInterface\CropAndLockModuleInterface.vcxproj", "{3157FA75-86CF-4EE2-8F62-C43F776493C6}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-FancyZonesEditor", "src\modules\fancyzones\UnitTests-FancyZonesEditor\UnitTests-FancyZonesEditor.csproj", "{FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "EnvironmentVariables", "EnvironmentVariables", "{538ED0BB-B863-4B20-98CC-BCDF7FA0B68A}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EnvironmentVariables", "src\modules\EnvironmentVariables\EnvironmentVariables\EnvironmentVariables.csproj", "{51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EnvironmentVariablesModuleInterface", "src\modules\EnvironmentVariables\EnvironmentVariablesModuleInterface\EnvironmentVariablesModuleInterface.vcxproj", "{B9420661-B0E4-4241-ABD4-4A27A1F64250}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "QoiThumbnailProviderCpp", "src\modules\previewpane\QoiThumbnailProviderCpp\QoiThumbnailProviderCpp.vcxproj", "{CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QoiThumbnailProvider", "src\modules\previewpane\QoiThumbnailProvider\QoiThumbnailProvider.csproj", "{D949EC7D-48A9-4279-95D5-078E7FD1F048}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "QoiPreviewHandlerCpp", "src\modules\previewpane\QoiPreviewHandlerCpp\QoiPreviewHandlerCpp.vcxproj", "{3BAF9C81-A194-4925-A035-5E24A5D1E542}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QoiPreviewHandler", "src\modules\previewpane\QoiPreviewHandler\QoiPreviewHandler.csproj", "{6B04803D-B418-4833-A67E-B0FC966636A5}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-QoiPreviewHandler", "src\modules\previewpane\UnitTests-QoiPreviewHandler\UnitTests-QoiPreviewHandler.csproj", "{3940AD4D-F748-4BE4-9083-85769CD553EF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTests-QoiThumbnailProvider", "src\modules\previewpane\UnitTests-QoiThumbnailProvider\UnitTests-QoiThumbnailProvider.csproj", "{F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|ARM64 = Debug|ARM64 Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 Release|ARM64 = Release|ARM64 Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|ARM64.Build.0 = Debug|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x64.ActiveCfg = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x64.Build.0 = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Debug|x86.ActiveCfg = Debug|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|ARM64.ActiveCfg = Release|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|ARM64.Build.0 = Release|ARM64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x64.ActiveCfg = Release|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x64.Build.0 = Release|x64 {9412D5C6-2CF2-4FC2-A601-B55508EA9B27}.Release|x86.ActiveCfg = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|ARM64.Build.0 = Debug|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x64.ActiveCfg = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x64.Build.0 = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Debug|x86.ActiveCfg = Debug|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|ARM64.ActiveCfg = Release|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|ARM64.Build.0 = Release|ARM64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x64.ActiveCfg = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x64.Build.0 = Release|x64 {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99}.Release|x86.ActiveCfg = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|ARM64.Build.0 = Debug|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x64.ActiveCfg = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x64.Build.0 = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Debug|x86.ActiveCfg = Debug|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|ARM64.ActiveCfg = Release|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|ARM64.Build.0 = Release|ARM64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x64.ActiveCfg = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x64.Build.0 = Release|x64 {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9}.Release|x86.ActiveCfg = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|ARM64.Build.0 = Debug|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x64.ActiveCfg = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x64.Build.0 = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Debug|x86.ActiveCfg = Debug|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|ARM64.ActiveCfg = Release|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|ARM64.Build.0 = Release|ARM64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x64.ActiveCfg = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x64.Build.0 = Release|x64 {1A066C63-64B3-45F8-92FE-664E1CCE8077}.Release|x86.ActiveCfg = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|ARM64.Build.0 = Debug|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x64.ActiveCfg = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x64.Build.0 = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Debug|x86.ActiveCfg = Debug|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|ARM64.ActiveCfg = Release|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|ARM64.Build.0 = Release|ARM64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x64.ActiveCfg = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x64.Build.0 = Release|x64 {5CCC8468-DEC8-4D36-99D4-5C891BEBD481}.Release|x86.ActiveCfg = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|ARM64.Build.0 = Debug|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x64.ActiveCfg = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x64.Build.0 = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Debug|x86.ActiveCfg = Debug|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|ARM64.ActiveCfg = Release|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|ARM64.Build.0 = Release|ARM64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x64.ActiveCfg = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x64.Build.0 = Release|x64 {B25AC7A5-FB9F-4789-B392-D5C85E948670}.Release|x86.ActiveCfg = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|ARM64.Build.0 = Debug|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x64.ActiveCfg = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x64.Build.0 = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Debug|x86.ActiveCfg = Debug|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|ARM64.ActiveCfg = Release|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|ARM64.Build.0 = Release|ARM64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x64.ActiveCfg = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x64.Build.0 = Release|x64 {51920F1F-C28C-4ADF-8660-4238766796C2}.Release|x86.ActiveCfg = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|ARM64.Build.0 = Debug|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x64.ActiveCfg = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x64.Build.0 = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Debug|x86.ActiveCfg = Debug|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|ARM64.ActiveCfg = Release|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|ARM64.Build.0 = Release|ARM64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x64.ActiveCfg = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x64.Build.0 = Release|x64 {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2}.Release|x86.ActiveCfg = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|ARM64.Build.0 = Debug|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x64.ActiveCfg = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x64.Build.0 = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Debug|x86.ActiveCfg = Debug|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|ARM64.ActiveCfg = Release|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|ARM64.Build.0 = Release|ARM64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x64.ActiveCfg = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x64.Build.0 = Release|x64 {2151F984-E006-4A9F-92EF-C6DDE3DC8413}.Release|x86.ActiveCfg = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|ARM64.ActiveCfg = Debug|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|ARM64.Build.0 = Debug|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x64.ActiveCfg = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x64.Build.0 = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Debug|x86.ActiveCfg = Debug|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|ARM64.ActiveCfg = Release|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|ARM64.Build.0 = Release|ARM64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x64.ActiveCfg = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x64.Build.0 = Release|x64 {64A80062-4D8B-4229-8A38-DFA1D7497749}.Release|x86.ActiveCfg = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|ARM64.Build.0 = Debug|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x64.ActiveCfg = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x64.Build.0 = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Debug|x86.ActiveCfg = Debug|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|ARM64.ActiveCfg = Release|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|ARM64.Build.0 = Release|ARM64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x64.ActiveCfg = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x64.Build.0 = Release|x64 {89F34AF7-1C34-4A72-AA6E-534BCF972BD9}.Release|x86.ActiveCfg = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|ARM64.Build.0 = Debug|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x64.ActiveCfg = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x64.Build.0 = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Debug|x86.ActiveCfg = Debug|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|ARM64.ActiveCfg = Release|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|ARM64.Build.0 = Release|ARM64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x64.ActiveCfg = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x64.Build.0 = Release|x64 {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34}.Release|x86.ActiveCfg = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|ARM64.Build.0 = Debug|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x64.ActiveCfg = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x64.Build.0 = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Debug|x86.ActiveCfg = Debug|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|ARM64.ActiveCfg = Release|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|ARM64.Build.0 = Release|ARM64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x64.ActiveCfg = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x64.Build.0 = Release|x64 {0B43679E-EDFA-4DA0-AD30-F4628B308B1B}.Release|x86.ActiveCfg = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|ARM64.Build.0 = Debug|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x64.ActiveCfg = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x64.Build.0 = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Debug|x86.ActiveCfg = Debug|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|ARM64.ActiveCfg = Release|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|ARM64.Build.0 = Release|ARM64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x64.ActiveCfg = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x64.Build.0 = Release|x64 {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}.Release|x86.ActiveCfg = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|ARM64.Build.0 = Debug|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x64.ActiveCfg = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x64.Build.0 = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Debug|x86.ActiveCfg = Debug|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|ARM64.ActiveCfg = Release|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|ARM64.Build.0 = Release|ARM64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x64.ActiveCfg = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x64.Build.0 = Release|x64 {D29DDD63-E2CF-4657-9FD5-2AEDE4257E5D}.Release|x86.ActiveCfg = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|ARM64.Build.0 = Debug|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x64.ActiveCfg = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x64.Build.0 = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Debug|x86.ActiveCfg = Debug|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|ARM64.ActiveCfg = Release|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|ARM64.Build.0 = Release|ARM64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x64.ActiveCfg = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x64.Build.0 = Release|x64 {17DA04DF-E393-4397-9CF0-84DABE11032E}.Release|x86.ActiveCfg = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|ARM64.Build.0 = Debug|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x64.ActiveCfg = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x64.Build.0 = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Debug|x86.ActiveCfg = Debug|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|ARM64.ActiveCfg = Release|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|ARM64.Build.0 = Release|ARM64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x64.ActiveCfg = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x64.Build.0 = Release|x64 {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC}.Release|x86.ActiveCfg = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|ARM64.Build.0 = Debug|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x64.ActiveCfg = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x64.Build.0 = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Debug|x86.ActiveCfg = Debug|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|ARM64.ActiveCfg = Release|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|ARM64.Build.0 = Release|ARM64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x64.ActiveCfg = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x64.Build.0 = Release|x64 {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}.Release|x86.ActiveCfg = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|ARM64.Build.0 = Debug|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x64.ActiveCfg = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x64.Build.0 = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Debug|x86.ActiveCfg = Debug|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|ARM64.ActiveCfg = Release|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|ARM64.Build.0 = Release|ARM64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x64.ActiveCfg = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x64.Build.0 = Release|x64 {8451ECDD-2EA4-4966-BB0A-7BBC40138E80}.Release|x86.ActiveCfg = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|ARM64.Build.0 = Debug|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x64.ActiveCfg = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x64.Build.0 = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Debug|x86.ActiveCfg = Debug|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|ARM64.ActiveCfg = Release|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|ARM64.Build.0 = Release|ARM64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x64.ActiveCfg = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x64.Build.0 = Release|x64 {FF742965-9A80-41A5-B042-D6C7D3A21708}.Release|x86.ActiveCfg = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|ARM64.Build.0 = Debug|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x64.ActiveCfg = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x64.Build.0 = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Debug|x86.ActiveCfg = Debug|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|ARM64.ActiveCfg = Release|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|ARM64.Build.0 = Release|ARM64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x64.ActiveCfg = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x64.Build.0 = Release|x64 {59BD9891-3837-438A-958D-ADC7F91F6F7E}.Release|x86.ActiveCfg = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|ARM64.Build.0 = Debug|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x64.ActiveCfg = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x64.Build.0 = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Debug|x86.ActiveCfg = Debug|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|ARM64.ActiveCfg = Release|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|ARM64.Build.0 = Release|ARM64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x64.ActiveCfg = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x64.Build.0 = Release|x64 {4D971245-7A70-41D5-BAA0-DDB5684CAF51}.Release|x86.ActiveCfg = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|ARM64.Build.0 = Debug|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x64.ActiveCfg = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x64.Build.0 = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Debug|x86.ActiveCfg = Debug|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|ARM64.ActiveCfg = Release|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|ARM64.Build.0 = Release|ARM64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x64.ActiveCfg = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x64.Build.0 = Release|x64 {74F1B9ED-F59C-4FE7-B473-7B453E30837E}.Release|x86.ActiveCfg = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|ARM64.Build.0 = Debug|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x64.ActiveCfg = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x64.Build.0 = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Debug|x86.ActiveCfg = Debug|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|ARM64.ActiveCfg = Release|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|ARM64.Build.0 = Release|ARM64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x64.ActiveCfg = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x64.Build.0 = Release|x64 {FDB3555B-58EF-4AE6-B5F1-904719637AB4}.Release|x86.ActiveCfg = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|ARM64.Build.0 = Debug|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x64.ActiveCfg = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x64.Build.0 = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Debug|x86.ActiveCfg = Debug|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|ARM64.ActiveCfg = Release|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|ARM64.Build.0 = Release|ARM64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x64.ActiveCfg = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x64.Build.0 = Release|x64 {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}.Release|x86.ActiveCfg = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|ARM64.Build.0 = Debug|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x64.ActiveCfg = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x64.Build.0 = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Debug|x86.ActiveCfg = Debug|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|ARM64.ActiveCfg = Release|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|ARM64.Build.0 = Release|ARM64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x64.ActiveCfg = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x64.Build.0 = Release|x64 {F8B870EB-D5F5-45BA-9CF7-A5C459818820}.Release|x86.ActiveCfg = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|ARM64.Build.0 = Debug|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x64.ActiveCfg = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x64.Build.0 = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Debug|x86.ActiveCfg = Debug|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|ARM64.ActiveCfg = Release|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|ARM64.Build.0 = Release|ARM64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x64.ActiveCfg = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x64.Build.0 = Release|x64 {E364F67B-BB12-4E91-B639-355866EBCD8B}.Release|x86.ActiveCfg = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|ARM64.Build.0 = Debug|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x64.ActiveCfg = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x64.Build.0 = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Debug|x86.ActiveCfg = Debug|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|ARM64.ActiveCfg = Release|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|ARM64.Build.0 = Release|ARM64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x64.ActiveCfg = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x64.Build.0 = Release|x64 {F97E5003-F263-4D4A-A964-0F1F3C82DEF2}.Release|x86.ActiveCfg = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|ARM64.Build.0 = Debug|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x64.ActiveCfg = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x64.Build.0 = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|x86.ActiveCfg = Debug|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|ARM64.ActiveCfg = Release|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|ARM64.Build.0 = Release|ARM64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x64.ActiveCfg = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x64.Build.0 = Release|x64 {AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|x86.ActiveCfg = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|ARM64.Build.0 = Debug|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x64.ActiveCfg = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x64.Build.0 = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Debug|x86.ActiveCfg = Debug|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|ARM64.ActiveCfg = Release|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|ARM64.Build.0 = Release|ARM64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x64.ActiveCfg = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x64.Build.0 = Release|x64 {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}.Release|x86.ActiveCfg = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|ARM64.Build.0 = Debug|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x64.ActiveCfg = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x64.Build.0 = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Debug|x86.ActiveCfg = Debug|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|ARM64.ActiveCfg = Release|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|ARM64.Build.0 = Release|ARM64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x64.ActiveCfg = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x64.Build.0 = Release|x64 {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A}.Release|x86.ActiveCfg = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|ARM64.Build.0 = Debug|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x64.ActiveCfg = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x64.Build.0 = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Debug|x86.ActiveCfg = Debug|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|ARM64.ActiveCfg = Release|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|ARM64.Build.0 = Release|ARM64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x64.ActiveCfg = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x64.Build.0 = Release|x64 {DA425894-6E13-404F-8DCB-78584EC0557A}.Release|x86.ActiveCfg = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|ARM64.ActiveCfg = Debug|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|ARM64.Build.0 = Debug|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x64.ActiveCfg = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x64.Build.0 = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Debug|x86.ActiveCfg = Debug|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|ARM64.ActiveCfg = Release|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|ARM64.Build.0 = Release|ARM64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x64.ActiveCfg = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x64.Build.0 = Release|x64 {060D75DA-2D1C-48E6-A4A1-6F0718B64661}.Release|x86.ActiveCfg = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|ARM64.ActiveCfg = Debug|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|ARM64.Build.0 = Debug|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x64.ActiveCfg = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x64.Build.0 = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Debug|x86.ActiveCfg = Debug|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|ARM64.ActiveCfg = Release|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|ARM64.Build.0 = Release|ARM64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x64.ActiveCfg = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x64.Build.0 = Release|x64 {748417CA-F17E-487F-9411-CAFB6D3F4877}.Release|x86.ActiveCfg = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|ARM64.Build.0 = Debug|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x64.ActiveCfg = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x64.Build.0 = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Debug|x86.ActiveCfg = Debug|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|ARM64.ActiveCfg = Release|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|ARM64.Build.0 = Release|ARM64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x64.ActiveCfg = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x64.Build.0 = Release|x64 {217DF501-135C-4E38-BFC8-99D4821032EA}.Release|x86.ActiveCfg = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|ARM64.Build.0 = Debug|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.ActiveCfg = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x64.Build.0 = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Debug|x86.ActiveCfg = Debug|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|ARM64.ActiveCfg = Release|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|ARM64.Build.0 = Release|ARM64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x64.ActiveCfg = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x64.Build.0 = Release|x64 {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A}.Release|x86.ActiveCfg = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|ARM64.Build.0 = Debug|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x64.ActiveCfg = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x64.Build.0 = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Debug|x86.ActiveCfg = Debug|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|ARM64.ActiveCfg = Release|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|ARM64.Build.0 = Release|ARM64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x64.ActiveCfg = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x64.Build.0 = Release|x64 {F055103B-F80B-4D0C-BF48-057C55620033}.Release|x86.ActiveCfg = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|ARM64.Build.0 = Debug|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x64.ActiveCfg = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x64.Build.0 = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Debug|x86.ActiveCfg = Debug|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|ARM64.ActiveCfg = Release|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|ARM64.Build.0 = Release|ARM64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x64.ActiveCfg = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x64.Build.0 = Release|x64 {787B8AA6-CA93-4C84-96FE-DF31110AD1C4}.Release|x86.ActiveCfg = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|ARM64.ActiveCfg = Debug|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|ARM64.Build.0 = Debug|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x64.ActiveCfg = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x64.Build.0 = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Debug|x86.ActiveCfg = Debug|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|ARM64.ActiveCfg = Release|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|ARM64.Build.0 = Release|ARM64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x64.ActiveCfg = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x64.Build.0 = Release|x64 {08C8C05F-0362-41BC-818C-724572DF8B06}.Release|x86.ActiveCfg = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|ARM64.Build.0 = Debug|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x64.ActiveCfg = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x64.Build.0 = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Debug|x86.ActiveCfg = Debug|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|ARM64.ActiveCfg = Release|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|ARM64.Build.0 = Release|ARM64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x64.ActiveCfg = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x64.Build.0 = Release|x64 {5D00D290-4016-4CFE-9E41-1E7C724509BA}.Release|x86.ActiveCfg = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|ARM64.Build.0 = Debug|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x64.ActiveCfg = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x64.Build.0 = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Debug|x86.ActiveCfg = Debug|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|ARM64.ActiveCfg = Release|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|ARM64.Build.0 = Release|ARM64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x64.ActiveCfg = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x64.Build.0 = Release|x64 {4AED67B6-55FD-486F-B917-E543DEE2CB3C}.Release|x86.ActiveCfg = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|ARM64.Build.0 = Debug|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x64.ActiveCfg = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x64.Build.0 = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Debug|x86.ActiveCfg = Debug|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|ARM64.ActiveCfg = Release|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|ARM64.Build.0 = Release|ARM64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x64.ActiveCfg = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x64.Build.0 = Release|x64 {42851751-CBC8-45A6-97F5-7A0753F7B4D1}.Release|x86.ActiveCfg = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|ARM64.Build.0 = Debug|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x64.ActiveCfg = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x64.Build.0 = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Debug|x86.ActiveCfg = Debug|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|ARM64.ActiveCfg = Release|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|ARM64.Build.0 = Release|ARM64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x64.ActiveCfg = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x64.Build.0 = Release|x64 {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E}.Release|x86.ActiveCfg = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|ARM64.Build.0 = Debug|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x64.ActiveCfg = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x64.Build.0 = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Debug|x86.ActiveCfg = Debug|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|ARM64.ActiveCfg = Release|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|ARM64.Build.0 = Release|ARM64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x64.ActiveCfg = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x64.Build.0 = Release|x64 {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}.Release|x86.ActiveCfg = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|ARM64.Build.0 = Debug|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x64.ActiveCfg = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x64.Build.0 = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Debug|x86.ActiveCfg = Debug|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|ARM64.ActiveCfg = Release|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|ARM64.Build.0 = Release|ARM64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x64.ActiveCfg = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x64.Build.0 = Release|x64 {655C9AF2-18D3-4DA6-80E4-85504A7722BA}.Release|x86.ActiveCfg = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|ARM64.Build.0 = Debug|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x64.ActiveCfg = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x64.Build.0 = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Debug|x86.ActiveCfg = Debug|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|ARM64.ActiveCfg = Release|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|ARM64.Build.0 = Release|ARM64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x64.ActiveCfg = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x64.Build.0 = Release|x64 {BA58206B-1493-4C75-BFEA-A85768A1E156}.Release|x86.ActiveCfg = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|ARM64.ActiveCfg = Debug|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|ARM64.Build.0 = Debug|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x64.ActiveCfg = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x64.Build.0 = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Debug|x86.ActiveCfg = Debug|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|ARM64.ActiveCfg = Release|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|ARM64.Build.0 = Release|ARM64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x64.ActiveCfg = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x64.Build.0 = Release|x64 {03276A39-D4E9-417C-8FFD-200B0EE5E871}.Release|x86.ActiveCfg = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|ARM64.Build.0 = Debug|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x64.ActiveCfg = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x64.Build.0 = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Debug|x86.ActiveCfg = Debug|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|ARM64.ActiveCfg = Release|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|ARM64.Build.0 = Release|ARM64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x64.ActiveCfg = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x64.Build.0 = Release|x64 {B81FB7B6-D30E-428F-908A-41422EFC1172}.Release|x86.ActiveCfg = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|ARM64.Build.0 = Debug|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x64.ActiveCfg = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x64.Build.0 = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Debug|x86.ActiveCfg = Debug|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|ARM64.ActiveCfg = Release|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|ARM64.Build.0 = Release|ARM64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x64.ActiveCfg = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x64.Build.0 = Release|x64 {0F85E674-34AE-443D-954C-8321EB8B93B1}.Release|x86.ActiveCfg = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|ARM64.Build.0 = Debug|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x64.ActiveCfg = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x64.Build.0 = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Debug|x86.ActiveCfg = Debug|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|ARM64.ActiveCfg = Release|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|ARM64.Build.0 = Release|ARM64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x64.ActiveCfg = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x64.Build.0 = Release|x64 {632BBE62-5421-49EA-835A-7FFA4F499BD6}.Release|x86.ActiveCfg = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|ARM64.Build.0 = Debug|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x64.ActiveCfg = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x64.Build.0 = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Debug|x86.ActiveCfg = Debug|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|ARM64.ActiveCfg = Release|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|ARM64.Build.0 = Release|ARM64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x64.ActiveCfg = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x64.Build.0 = Release|x64 {4FA206A5-F69F-4193-BF8F-F6EEB496734C}.Release|x86.ActiveCfg = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|ARM64.Build.0 = Debug|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x64.ActiveCfg = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x64.Build.0 = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Debug|x86.ActiveCfg = Debug|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|ARM64.ActiveCfg = Release|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|ARM64.Build.0 = Release|ARM64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x64.ActiveCfg = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x64.Build.0 = Release|x64 {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1}.Release|x86.ActiveCfg = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|ARM64.Build.0 = Debug|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x64.ActiveCfg = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x64.Build.0 = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Debug|x86.ActiveCfg = Debug|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|ARM64.ActiveCfg = Release|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|ARM64.Build.0 = Release|ARM64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x64.ActiveCfg = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x64.Build.0 = Release|x64 {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F}.Release|x86.ActiveCfg = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|ARM64.Build.0 = Debug|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x64.ActiveCfg = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x64.Build.0 = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Debug|x86.ActiveCfg = Debug|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|ARM64.ActiveCfg = Release|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|ARM64.Build.0 = Release|ARM64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x64.ActiveCfg = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x64.Build.0 = Release|x64 {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B}.Release|x86.ActiveCfg = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|ARM64.ActiveCfg = Debug|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|ARM64.Build.0 = Debug|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x64.ActiveCfg = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x64.Build.0 = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Debug|x86.ActiveCfg = Debug|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|ARM64.ActiveCfg = Release|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|ARM64.Build.0 = Release|ARM64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x64.ActiveCfg = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x64.Build.0 = Release|x64 {DA5A6FE9-0040-40CC-83CC-764AE5306590}.Release|x86.ActiveCfg = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|ARM64.Build.0 = Debug|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x64.ActiveCfg = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x64.Build.0 = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Debug|x86.ActiveCfg = Debug|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|ARM64.ActiveCfg = Release|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|ARM64.Build.0 = Release|ARM64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x64.ActiveCfg = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x64.Build.0 = Release|x64 {0351ADA4-0C32-4652-9BA0-41F7B602372B}.Release|x86.ActiveCfg = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|ARM64.Build.0 = Debug|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x64.ActiveCfg = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x64.Build.0 = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Debug|x86.ActiveCfg = Debug|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|ARM64.ActiveCfg = Release|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|ARM64.Build.0 = Release|ARM64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x64.ActiveCfg = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x64.Build.0 = Release|x64 {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD}.Release|x86.ActiveCfg = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|ARM64.Build.0 = Debug|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x64.ActiveCfg = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x64.Build.0 = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Debug|x86.ActiveCfg = Debug|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|ARM64.ActiveCfg = Release|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|ARM64.Build.0 = Release|ARM64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x64.ActiveCfg = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x64.Build.0 = Release|x64 {6955446D-23F7-4023-9BB3-8657F904AF99}.Release|x86.ActiveCfg = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|ARM64.Build.0 = Debug|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x64.ActiveCfg = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x64.Build.0 = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Debug|x86.ActiveCfg = Debug|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|ARM64.ActiveCfg = Release|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|ARM64.Build.0 = Release|ARM64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x64.ActiveCfg = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x64.Build.0 = Release|x64 {58736667-1027-4AD7-BFDF-7A3A6474103A}.Release|x86.ActiveCfg = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|ARM64.Build.0 = Debug|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x64.ActiveCfg = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x64.Build.0 = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Debug|x86.ActiveCfg = Debug|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|ARM64.ActiveCfg = Release|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|ARM64.Build.0 = Release|ARM64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x64.ActiveCfg = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x64.Build.0 = Release|x64 {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525}.Release|x86.ActiveCfg = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|ARM64.ActiveCfg = Debug|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|ARM64.Build.0 = Debug|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x64.ActiveCfg = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x64.Build.0 = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Debug|x86.ActiveCfg = Debug|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|ARM64.ActiveCfg = Release|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|ARM64.Build.0 = Release|ARM64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x64.ActiveCfg = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x64.Build.0 = Release|x64 {031AC72E-FA28-4AB7-B690-6F7B9C28AA73}.Release|x86.ActiveCfg = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|ARM64.Build.0 = Debug|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x64.ActiveCfg = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x64.Build.0 = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Debug|x86.ActiveCfg = Debug|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|ARM64.ActiveCfg = Release|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|ARM64.Build.0 = Release|ARM64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x64.ActiveCfg = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x64.Build.0 = Release|x64 {0B593A6C-4143-4337-860E-DB5710FB87DB}.Release|x86.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|ARM64.Build.0 = Debug|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x64.Build.0 = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Debug|x86.ActiveCfg = Debug|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|ARM64.ActiveCfg = Release|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|ARM64.Build.0 = Release|ARM64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.ActiveCfg = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x64.Build.0 = Release|x64 {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}.Release|x86.ActiveCfg = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|ARM64.Build.0 = Debug|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x64.ActiveCfg = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x64.Build.0 = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Debug|x86.ActiveCfg = Debug|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|ARM64.ActiveCfg = Release|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|ARM64.Build.0 = Release|ARM64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x64.ActiveCfg = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x64.Build.0 = Release|x64 {7319089E-46D6-4400-BC65-E39BDF1416EE}.Release|x86.ActiveCfg = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|ARM64.Build.0 = Debug|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x64.ActiveCfg = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x64.Build.0 = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Debug|x86.ActiveCfg = Debug|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|ARM64.ActiveCfg = Release|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|ARM64.Build.0 = Release|ARM64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x64.ActiveCfg = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x64.Build.0 = Release|x64 {CABA8DFB-823B-4BF2-93AC-3F31984150D9}.Release|x86.ActiveCfg = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|ARM64.Build.0 = Debug|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x64.ActiveCfg = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x64.Build.0 = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Debug|x86.ActiveCfg = Debug|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|ARM64.ActiveCfg = Release|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|ARM64.Build.0 = Release|ARM64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x64.ActiveCfg = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x64.Build.0 = Release|x64 {98537082-0FDB-40DE-ABD8-0DC5A4269BAB}.Release|x86.ActiveCfg = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|ARM64.Build.0 = Debug|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x64.ActiveCfg = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x64.Build.0 = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Debug|x86.ActiveCfg = Debug|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|ARM64.ActiveCfg = Release|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|ARM64.Build.0 = Release|ARM64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x64.ActiveCfg = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x64.Build.0 = Release|x64 {C3A17DCA-217B-462C-BB0C-BE086AF80081}.Release|x86.ActiveCfg = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|ARM64.Build.0 = Debug|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x64.ActiveCfg = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x64.Build.0 = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Debug|x86.ActiveCfg = Debug|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|ARM64.ActiveCfg = Release|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|ARM64.Build.0 = Release|ARM64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x64.ActiveCfg = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x64.Build.0 = Release|x64 {69E1EE8D-143A-4060-9129-4658ACF14AAF}.Release|x86.ActiveCfg = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|ARM64.Build.0 = Debug|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x64.ActiveCfg = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x64.Build.0 = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Debug|x86.ActiveCfg = Debug|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|ARM64.ActiveCfg = Release|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|ARM64.Build.0 = Release|ARM64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x64.ActiveCfg = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x64.Build.0 = Release|x64 {ECC20689-002A-4354-95A6-B58DF089C6FF}.Release|x86.ActiveCfg = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|ARM64.Build.0 = Debug|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x64.ActiveCfg = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x64.Build.0 = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Debug|x86.ActiveCfg = Debug|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|ARM64.ActiveCfg = Release|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|ARM64.Build.0 = Release|ARM64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x64.ActiveCfg = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x64.Build.0 = Release|x64 {4BABF3FE-3451-42FD-873F-3C332E18DCEF}.Release|x86.ActiveCfg = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|ARM64.ActiveCfg = Debug|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|ARM64.Build.0 = Debug|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x64.ActiveCfg = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x64.Build.0 = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Debug|x86.ActiveCfg = Debug|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|ARM64.ActiveCfg = Release|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|ARM64.Build.0 = Release|ARM64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x64.ActiveCfg = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x64.Build.0 = Release|x64 {0648DF05-5DDA-4BE1-B5F2-584926EBDB65}.Release|x86.ActiveCfg = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|ARM64.Build.0 = Debug|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x64.ActiveCfg = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x64.Build.0 = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Debug|x86.ActiveCfg = Debug|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|ARM64.ActiveCfg = Release|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|ARM64.Build.0 = Release|ARM64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x64.ActiveCfg = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x64.Build.0 = Release|x64 {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD}.Release|x86.ActiveCfg = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|ARM64.Build.0 = Debug|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x64.ActiveCfg = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x64.Build.0 = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Debug|x86.ActiveCfg = Debug|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|ARM64.ActiveCfg = Release|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|ARM64.Build.0 = Release|ARM64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x64.ActiveCfg = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x64.Build.0 = Release|x64 {E496B7FC-1E99-4BAB-849B-0E8367040B02}.Release|x86.ActiveCfg = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|ARM64.ActiveCfg = Debug|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|ARM64.Build.0 = Debug|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x64.ActiveCfg = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x64.Build.0 = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Debug|x86.ActiveCfg = Debug|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|ARM64.ActiveCfg = Release|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|ARM64.Build.0 = Release|ARM64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x64.ActiveCfg = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x64.Build.0 = Release|x64 {7F4B3A60-BC27-45A7-8000-68B0B6EA7466}.Release|x86.ActiveCfg = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|ARM64.Build.0 = Debug|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x64.ActiveCfg = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x64.Build.0 = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Debug|x86.ActiveCfg = Debug|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|ARM64.ActiveCfg = Release|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|ARM64.Build.0 = Release|ARM64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x64.ActiveCfg = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x64.Build.0 = Release|x64 {8DF78B53-200E-451F-9328-01EB907193AE}.Release|x86.ActiveCfg = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|ARM64.ActiveCfg = Debug|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|ARM64.Build.0 = Debug|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x64.ActiveCfg = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x64.Build.0 = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Debug|x86.ActiveCfg = Debug|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|ARM64.ActiveCfg = Release|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|ARM64.Build.0 = Release|ARM64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x64.ActiveCfg = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x64.Build.0 = Release|x64 {23D2070D-E4AD-4ADD-85A7-083D9C76AD49}.Release|x86.ActiveCfg = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|ARM64.Build.0 = Debug|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x64.ActiveCfg = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x64.Build.0 = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Debug|x86.ActiveCfg = Debug|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|ARM64.ActiveCfg = Release|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|ARM64.Build.0 = Release|ARM64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x64.ActiveCfg = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x64.Build.0 = Release|x64 {62173D9A-6724-4C00-A1C8-FB646480A9EC}.Release|x86.ActiveCfg = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|ARM64.Build.0 = Debug|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x64.ActiveCfg = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x64.Build.0 = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Debug|x86.ActiveCfg = Debug|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|ARM64.ActiveCfg = Release|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|ARM64.Build.0 = Release|ARM64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x64.ActiveCfg = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x64.Build.0 = Release|x64 {5E7360A8-D048-4ED3-8F09-0BFD64C5529A}.Release|x86.ActiveCfg = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|ARM64.Build.0 = Debug|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x64.ActiveCfg = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x64.Build.0 = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Debug|x86.ActiveCfg = Debug|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|ARM64.ActiveCfg = Release|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|ARM64.Build.0 = Release|ARM64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x64.ActiveCfg = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x64.Build.0 = Release|x64 {D940E07F-532C-4FF3-883F-790DA014F19A}.Release|x86.ActiveCfg = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|ARM64.ActiveCfg = Debug|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|ARM64.Build.0 = Debug|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x64.ActiveCfg = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x64.Build.0 = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Debug|x86.ActiveCfg = Debug|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|ARM64.ActiveCfg = Release|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|ARM64.Build.0 = Release|ARM64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x64.ActiveCfg = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x64.Build.0 = Release|x64 {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4}.Release|x86.ActiveCfg = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|ARM64.Build.0 = Debug|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x64.ActiveCfg = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x64.Build.0 = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Debug|x86.ActiveCfg = Debug|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|ARM64.ActiveCfg = Release|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|ARM64.Build.0 = Release|ARM64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x64.ActiveCfg = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x64.Build.0 = Release|x64 {3E424AD2-19E5-4AE6-B833-F53963EB5FC1}.Release|x86.ActiveCfg = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|ARM64.Build.0 = Debug|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x64.ActiveCfg = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x64.Build.0 = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Debug|x86.ActiveCfg = Debug|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|ARM64.ActiveCfg = Release|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|ARM64.Build.0 = Release|ARM64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x64.ActiveCfg = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x64.Build.0 = Release|x64 {2D604C07-51FC-46BB-9EB7-75AECC7F5E81}.Release|x86.ActiveCfg = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|ARM64.Build.0 = Debug|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x64.ActiveCfg = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x64.Build.0 = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Debug|x86.ActiveCfg = Debug|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|ARM64.ActiveCfg = Release|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|ARM64.Build.0 = Release|ARM64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x64.ActiveCfg = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x64.Build.0 = Release|x64 {2EDB3EB4-FA92-4BFF-B2D8-566584837231}.Release|x86.ActiveCfg = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|ARM64.ActiveCfg = Debug|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|ARM64.Build.0 = Debug|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x64.ActiveCfg = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x64.Build.0 = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Debug|x86.ActiveCfg = Debug|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|ARM64.ActiveCfg = Release|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|ARM64.Build.0 = Release|ARM64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x64.ActiveCfg = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x64.Build.0 = Release|x64 {48804216-2A0E-4168-A6D8-9CD068D14227}.Release|x86.ActiveCfg = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|ARM64.Build.0 = Debug|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x64.ActiveCfg = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x64.Build.0 = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Debug|x86.ActiveCfg = Debug|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|ARM64.ActiveCfg = Release|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|ARM64.Build.0 = Release|ARM64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x64.ActiveCfg = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x64.Build.0 = Release|x64 {FF1D7936-842A-4BBB-8BEA-E9FE796DE700}.Release|x86.ActiveCfg = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|ARM64.ActiveCfg = Debug|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|ARM64.Build.0 = Debug|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x64.ActiveCfg = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x64.Build.0 = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Debug|x86.ActiveCfg = Debug|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|ARM64.ActiveCfg = Release|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|ARM64.Build.0 = Release|ARM64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x64.ActiveCfg = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x64.Build.0 = Release|x64 {44CE9AE1-4390-42C5-BACC-0FD6B40AA203}.Release|x86.ActiveCfg = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|ARM64.Build.0 = Debug|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.ActiveCfg = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x64.Build.0 = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Debug|x86.ActiveCfg = Debug|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|ARM64.ActiveCfg = Release|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|ARM64.Build.0 = Release|ARM64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.ActiveCfg = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x64.Build.0 = Release|x64 {5043CECE-E6A7-4867-9CBE-02D27D83747A}.Release|x86.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|ARM64.Build.0 = Debug|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.ActiveCfg = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x64.Build.0 = Debug|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x86.ActiveCfg = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Debug|x86.Build.0 = Debug|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|ARM64.ActiveCfg = Release|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|ARM64.Build.0 = Release|ARM64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.ActiveCfg = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x64.Build.0 = Release|x64 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x86.ActiveCfg = Release|Win32 {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A}.Release|x86.Build.0 = Release|Win32 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|ARM64.Build.0 = Debug|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x64.ActiveCfg = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x64.Build.0 = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Debug|x86.ActiveCfg = Debug|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|ARM64.ActiveCfg = Release|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|ARM64.Build.0 = Release|ARM64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x64.ActiveCfg = Release|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x64.Build.0 = Release|x64 {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB}.Release|x86.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|ARM64.Build.0 = Debug|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.ActiveCfg = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x64.Build.0 = Debug|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x86.ActiveCfg = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Debug|x86.Build.0 = Debug|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|ARM64.ActiveCfg = Release|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|ARM64.Build.0 = Release|ARM64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.ActiveCfg = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x64.Build.0 = Release|x64 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x86.ActiveCfg = Release|Win32 {AC2857B4-103D-4D6D-9740-926EBF785042}.Release|x86.Build.0 = Release|Win32 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|ARM64.Build.0 = Debug|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x64.ActiveCfg = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x64.Build.0 = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Debug|x86.ActiveCfg = Debug|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|ARM64.ActiveCfg = Release|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|ARM64.Build.0 = Release|ARM64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x64.ActiveCfg = Release|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x64.Build.0 = Release|x64 {11491FD8-F921-48BF-880C-7FEA185B80A1}.Release|x86.ActiveCfg = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|ARM64.Build.0 = Debug|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x64.ActiveCfg = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x64.Build.0 = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Debug|x86.ActiveCfg = Debug|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|ARM64.ActiveCfg = Release|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|ARM64.Build.0 = Release|ARM64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x64.ActiveCfg = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x64.Build.0 = Release|x64 {F40C3397-1834-4530-B2D9-8F8B8456BCDF}.Release|x86.ActiveCfg = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|ARM64.Build.0 = Debug|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x64.ActiveCfg = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x64.Build.0 = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Debug|x86.ActiveCfg = Debug|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|ARM64.ActiveCfg = Release|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|ARM64.Build.0 = Release|ARM64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x64.ActiveCfg = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x64.Build.0 = Release|x64 {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85}.Release|x86.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|ARM64.Build.0 = Debug|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x64.ActiveCfg = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x64.Build.0 = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Debug|x86.ActiveCfg = Debug|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|ARM64.ActiveCfg = Release|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|ARM64.Build.0 = Release|ARM64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x64.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x64.Build.0 = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x86.ActiveCfg = Release|x64 {4ED320BC-BA04-4D42-8D15-CBE62151F08B}.Release|x86.Build.0 = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|ARM64.Build.0 = Debug|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x64.ActiveCfg = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x64.Build.0 = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Debug|x86.ActiveCfg = Debug|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|ARM64.ActiveCfg = Release|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|ARM64.Build.0 = Release|ARM64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x64.ActiveCfg = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x64.Build.0 = Release|x64 {E94FD11C-0591-456F-899F-EFC0CA548336}.Release|x86.ActiveCfg = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|ARM64.ActiveCfg = Debug|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|ARM64.Build.0 = Debug|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x64.ActiveCfg = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x64.Build.0 = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Debug|x86.ActiveCfg = Debug|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|ARM64.ActiveCfg = Release|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|ARM64.Build.0 = Release|ARM64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x64.ActiveCfg = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x64.Build.0 = Release|x64 {782A61BE-9D85-4081-B35C-1CCC9DCC1E88}.Release|x86.ActiveCfg = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|ARM64.Build.0 = Debug|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x64.ActiveCfg = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x64.Build.0 = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Debug|x86.ActiveCfg = Debug|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|ARM64.ActiveCfg = Release|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|ARM64.Build.0 = Release|ARM64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x64.ActiveCfg = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x64.Build.0 = Release|x64 {809AA252-E17A-4FA2-B0A1-0450976B763F}.Release|x86.ActiveCfg = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|ARM64.Build.0 = Debug|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x64.ActiveCfg = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x64.Build.0 = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Debug|x86.ActiveCfg = Debug|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|ARM64.ActiveCfg = Release|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|ARM64.Build.0 = Release|ARM64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x64.ActiveCfg = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x64.Build.0 = Release|x64 {133281D8-1BCE-4D07-B31E-796612A9609E}.Release|x86.ActiveCfg = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|ARM64.ActiveCfg = Debug|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|ARM64.Build.0 = Debug|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x64.ActiveCfg = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x64.Build.0 = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Debug|x86.ActiveCfg = Debug|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|ARM64.ActiveCfg = Release|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|ARM64.Build.0 = Release|ARM64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x64.ActiveCfg = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x64.Build.0 = Release|x64 {805306FF-A562-4415-8DEF-E493BDC45918}.Release|x86.ActiveCfg = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|ARM64.Build.0 = Debug|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x64.ActiveCfg = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x64.Build.0 = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Debug|x86.ActiveCfg = Debug|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|ARM64.ActiveCfg = Release|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|ARM64.Build.0 = Release|ARM64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x64.ActiveCfg = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x64.Build.0 = Release|x64 {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3}.Release|x86.ActiveCfg = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|ARM64.Build.0 = Debug|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x64.ActiveCfg = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x64.Build.0 = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Debug|x86.ActiveCfg = Debug|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|ARM64.ActiveCfg = Release|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|ARM64.Build.0 = Release|ARM64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x64.ActiveCfg = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x64.Build.0 = Release|x64 {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2}.Release|x86.ActiveCfg = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|ARM64.Build.0 = Debug|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x64.ActiveCfg = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x64.Build.0 = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Debug|x86.ActiveCfg = Debug|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|ARM64.ActiveCfg = Release|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|ARM64.Build.0 = Release|ARM64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x64.ActiveCfg = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x64.Build.0 = Release|x64 {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9}.Release|x86.ActiveCfg = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|ARM64.Build.0 = Debug|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x64.ActiveCfg = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x64.Build.0 = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Debug|x86.ActiveCfg = Debug|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|ARM64.ActiveCfg = Release|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|ARM64.Build.0 = Release|ARM64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x64.ActiveCfg = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x64.Build.0 = Release|x64 {9F94B303-5E21-4364-9362-64426F8DB932}.Release|x86.ActiveCfg = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|ARM64.ActiveCfg = Debug|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|ARM64.Build.0 = Debug|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x64.ActiveCfg = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x64.Build.0 = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Debug|x86.ActiveCfg = Debug|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|ARM64.ActiveCfg = Release|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|ARM64.Build.0 = Release|ARM64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x64.ActiveCfg = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x64.Build.0 = Release|x64 {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E}.Release|x86.ActiveCfg = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|ARM64.Build.0 = Debug|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x64.ActiveCfg = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x64.Build.0 = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Debug|x86.ActiveCfg = Debug|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|ARM64.ActiveCfg = Release|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|ARM64.Build.0 = Release|ARM64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x64.ActiveCfg = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x64.Build.0 = Release|x64 {F7C8C0F1-5431-4347-89D0-8E5354F93CF2}.Release|x86.ActiveCfg = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|ARM64.Build.0 = Debug|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x64.ActiveCfg = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x64.Build.0 = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Debug|x86.ActiveCfg = Debug|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|ARM64.ActiveCfg = Release|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|ARM64.Build.0 = Release|ARM64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x64.ActiveCfg = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x64.Build.0 = Release|x64 {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC}.Release|x86.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|ARM64.Build.0 = Debug|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x64.ActiveCfg = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x64.Build.0 = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x86.ActiveCfg = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Debug|x86.Build.0 = Debug|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|ARM64.ActiveCfg = Release|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|ARM64.Build.0 = Release|ARM64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x64.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x64.Build.0 = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x86.ActiveCfg = Release|x64 {04B193D7-3E21-46B8-A958-89B63A8A69DE}.Release|x86.Build.0 = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|ARM64.Build.0 = Debug|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x64.ActiveCfg = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x64.Build.0 = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Debug|x86.ActiveCfg = Debug|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|ARM64.ActiveCfg = Release|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|ARM64.Build.0 = Release|ARM64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x64.ActiveCfg = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x64.Build.0 = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x86.ActiveCfg = Release|x64 {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF}.Release|x86.Build.0 = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|ARM64.Build.0 = Debug|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x64.ActiveCfg = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x64.Build.0 = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x86.ActiveCfg = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Debug|x86.Build.0 = Debug|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|ARM64.ActiveCfg = Release|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|ARM64.Build.0 = Release|ARM64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x64.ActiveCfg = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x64.Build.0 = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x86.ActiveCfg = Release|x64 {FD464B4C-2F68-4D06-91E7-4208146C41F5}.Release|x86.Build.0 = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|ARM64.Build.0 = Debug|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x64.ActiveCfg = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x64.Build.0 = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x86.ActiveCfg = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Debug|x86.Build.0 = Debug|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|ARM64.ActiveCfg = Release|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|ARM64.Build.0 = Release|ARM64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x64.ActiveCfg = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x64.Build.0 = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x86.ActiveCfg = Release|x64 {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1}.Release|x86.Build.0 = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|ARM64.Build.0 = Debug|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x64.ActiveCfg = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x64.Build.0 = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x86.ActiveCfg = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Debug|x86.Build.0 = Debug|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|ARM64.ActiveCfg = Release|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|ARM64.Build.0 = Release|ARM64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x64.ActiveCfg = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x64.Build.0 = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x86.ActiveCfg = Release|x64 {020A7474-3601-4160-A159-D7B70B77B15F}.Release|x86.Build.0 = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|ARM64.ActiveCfg = Debug|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Debug|ARM64.Build.0 = Debug|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x64.ActiveCfg = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x64.Build.0 = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x86.ActiveCfg = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Debug|x86.Build.0 = Debug|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|ARM64.ActiveCfg = Release|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Release|ARM64.Build.0 = Release|ARM64 {27718999-C175-450A-861C-89F911E16A88}.Release|x64.ActiveCfg = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x64.Build.0 = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x86.ActiveCfg = Release|x64 {27718999-C175-450A-861C-89F911E16A88}.Release|x86.Build.0 = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|ARM64.Build.0 = Debug|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x64.ActiveCfg = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x64.Build.0 = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x86.ActiveCfg = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Debug|x86.Build.0 = Debug|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|ARM64.ActiveCfg = Release|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|ARM64.Build.0 = Release|ARM64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x64.ActiveCfg = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x64.Build.0 = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x86.ActiveCfg = Release|x64 {1DBBB112-4BB1-444B-8EBB-E66555C76BA6}.Release|x86.Build.0 = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|ARM64.Build.0 = Debug|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x64.ActiveCfg = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x64.Build.0 = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x86.ActiveCfg = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Debug|x86.Build.0 = Debug|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|ARM64.ActiveCfg = Release|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|ARM64.Build.0 = Release|ARM64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x64.ActiveCfg = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x64.Build.0 = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x86.ActiveCfg = Release|x64 {5A1DB2F0-0715-4B3B-98E6-79BC41540045}.Release|x86.Build.0 = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|ARM64.Build.0 = Debug|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x64.ActiveCfg = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x64.Build.0 = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x86.ActiveCfg = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Debug|x86.Build.0 = Debug|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|ARM64.ActiveCfg = Release|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|ARM64.Build.0 = Release|ARM64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x64.ActiveCfg = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x64.Build.0 = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x86.ActiveCfg = Release|x64 {93B72A06-C8BD-484F-A6F7-C9F280B150BF}.Release|x86.Build.0 = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|ARM64.ActiveCfg = Debug|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|ARM64.Build.0 = Debug|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x64.ActiveCfg = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x64.Build.0 = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x86.ActiveCfg = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Debug|x86.Build.0 = Debug|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|ARM64.ActiveCfg = Release|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|ARM64.Build.0 = Release|ARM64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x64.ActiveCfg = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x64.Build.0 = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x86.ActiveCfg = Release|x64 {18B3DB45-4FFE-4D01-97D6-5223FEEE1853}.Release|x86.Build.0 = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|ARM64.Build.0 = Debug|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x64.ActiveCfg = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x64.Build.0 = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x86.ActiveCfg = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Debug|x86.Build.0 = Debug|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|ARM64.ActiveCfg = Release|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|ARM64.Build.0 = Release|ARM64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x64.ActiveCfg = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x64.Build.0 = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x86.ActiveCfg = Release|x64 {34A354C5-23C7-4343-916C-C52DAF4FC39D}.Release|x86.Build.0 = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|ARM64.Build.0 = Debug|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x64.ActiveCfg = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x64.Build.0 = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x86.ActiveCfg = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Debug|x86.Build.0 = Debug|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|ARM64.ActiveCfg = Release|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|ARM64.Build.0 = Release|ARM64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x64.ActiveCfg = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x64.Build.0 = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x86.ActiveCfg = Release|x64 {3264DF53-C805-4B0C-867C-FCEAF7AEF762}.Release|x86.Build.0 = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|ARM64.ActiveCfg = Debug|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|ARM64.Build.0 = Debug|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x64.ActiveCfg = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x64.Build.0 = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x86.ActiveCfg = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Debug|x86.Build.0 = Debug|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|ARM64.ActiveCfg = Release|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|ARM64.Build.0 = Release|ARM64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x64.ActiveCfg = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x64.Build.0 = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x86.ActiveCfg = Release|x64 {31CAD28E-778A-441C-85BC-40AB3EAA2A10}.Release|x86.Build.0 = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|ARM64.ActiveCfg = Debug|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|ARM64.Build.0 = Debug|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x64.ActiveCfg = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x64.Build.0 = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x86.ActiveCfg = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Debug|x86.Build.0 = Debug|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|ARM64.ActiveCfg = Release|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|ARM64.Build.0 = Release|ARM64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x64.ActiveCfg = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x64.Build.0 = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x86.ActiveCfg = Release|x64 {25C91A4E-BA4E-467A-85CD-8B62545BF674}.Release|x86.Build.0 = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|ARM64.Build.0 = Debug|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x64.ActiveCfg = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x64.Build.0 = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x86.ActiveCfg = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Debug|x86.Build.0 = Debug|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|ARM64.ActiveCfg = Release|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|ARM64.Build.0 = Release|ARM64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x64.ActiveCfg = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x64.Build.0 = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x86.ActiveCfg = Release|x64 {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1}.Release|x86.Build.0 = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|ARM64.Build.0 = Debug|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x64.ActiveCfg = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x64.Build.0 = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x86.ActiveCfg = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Debug|x86.Build.0 = Debug|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|ARM64.ActiveCfg = Release|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|ARM64.Build.0 = Release|ARM64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x64.ActiveCfg = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x64.Build.0 = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x86.ActiveCfg = Release|x64 {212AD910-8488-4036-BE20-326931B75FB2}.Release|x86.Build.0 = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|ARM64.Build.0 = Debug|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x64.ActiveCfg = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x64.Build.0 = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x86.ActiveCfg = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Debug|x86.Build.0 = Debug|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|ARM64.ActiveCfg = Release|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|ARM64.Build.0 = Release|ARM64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x64.ActiveCfg = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x64.Build.0 = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x86.ActiveCfg = Release|x64 {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A}.Release|x86.Build.0 = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|ARM64.Build.0 = Debug|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x64.ActiveCfg = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x64.Build.0 = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x86.ActiveCfg = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Debug|x86.Build.0 = Debug|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|ARM64.ActiveCfg = Release|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|ARM64.Build.0 = Release|ARM64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x64.ActiveCfg = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x64.Build.0 = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x86.ActiveCfg = Release|x64 {92C39820-9F84-4529-BC7D-22AAE514D63B}.Release|x86.Build.0 = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|ARM64.Build.0 = Debug|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x64.ActiveCfg = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x64.Build.0 = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x86.ActiveCfg = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Debug|x86.Build.0 = Debug|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|ARM64.ActiveCfg = Release|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|ARM64.Build.0 = Release|ARM64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x64.ActiveCfg = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x64.Build.0 = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x86.ActiveCfg = Release|x64 {515554D1-D004-4F7F-A107-2211FC0F6B2C}.Release|x86.Build.0 = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|ARM64.Build.0 = Debug|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x64.ActiveCfg = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x64.Build.0 = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x86.ActiveCfg = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Debug|x86.Build.0 = Debug|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|ARM64.ActiveCfg = Release|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|ARM64.Build.0 = Release|ARM64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x64.ActiveCfg = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x64.Build.0 = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x86.ActiveCfg = Release|x64 {C97D9A5D-206C-454E-997E-009E227D7F02}.Release|x86.Build.0 = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|ARM64.ActiveCfg = Debug|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|ARM64.Build.0 = Debug|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x64.ActiveCfg = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x64.Build.0 = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x86.ActiveCfg = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Debug|x86.Build.0 = Debug|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|ARM64.ActiveCfg = Release|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|ARM64.Build.0 = Release|ARM64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x64.ActiveCfg = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x64.Build.0 = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x86.ActiveCfg = Release|x64 {31D1C81D-765F-4446-AA62-E743F6325049}.Release|x86.Build.0 = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|ARM64.Build.0 = Debug|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x64.ActiveCfg = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x64.Build.0 = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x86.ActiveCfg = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Debug|x86.Build.0 = Debug|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|ARM64.ActiveCfg = Release|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|ARM64.Build.0 = Release|ARM64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x64.ActiveCfg = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x64.Build.0 = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x86.ActiveCfg = Release|x64 {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A}.Release|x86.Build.0 = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|ARM64.Build.0 = Debug|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x64.ActiveCfg = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x64.Build.0 = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x86.ActiveCfg = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Debug|x86.Build.0 = Debug|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|ARM64.ActiveCfg = Release|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|ARM64.Build.0 = Release|ARM64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x64.ActiveCfg = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x64.Build.0 = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x86.ActiveCfg = Release|x64 {B41B888C-7DB8-4747-B262-4062E05A230D}.Release|x86.Build.0 = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|ARM64.ActiveCfg = Debug|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|ARM64.Build.0 = Debug|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x64.ActiveCfg = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x64.Build.0 = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Debug|x86.ActiveCfg = Debug|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|ARM64.ActiveCfg = Release|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|ARM64.Build.0 = Release|ARM64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x64.ActiveCfg = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x64.Build.0 = Release|x64 {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE}.Release|x86.ActiveCfg = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|ARM64.Build.0 = Debug|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x64.ActiveCfg = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x64.Build.0 = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Debug|x86.ActiveCfg = Debug|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|ARM64.ActiveCfg = Release|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|ARM64.Build.0 = Release|ARM64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x64.ActiveCfg = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x64.Build.0 = Release|x64 {E69B044A-2F8A-45AA-AD0B-256C59421807}.Release|x86.ActiveCfg = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|ARM64.Build.0 = Debug|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x64.ActiveCfg = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x64.Build.0 = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Debug|x86.ActiveCfg = Debug|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|ARM64.ActiveCfg = Release|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|ARM64.Build.0 = Release|ARM64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x64.ActiveCfg = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x64.Build.0 = Release|x64 {C604B37E-9D0E-4484-8778-E8B31B0E1B3A}.Release|x86.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|ARM64.ActiveCfg = Debug|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|ARM64.Build.0 = Debug|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x64.ActiveCfg = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x64.Build.0 = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x86.ActiveCfg = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Debug|x86.Build.0 = Debug|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|ARM64.ActiveCfg = Release|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|ARM64.Build.0 = Release|ARM64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x64.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x64.Build.0 = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x86.ActiveCfg = Release|x64 {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788}.Release|x86.Build.0 = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|ARM64.ActiveCfg = Debug|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|ARM64.Build.0 = Debug|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x64.ActiveCfg = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x64.Build.0 = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x86.ActiveCfg = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Debug|x86.Build.0 = Debug|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|ARM64.ActiveCfg = Release|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|ARM64.Build.0 = Release|ARM64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x64.ActiveCfg = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x64.Build.0 = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x86.ActiveCfg = Release|x64 {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97}.Release|x86.Build.0 = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|ARM64.Build.0 = Debug|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x64.ActiveCfg = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x64.Build.0 = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x86.ActiveCfg = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Debug|x86.Build.0 = Debug|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|ARM64.ActiveCfg = Release|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|ARM64.Build.0 = Release|ARM64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x64.ActiveCfg = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x64.Build.0 = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x86.ActiveCfg = Release|x64 {A1425B53-3D61-4679-8623-E64A0D3D0A48}.Release|x86.Build.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.Build.0 = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|ARM64.Deploy.0 = Debug|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.ActiveCfg = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.Build.0 = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x64.Deploy.0 = Debug|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.ActiveCfg = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.Build.0 = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Debug|x86.Deploy.0 = Debug|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.ActiveCfg = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.Build.0 = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|ARM64.Deploy.0 = Release|ARM64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.ActiveCfg = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.Build.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x64.Deploy.0 = Release|x64 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.ActiveCfg = Release|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.Build.0 = Release|x86 {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03}.Release|x86.Deploy.0 = Release|x86 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|ARM64.Build.0 = Debug|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x64.ActiveCfg = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x64.Build.0 = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x86.ActiveCfg = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Debug|x86.Build.0 = Debug|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|ARM64.ActiveCfg = Release|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|ARM64.Build.0 = Release|ARM64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x64.ActiveCfg = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x64.Build.0 = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x86.ActiveCfg = Release|x64 {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB}.Release|x86.Build.0 = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|ARM64.Build.0 = Debug|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x64.ActiveCfg = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x64.Build.0 = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x86.ActiveCfg = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Debug|x86.Build.0 = Debug|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|ARM64.ActiveCfg = Release|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|ARM64.Build.0 = Release|ARM64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x64.ActiveCfg = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x64.Build.0 = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x86.ActiveCfg = Release|x64 {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC}.Release|x86.Build.0 = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|ARM64.ActiveCfg = Debug|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|ARM64.Build.0 = Debug|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x64.ActiveCfg = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x64.Build.0 = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x86.ActiveCfg = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Debug|x86.Build.0 = Debug|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|ARM64.ActiveCfg = Release|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|ARM64.Build.0 = Release|ARM64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x64.ActiveCfg = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x64.Build.0 = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x86.ActiveCfg = Release|x64 {ED9A1AC6-AEB0-4569-A6E9-E1696182B545}.Release|x86.Build.0 = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|ARM64.ActiveCfg = Debug|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|ARM64.Build.0 = Debug|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x64.ActiveCfg = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x64.Build.0 = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x86.ActiveCfg = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Debug|x86.Build.0 = Debug|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|ARM64.ActiveCfg = Release|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|ARM64.Build.0 = Release|ARM64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x64.ActiveCfg = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x64.Build.0 = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x86.ActiveCfg = Release|x64 {5A5DD09D-723A-44D3-8F2B-293584C3D731}.Release|x86.Build.0 = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|ARM64.Build.0 = Debug|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x64.ActiveCfg = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x64.Build.0 = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x86.ActiveCfg = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Debug|x86.Build.0 = Debug|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|ARM64.ActiveCfg = Release|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|ARM64.Build.0 = Release|ARM64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x64.ActiveCfg = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x64.Build.0 = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x86.ActiveCfg = Release|x64 {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9}.Release|x86.Build.0 = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|ARM64.Build.0 = Debug|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x64.ActiveCfg = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x64.Build.0 = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x86.ActiveCfg = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Debug|x86.Build.0 = Debug|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|ARM64.ActiveCfg = Release|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|ARM64.Build.0 = Release|ARM64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x64.ActiveCfg = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x64.Build.0 = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x86.ActiveCfg = Release|x64 {54F7C616-FD41-4E62-BFF9-015686914F4D}.Release|x86.Build.0 = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|ARM64.ActiveCfg = Debug|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|ARM64.Build.0 = Debug|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x64.ActiveCfg = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x64.Build.0 = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x86.ActiveCfg = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Debug|x86.Build.0 = Debug|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|ARM64.ActiveCfg = Release|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|ARM64.Build.0 = Release|ARM64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x64.ActiveCfg = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x64.Build.0 = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x86.ActiveCfg = Release|x64 {143F13E3-D2E3-4D83-B035-356612D99956}.Release|x86.Build.0 = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|ARM64.ActiveCfg = Debug|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|ARM64.Build.0 = Debug|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x64.ActiveCfg = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x64.Build.0 = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x86.ActiveCfg = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Debug|x86.Build.0 = Debug|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|ARM64.ActiveCfg = Release|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|ARM64.Build.0 = Release|ARM64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x64.ActiveCfg = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x64.Build.0 = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x86.ActiveCfg = Release|x64 {56CC2F10-6E41-453D-BE16-C593A5E58482}.Release|x86.Build.0 = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|ARM64.Build.0 = Debug|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x64.ActiveCfg = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x64.Build.0 = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x86.ActiveCfg = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Debug|x86.Build.0 = Debug|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|ARM64.ActiveCfg = Release|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|ARM64.Build.0 = Release|ARM64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x64.ActiveCfg = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x64.Build.0 = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x86.ActiveCfg = Release|x64 {CA5518ED-0458-4B09-8F53-4122B9888655}.Release|x86.Build.0 = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|ARM64.Build.0 = Debug|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x64.ActiveCfg = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x64.Build.0 = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x86.ActiveCfg = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Debug|x86.Build.0 = Debug|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|ARM64.ActiveCfg = Release|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|ARM64.Build.0 = Release|ARM64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x64.ActiveCfg = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x64.Build.0 = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x86.ActiveCfg = Release|x64 {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D}.Release|x86.Build.0 = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|ARM64.Build.0 = Debug|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x64.ActiveCfg = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x64.Build.0 = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x86.ActiveCfg = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Debug|x86.Build.0 = Debug|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|ARM64.ActiveCfg = Release|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|ARM64.Build.0 = Release|ARM64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x64.ActiveCfg = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x64.Build.0 = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x86.ActiveCfg = Release|x64 {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA}.Release|x86.Build.0 = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|ARM64.ActiveCfg = Debug|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|ARM64.Build.0 = Debug|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x64.ActiveCfg = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x64.Build.0 = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x86.ActiveCfg = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Debug|x86.Build.0 = Debug|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|ARM64.ActiveCfg = Release|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|ARM64.Build.0 = Release|ARM64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x64.ActiveCfg = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x64.Build.0 = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x86.ActiveCfg = Release|x64 {2833C9C6-AB32-4048-A5C7-A70898337B57}.Release|x86.Build.0 = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|ARM64.ActiveCfg = Debug|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|ARM64.Build.0 = Debug|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x64.ActiveCfg = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x64.Build.0 = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x86.ActiveCfg = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Debug|x86.Build.0 = Debug|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|ARM64.ActiveCfg = Release|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|ARM64.Build.0 = Release|ARM64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x64.ActiveCfg = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x64.Build.0 = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x86.ActiveCfg = Release|x64 {50B82783-242F-42D2-BC03-B3430BF01354}.Release|x86.Build.0 = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|ARM64.Build.0 = Debug|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x64.ActiveCfg = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x64.Build.0 = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x86.ActiveCfg = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Debug|x86.Build.0 = Debug|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|ARM64.ActiveCfg = Release|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|ARM64.Build.0 = Release|ARM64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x64.ActiveCfg = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x64.Build.0 = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x86.ActiveCfg = Release|x64 {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2}.Release|x86.Build.0 = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|ARM64.Build.0 = Debug|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x64.ActiveCfg = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x64.Build.0 = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x86.ActiveCfg = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Debug|x86.Build.0 = Debug|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|ARM64.ActiveCfg = Release|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|ARM64.Build.0 = Release|ARM64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x64.ActiveCfg = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x64.Build.0 = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x86.ActiveCfg = Release|x64 {A663E672-B26D-4EC0-BEAB-FE2E424AC46F}.Release|x86.Build.0 = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|ARM64.ActiveCfg = Debug|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|ARM64.Build.0 = Debug|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x64.ActiveCfg = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x64.Build.0 = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x86.ActiveCfg = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Debug|x86.Build.0 = Debug|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|ARM64.ActiveCfg = Release|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|ARM64.Build.0 = Release|ARM64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x64.ActiveCfg = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x64.Build.0 = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.ActiveCfg = Release|x64 {8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.Build.0 = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.Build.0 = Debug|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x64.ActiveCfg = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x64.Build.0 = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x86.ActiveCfg = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x86.Build.0 = Debug|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|ARM64.ActiveCfg = Release|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|ARM64.Build.0 = Release|ARM64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x64.ActiveCfg = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x64.Build.0 = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x86.ActiveCfg = Release|x64 {D962A009-834F-4EEC-AABB-430DF8F98E39}.Release|x86.Build.0 = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|ARM64.Build.0 = Debug|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x64.ActiveCfg = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x64.Build.0 = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x86.ActiveCfg = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Debug|x86.Build.0 = Debug|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|ARM64.ActiveCfg = Release|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|ARM64.Build.0 = Release|ARM64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x64.ActiveCfg = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x64.Build.0 = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x86.ActiveCfg = Release|x64 {D9C5DE64-6849-4278-91AD-9660AECF2876}.Release|x86.Build.0 = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|ARM64.Build.0 = Debug|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x64.ActiveCfg = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x64.Build.0 = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x86.ActiveCfg = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Debug|x86.Build.0 = Debug|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|ARM64.ActiveCfg = Release|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|ARM64.Build.0 = Release|ARM64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x64.ActiveCfg = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x64.Build.0 = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x86.ActiveCfg = Release|x64 {FC373B24-3293-453C-AAF5-CF2909DCEE6A}.Release|x86.Build.0 = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|ARM64.Build.0 = Debug|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x64.ActiveCfg = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x64.Build.0 = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x86.ActiveCfg = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Debug|x86.Build.0 = Debug|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|ARM64.ActiveCfg = Release|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|ARM64.Build.0 = Release|ARM64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x64.ActiveCfg = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x64.Build.0 = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x86.ActiveCfg = Release|x64 {9CE59ED5-7087-4353-88EB-788038A73CEC}.Release|x86.Build.0 = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|ARM64.Build.0 = Debug|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x64.ActiveCfg = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x64.Build.0 = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x86.ActiveCfg = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Debug|x86.Build.0 = Debug|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|ARM64.ActiveCfg = Release|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|ARM64.Build.0 = Release|ARM64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x64.ActiveCfg = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x64.Build.0 = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x86.ActiveCfg = Release|x64 {FD86C06A-FB54-4D5E-9831-1CDADF60D45F}.Release|x86.Build.0 = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|ARM64.ActiveCfg = Debug|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|ARM64.Build.0 = Debug|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x64.ActiveCfg = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x64.Build.0 = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x86.ActiveCfg = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Debug|x86.Build.0 = Debug|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|ARM64.ActiveCfg = Release|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|ARM64.Build.0 = Release|ARM64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x64.ActiveCfg = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x64.Build.0 = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x86.ActiveCfg = Release|x64 {697C6AF9-0A48-49A9-866C-67DA12384015}.Release|x86.Build.0 = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|ARM64.Build.0 = Debug|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x64.ActiveCfg = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x64.Build.0 = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x86.ActiveCfg = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Debug|x86.Build.0 = Debug|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|ARM64.ActiveCfg = Release|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|ARM64.Build.0 = Release|ARM64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x64.ActiveCfg = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x64.Build.0 = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x86.ActiveCfg = Release|x64 {9EBAA524-0EDA-470B-95D4-39383285CBB2}.Release|x86.Build.0 = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|ARM64.Build.0 = Debug|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x64.ActiveCfg = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x64.Build.0 = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x86.ActiveCfg = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Debug|x86.Build.0 = Debug|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|ARM64.ActiveCfg = Release|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|ARM64.Build.0 = Release|ARM64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x64.ActiveCfg = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x64.Build.0 = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x86.ActiveCfg = Release|x64 {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D}.Release|x86.Build.0 = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|ARM64.Build.0 = Debug|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x64.ActiveCfg = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x64.Build.0 = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x86.ActiveCfg = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Debug|x86.Build.0 = Debug|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|ARM64.ActiveCfg = Release|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|ARM64.Build.0 = Release|ARM64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x64.ActiveCfg = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x64.Build.0 = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x86.ActiveCfg = Release|x64 {D095BE44-1F2E-463E-A494-121892A75EA2}.Release|x86.Build.0 = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|ARM64.Build.0 = Debug|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x64.ActiveCfg = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x64.Build.0 = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x86.ActiveCfg = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Debug|x86.Build.0 = Debug|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|ARM64.ActiveCfg = Release|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|ARM64.Build.0 = Release|ARM64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x64.ActiveCfg = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x64.Build.0 = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x86.ActiveCfg = Release|x64 {90F9FA90-2C20-4004-96E6-F3B78151F5A5}.Release|x86.Build.0 = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|ARM64.Build.0 = Debug|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x64.ActiveCfg = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x64.Build.0 = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x86.ActiveCfg = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Debug|x86.Build.0 = Debug|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|ARM64.ActiveCfg = Release|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|ARM64.Build.0 = Release|ARM64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x64.ActiveCfg = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x64.Build.0 = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x86.ActiveCfg = Release|x64 {F5E1146E-B7B3-4E11-85FD-270A500BD78C}.Release|x86.Build.0 = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|ARM64.Build.0 = Debug|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x64.ActiveCfg = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x64.Build.0 = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x86.ActiveCfg = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Debug|x86.Build.0 = Debug|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|ARM64.ActiveCfg = Release|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|ARM64.Build.0 = Release|ARM64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x64.ActiveCfg = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x64.Build.0 = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x86.ActiveCfg = Release|x64 {3157FA75-86CF-4EE2-8F62-C43F776493C6}.Release|x86.Build.0 = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|ARM64.ActiveCfg = Debug|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|ARM64.Build.0 = Debug|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x64.ActiveCfg = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x64.Build.0 = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x86.ActiveCfg = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Debug|x86.Build.0 = Debug|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|ARM64.ActiveCfg = Release|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|ARM64.Build.0 = Release|ARM64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x64.ActiveCfg = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x64.Build.0 = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x86.ActiveCfg = Release|x64 {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B}.Release|x86.Build.0 = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|ARM64.ActiveCfg = Debug|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|ARM64.Build.0 = Debug|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x64.ActiveCfg = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x64.Build.0 = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x86.ActiveCfg = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Debug|x86.Build.0 = Debug|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|ARM64.ActiveCfg = Release|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|ARM64.Build.0 = Release|ARM64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x64.ActiveCfg = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x64.Build.0 = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x86.ActiveCfg = Release|x64 {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA}.Release|x86.Build.0 = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|ARM64.ActiveCfg = Debug|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|ARM64.Build.0 = Debug|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x64.ActiveCfg = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x64.Build.0 = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x86.ActiveCfg = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Debug|x86.Build.0 = Debug|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|ARM64.ActiveCfg = Release|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|ARM64.Build.0 = Release|ARM64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x64.ActiveCfg = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x64.Build.0 = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x86.ActiveCfg = Release|x64 {B9420661-B0E4-4241-ABD4-4A27A1F64250}.Release|x86.Build.0 = Release|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|ARM64.ActiveCfg = Debug|ARM64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|ARM64.Build.0 = Debug|ARM64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|x64.ActiveCfg = Debug|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|x64.Build.0 = Debug|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|x86.ActiveCfg = Debug|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Debug|x86.Build.0 = Debug|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|ARM64.ActiveCfg = Release|ARM64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|ARM64.Build.0 = Release|ARM64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|x64.ActiveCfg = Release|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|x64.Build.0 = Release|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|x86.ActiveCfg = Release|x64 {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7}.Release|x86.Build.0 = Release|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|ARM64.ActiveCfg = Debug|ARM64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|ARM64.Build.0 = Debug|ARM64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|x64.ActiveCfg = Debug|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|x64.Build.0 = Debug|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|x86.ActiveCfg = Debug|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Debug|x86.Build.0 = Debug|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|ARM64.ActiveCfg = Release|ARM64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|ARM64.Build.0 = Release|ARM64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|x64.ActiveCfg = Release|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|x64.Build.0 = Release|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|x86.ActiveCfg = Release|x64 {D949EC7D-48A9-4279-95D5-078E7FD1F048}.Release|x86.Build.0 = Release|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|ARM64.Build.0 = Debug|ARM64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|x64.ActiveCfg = Debug|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|x64.Build.0 = Debug|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|x86.ActiveCfg = Debug|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Debug|x86.Build.0 = Debug|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|ARM64.ActiveCfg = Release|ARM64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|ARM64.Build.0 = Release|ARM64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|x64.ActiveCfg = Release|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|x64.Build.0 = Release|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|x86.ActiveCfg = Release|x64 {3BAF9C81-A194-4925-A035-5E24A5D1E542}.Release|x86.Build.0 = Release|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|ARM64.ActiveCfg = Debug|ARM64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|ARM64.Build.0 = Debug|ARM64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|x64.ActiveCfg = Debug|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|x64.Build.0 = Debug|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|x86.ActiveCfg = Debug|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Debug|x86.Build.0 = Debug|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|ARM64.ActiveCfg = Release|ARM64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|ARM64.Build.0 = Release|ARM64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|x64.ActiveCfg = Release|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|x64.Build.0 = Release|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|x86.ActiveCfg = Release|x64 {6B04803D-B418-4833-A67E-B0FC966636A5}.Release|x86.Build.0 = Release|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|ARM64.ActiveCfg = Debug|ARM64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|ARM64.Build.0 = Debug|ARM64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|x64.ActiveCfg = Debug|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|x64.Build.0 = Debug|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|x86.ActiveCfg = Debug|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Debug|x86.Build.0 = Debug|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|ARM64.ActiveCfg = Release|ARM64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|ARM64.Build.0 = Release|ARM64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|x64.ActiveCfg = Release|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|x64.Build.0 = Release|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|x86.ActiveCfg = Release|x64 {3940AD4D-F748-4BE4-9083-85769CD553EF}.Release|x86.Build.0 = Release|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|ARM64.ActiveCfg = Debug|ARM64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|ARM64.Build.0 = Debug|ARM64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|x64.ActiveCfg = Debug|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|x64.Build.0 = Debug|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|x86.ActiveCfg = Debug|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Debug|x86.Build.0 = Debug|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|ARM64.ActiveCfg = Release|ARM64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|ARM64.Build.0 = Release|ARM64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|x64.ActiveCfg = Release|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|x64.Build.0 = Release|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|x86.ActiveCfg = Release|x64 {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38}.Release|x86.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {3BB8493E-D18E-4485-A320-CB40F90F55AE} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {F9C68EDF-AC74-4B77-9AF1-005D9C9F6A99} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {9C6A7905-72D4-4BF5-B256-ABFDAEF68AE9} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {1A066C63-64B3-45F8-92FE-664E1CCE8077} = {1AFB6476-670D-4E80-A464-657E01DFF482} {5CCC8468-DEC8-4D36-99D4-5C891BEBD481} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {B25AC7A5-FB9F-4789-B392-D5C85E948670} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {51920F1F-C28C-4ADF-8660-4238766796C2} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {A3935CF4-46C5-4A88-84D3-6B12E16E6BA2} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {2151F984-E006-4A9F-92EF-C6DDE3DC8413} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {89F34AF7-1C34-4A72-AA6E-534BCF972BD9} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {6C7F47CC-2151-44A3-A546-41C70025132C} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2BE46397-4DFA-414C-9BD4-41E4BBF8CB34} = {6C7F47CC-2151-44A3-A546-41C70025132C} {0B43679E-EDFA-4DA0-AD30-F4628B308B1B} = {6C7F47CC-2151-44A3-A546-41C70025132C} {E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8} = {6C7F47CC-2151-44A3-A546-41C70025132C} {17DA04DF-E393-4397-9CF0-84DABE11032E} = {1AFB6476-670D-4E80-A464-657E01DFF482} {38BDB927-829B-4C65-9CD9-93FB05D66D65} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {8AFFA899-0B73-49EC-8C50-0FADDA57B2FC} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {4FD29318-A8AB-4D8F-AA47-60BC241B8DA3} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {8451ECDD-2EA4-4966-BB0A-7BBC40138E80} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {FF742965-9A80-41A5-B042-D6C7D3A21708} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {4AFC9975-2456-4C70-94A4-84073C1CED93} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {59BD9891-3837-438A-958D-ADC7F91F6F7E} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4D971245-7A70-41D5-BAA0-DDB5684CAF51} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {74F1B9ED-F59C-4FE7-B473-7B453E30837E} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {FDB3555B-58EF-4AE6-B5F1-904719637AB4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {F8B870EB-D5F5-45BA-9CF7-A5C459818820} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {E364F67B-BB12-4E91-B639-355866EBCD8B} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {F97E5003-F263-4D4A-A964-0F1F3C82DEF2} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {2F305555-C296-497E-AC20-5FA1B237996A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {AF2349B8-E5B6-4004-9502-687C1C7730B1} = {2F305555-C296-497E-AC20-5FA1B237996A} {6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB} = {2F305555-C296-497E-AC20-5FA1B237996A} {A2B51B8B-8F90-424E-BC97-F9AB7D76CA1A} = {2F305555-C296-497E-AC20-5FA1B237996A} {DA425894-6E13-404F-8DCB-78584EC0557A} = {2F305555-C296-497E-AC20-5FA1B237996A} {060D75DA-2D1C-48E6-A4A1-6F0718B64661} = {2F305555-C296-497E-AC20-5FA1B237996A} {748417CA-F17E-487F-9411-CAFB6D3F4877} = {2F305555-C296-497E-AC20-5FA1B237996A} {217DF501-135C-4E38-BFC8-99D4821032EA} = {2F305555-C296-497E-AC20-5FA1B237996A} {B1BCC8C6-46B5-4BFA-8F22-20F32D99EC6A} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {F055103B-F80B-4D0C-BF48-057C55620033} = {5A7818A8-109C-4E1C-850D-1A654E234B0E} {787B8AA6-CA93-4C84-96FE-DF31110AD1C4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {08C8C05F-0362-41BC-818C-724572DF8B06} = {C140A3EF-6DBF-4084-9D4C-4EB5A99FEE68} {5D00D290-4016-4CFE-9E41-1E7C724509BA} = {1AFB6476-670D-4E80-A464-657E01DFF482} {4AED67B6-55FD-486F-B917-E543DEE2CB3C} = {1AFB6476-670D-4E80-A464-657E01DFF482} {42851751-CBC8-45A6-97F5-7A0753F7B4D1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {1EF1EEF0-10F0-4F2E-8550-39B6D8044D3E} = {2F305555-C296-497E-AC20-5FA1B237996A} {8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD} = {2F305555-C296-497E-AC20-5FA1B237996A} {655C9AF2-18D3-4DA6-80E4-85504A7722BA} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {BA58206B-1493-4C75-BFEA-A85768A1E156} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {1D78B84B-CA39-406C-98F4-71F7EC266CC0} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {03276A39-D4E9-417C-8FFD-200B0EE5E871} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {B81FB7B6-D30E-428F-908A-41422EFC1172} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0F85E674-34AE-443D-954C-8321EB8B93B1} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {632BBE62-5421-49EA-835A-7FFA4F499BD6} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4FA206A5-F69F-4193-BF8F-F6EEB496734C} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {090CD7B7-3B0C-4D1D-BC98-83EB5D799BC1} = {1D78B84B-CA39-406C-98F4-71F7EC266CC0} {7E1E3F13-2BD6-3F75-A6A7-873A2B55C60F} = {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} {FD8EB419-FF9C-4D88-BB6F-BF6CED37747B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {DA5A6FE9-0040-40CC-83CC-764AE5306590} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0351ADA4-0C32-4652-9BA0-41F7B602372B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {D9B8FC84-322A-4F9F-BBB9-20915C47DDFD} = {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} {6955446D-23F7-4023-9BB3-8657F904AF99} = {1AFB6476-670D-4E80-A464-657E01DFF482} {58736667-1027-4AD7-BFDF-7A3A6474103A} = {5A7818A8-109C-4E1C-850D-1A654E234B0E} {D92131D6-7610-4D60-A7DB-1C169783F83B} = {1AFB6476-670D-4E80-A464-657E01DFF482} {1D5BE09D-78C0-4FD7-AF00-AE7C1AF7C525} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {031AC72E-FA28-4AB7-B690-6F7B9C28AA73} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {0B593A6C-4143-4337-860E-DB5710FB87DB} = {D92131D6-7610-4D60-A7DB-1C169783F83B} {CC6E41AC-8174-4E8A-8D22-85DD7F4851DF} = {1AFB6476-670D-4E80-A464-657E01DFF482} {5A7818A8-109C-4E1C-850D-1A654E234B0E} = {1AFB6476-670D-4E80-A464-657E01DFF482} {E4E03FE0-94FD-47C7-88C5-F17D0AA549D3} = {1AFB6476-670D-4E80-A464-657E01DFF482} {7319089E-46D6-4400-BC65-E39BDF1416EE} = {1AFB6476-670D-4E80-A464-657E01DFF482} {CABA8DFB-823B-4BF2-93AC-3F31984150D9} = {1AFB6476-670D-4E80-A464-657E01DFF482} {98537082-0FDB-40DE-ABD8-0DC5A4269BAB} = {1AFB6476-670D-4E80-A464-657E01DFF482} {B39DC643-4663-475E-B329-03F0C9918D48} = {1AFB6476-670D-4E80-A464-657E01DFF482} {8F62026A-294B-41C6-8839-87463613F216} = {1AFB6476-670D-4E80-A464-657E01DFF482} {C3A17DCA-217B-462C-BB0C-BE086AF80081} = {1AFB6476-670D-4E80-A464-657E01DFF482} {69E1EE8D-143A-4060-9129-4658ACF14AAF} = {2F305555-C296-497E-AC20-5FA1B237996A} {ECC20689-002A-4354-95A6-B58DF089C6FF} = {2F305555-C296-497E-AC20-5FA1B237996A} {4BABF3FE-3451-42FD-873F-3C332E18DCEF} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {0648DF05-5DDA-4BE1-B5F2-584926EBDB65} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {BA661F5B-1D5A-4FFC-9BF1-FC39DF280BDD} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {E496B7FC-1E99-4BAB-849B-0E8367040B02} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {7F4B3A60-BC27-45A7-8000-68B0B6EA7466} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {8DF78B53-200E-451F-9328-01EB907193AE} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {23D2070D-E4AD-4ADD-85A7-083D9C76AD49} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {62173D9A-6724-4C00-A1C8-FB646480A9EC} = {38BDB927-829B-4C65-9CD9-93FB05D66D65} {127F38E0-40AA-4594-B955-5616BF206882} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {5E7360A8-D048-4ED3-8F09-0BFD64C5529A} = {127F38E0-40AA-4594-B955-5616BF206882} {D940E07F-532C-4FF3-883F-790DA014F19A} = {127F38E0-40AA-4594-B955-5616BF206882} {BB23A474-5058-4F75-8FA3-5FE3DE53CDF4} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {3E424AD2-19E5-4AE6-B833-F53963EB5FC1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {106CBECA-0701-4FC3-838C-9DF816A19AE2} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2D604C07-51FC-46BB-9EB7-75AECC7F5E81} = {106CBECA-0701-4FC3-838C-9DF816A19AE2} {2EDB3EB4-FA92-4BFF-B2D8-566584837231} = {106CBECA-0701-4FC3-838C-9DF816A19AE2} {48804216-2A0E-4168-A6D8-9CD068D14227} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {FF1D7936-842A-4BBB-8BEA-E9FE796DE700} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {5043CECE-E6A7-4867-9CBE-02D27D83747A} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {459E0768-7EBD-4C41-BBA1-6DB3B3815E0A} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {5ABA70DE-3A3F-41F6-A1F5-D1F74F54F9BB} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {AC2857B4-103D-4D6D-9740-926EBF785042} = {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} {470FBAF9-E1F8-4F3E-8786-198A1C81C8A8} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {11491FD8-F921-48BF-880C-7FEA185B80A1} = {2F305555-C296-497E-AC20-5FA1B237996A} {F40C3397-1834-4530-B2D9-8F8B8456BCDF} = {2F305555-C296-497E-AC20-5FA1B237996A} {A2D583F0-B70C-4462-B1F0-8E81AFB7BA85} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {4ED320BC-BA04-4D42-8D15-CBE62151F08B} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {322566EF-20DC-43A6-B9F8-616AF942579A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {E94FD11C-0591-456F-899F-EFC0CA548336} = {322566EF-20DC-43A6-B9F8-616AF942579A} {782A61BE-9D85-4081-B35C-1CCC9DCC1E88} = {322566EF-20DC-43A6-B9F8-616AF942579A} {809AA252-E17A-4FA2-B0A1-0450976B763F} = {2F305555-C296-497E-AC20-5FA1B237996A} {133281D8-1BCE-4D07-B31E-796612A9609E} = {2F305555-C296-497E-AC20-5FA1B237996A} {805306FF-A562-4415-8DEF-E493BDC45918} = {2F305555-C296-497E-AC20-5FA1B237996A} {FCF3E52D-B80A-4FC3-98FD-6391354F0EE3} = {2F305555-C296-497E-AC20-5FA1B237996A} {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {1DC3BE92-CE89-43FB-8110-9C043A2FE7A2} = {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} {48A0A19E-A0BE-4256-ACF8-CC3B80291AF9} = {60CD2D4F-C3B9-4897-9821-FCA5098B41CE} {9F94B303-5E21-4364-9362-64426F8DB932} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {EAE14C0E-7A6B-45DA-9080-A7D8C077BA6E} = {322566EF-20DC-43A6-B9F8-616AF942579A} {F7C8C0F1-5431-4347-89D0-8E5354F93CF2} = {2F305555-C296-497E-AC20-5FA1B237996A} {F1F6B6B6-9F18-4A17-8B5C-97DF552C53DC} = {2F305555-C296-497E-AC20-5FA1B237996A} {04B193D7-3E21-46B8-A958-89B63A8A69DE} = {2F305555-C296-497E-AC20-5FA1B237996A} {5BDBD6C9-A31F-4CEB-871A-5E9E709197EF} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {FD464B4C-2F68-4D06-91E7-4208146C41F5} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {8FE5A5EE-1B59-401C-9FB3-B04ECD3E29C1} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {020A7474-3601-4160-A159-D7B70B77B15F} = {C3081D9A-1586-441A-B5F4-ED815B3719C1} {27718999-C175-450A-861C-89F911E16A88} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {1DBBB112-4BB1-444B-8EBB-E66555C76BA6} = {89E20BCE-EB9C-46C8-8B50-E01A82E6FDC3} {5A1DB2F0-0715-4B3B-98E6-79BC41540045} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {93B72A06-C8BD-484F-A6F7-C9F280B150BF} = {6C7F47CC-2151-44A3-A546-41C70025132C} {18B3DB45-4FFE-4D01-97D6-5223FEEE1853} = {6C7F47CC-2151-44A3-A546-41C70025132C} {0F14491C-6369-4C45-AAA8-135814E66E6B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {34A354C5-23C7-4343-916C-C52DAF4FC39D} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {3264DF53-C805-4B0C-867C-FCEAF7AEF762} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {31CAD28E-778A-441C-85BC-40AB3EAA2A10} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {25C91A4E-BA4E-467A-85CD-8B62545BF674} = {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} {6AB6A2D6-F859-4A82-9184-0BD29C9F07D1} = {A50C70A6-2DA0-4027-B90E-B1A40755A8A5} {212AD910-8488-4036-BE20-326931B75FB2} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {7AC943C9-52E8-44CF-9083-744D8049667B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {54A93AF7-60C7-4F6C-99D2-FBB1F75F853A} = {7AC943C9-52E8-44CF-9083-744D8049667B} {92C39820-9F84-4529-BC7D-22AAE514D63B} = {7AC943C9-52E8-44CF-9083-744D8049667B} {515554D1-D004-4F7F-A107-2211FC0F6B2C} = {7AC943C9-52E8-44CF-9083-744D8049667B} {C97D9A5D-206C-454E-997E-009E227D7F02} = {0F14491C-6369-4C45-AAA8-135814E66E6B} {31D1C81D-765F-4446-AA62-E743F6325049} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {E2D03E0F-7A75-4813-9F4B-D8763D43FD3A} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {B41B888C-7DB8-4747-B262-4062E05A230D} = {F05E590D-AD46-42BE-9C25-6A63ADD2E3EA} {AB82E5DD-C32D-4F28-9746-2C780846188E} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {57175EC7-92A5-4C1E-8244-E3FBCA2A81DE} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {E69B044A-2F8A-45AA-AD0B-256C59421807} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {C604B37E-9D0E-4484-8778-E8B31B0E1B3A} = {AB82E5DD-C32D-4F28-9746-2C780846188E} {E599C30B-9DC8-4E5A-BF27-93D4CCEDE788} = {1AFB6476-670D-4E80-A464-657E01DFF482} {00EE9BA6-4E8F-43CA-960D-D4882F0FBB97} = {1AFB6476-670D-4E80-A464-657E01DFF482} {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {A1425B53-3D61-4679-8623-E64A0D3D0A48} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {9D7A6DE0-7D27-424D-ABAE-41B2161F9A03} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {17A99C7C-0BFF-45BB-A9FD-63A0DDC105BB} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {AA9F0AF8-7924-4D59-BAA1-E36F1304E0DC} = {17B4FA70-001E-4D33-BBBB-0D142DBC2E20} {ED9A1AC6-AEB0-4569-A6E9-E1696182B545} = {2F305555-C296-497E-AC20-5FA1B237996A} {5A5DD09D-723A-44D3-8F2B-293584C3D731} = {2F305555-C296-497E-AC20-5FA1B237996A} {B3E869C4-8210-4EBD-A621-FF4C4AFCBFA9} = {2F305555-C296-497E-AC20-5FA1B237996A} {54F7C616-FD41-4E62-BFF9-015686914F4D} = {2F305555-C296-497E-AC20-5FA1B237996A} {143F13E3-D2E3-4D83-B035-356612D99956} = {2F305555-C296-497E-AC20-5FA1B237996A} {56CC2F10-6E41-453D-BE16-C593A5E58482} = {2F305555-C296-497E-AC20-5FA1B237996A} {CA5518ED-0458-4B09-8F53-4122B9888655} = {2F305555-C296-497E-AC20-5FA1B237996A} {D6DCC3AE-18C0-488A-B978-BAA9E3CFF09D} = {2F305555-C296-497E-AC20-5FA1B237996A} {2BBC9E33-21EC-401C-84DA-BB6590A9B2AA} = {2F305555-C296-497E-AC20-5FA1B237996A} {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {2833C9C6-AB32-4048-A5C7-A70898337B57} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {50B82783-242F-42D2-BC03-B3430BF01354} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {A663E672-B26D-4EC0-BEAB-FE2E424AC46F} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC} {8A08D663-4995-40E3-B42C-3F910625F284} = {322566EF-20DC-43A6-B9F8-616AF942579A} {D962A009-834F-4EEC-AABB-430DF8F98E39} = {322566EF-20DC-43A6-B9F8-616AF942579A} {D9C5DE64-6849-4278-91AD-9660AECF2876} = {322566EF-20DC-43A6-B9F8-616AF942579A} {9873BA05-4C41-4819-9283-CF45D795431B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {FC373B24-3293-453C-AAF5-CF2909DCEE6A} = {9873BA05-4C41-4819-9283-CF45D795431B} {9CE59ED5-7087-4353-88EB-788038A73CEC} = {1AFB6476-670D-4E80-A464-657E01DFF482} {FD86C06A-FB54-4D5E-9831-1CDADF60D45F} = {929C1324-22E8-4412-A9A8-80E85F3985A5} {697C6AF9-0A48-49A9-866C-67DA12384015} = {929C1324-22E8-4412-A9A8-80E85F3985A5} {929C1324-22E8-4412-A9A8-80E85F3985A5} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {9EBAA524-0EDA-470B-95D4-39383285CBB2} = {1AFB6476-670D-4E80-A464-657E01DFF482} {500DED3E-CFB5-4ED5-ACC6-02B3D6DC336D} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {D095BE44-1F2E-463E-A494-121892A75EA2} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {90F9FA90-2C20-4004-96E6-F3B78151F5A5} = {4AFC9975-2456-4C70-94A4-84073C1CED93} {3B227528-4BA6-4CAF-B44A-A10C78A64849} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {F5E1146E-B7B3-4E11-85FD-270A500BD78C} = {3B227528-4BA6-4CAF-B44A-A10C78A64849} {3157FA75-86CF-4EE2-8F62-C43F776493C6} = {3B227528-4BA6-4CAF-B44A-A10C78A64849} {FC8EB78F-F061-4BD9-A3F6-507BEA965E2B} = {D1D6BC88-09AE-4FB4-AD24-5DED46A791DD} {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC} {51465DA1-C18B-4B99-93E1-ECF8E0FA0CBA} = {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} {B9420661-B0E4-4241-ABD4-4A27A1F64250} = {538ED0BB-B863-4B20-98CC-BCDF7FA0B68A} {CCB5E44F-84D9-4203-83C6-1C9EC9302BC7} = {2F305555-C296-497E-AC20-5FA1B237996A} {D949EC7D-48A9-4279-95D5-078E7FD1F048} = {2F305555-C296-497E-AC20-5FA1B237996A} {3BAF9C81-A194-4925-A035-5E24A5D1E542} = {2F305555-C296-497E-AC20-5FA1B237996A} {6B04803D-B418-4833-A67E-B0FC966636A5} = {2F305555-C296-497E-AC20-5FA1B237996A} {3940AD4D-F748-4BE4-9083-85769CD553EF} = {2F305555-C296-497E-AC20-5FA1B237996A} {F8FFFC12-A31A-4AFA-B3DF-14DCF42B5E38} = {2F305555-C296-497E-AC20-5FA1B237996A} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {C3A2F9D1-7930-4EF4-A6FC-7EE0A99821D0} EndGlobalSection EndGlobal
pedrolamas
9d2f9bcff27e71e7c16ee243961e949f821aab2e
0990724e445fae8319aeec5a1eb92f238c088f37
nah, leave it. As far as tests still work as expected
stefansjfw
228
microsoft/PowerToys
29,735
Adds QoiThumbnailProvider and QoiPreviewHandler
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds a new thumbnail provider and preview handler for qoi files (Quite Ok Images). ### Thumbnails ![image](https://github.com/microsoft/PowerToys/assets/85504/6fa0eed2-1359-4c37-bdb5-80e798cc3aae) ### Preview ![image](https://github.com/microsoft/PowerToys/assets/85504/0771e87e-c7a1-4c45-bab7-98295717241f) ### Settings ![image](https://github.com/microsoft/PowerToys/assets/85504/17e0f037-7448-4104-baa9-6b83208fdfc5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #29742 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [X] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [X] **New binaries:** Added on the required places - [X] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [X] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [x] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Local install and manual validation
null
2023-11-07 19:33:33+00:00
2023-11-14 15:41:10+00:00
installer/PowerToysSetup/Resources.wxs
<?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" > <?include $(sys.CURRENTDIR)\Common.wxi?> <!-- Languages for localization on build farm --> <!-- qps-ploc;qps-ploca;qps-plocm; --> <?define LocLanguageList = cs-CZ;de-DE;es-ES;fr-FR;hu-HU;it-IT;ja-JP;ko-KR;nl-NL;pl-PL;pt-BR;pt-PT;ru-RU;sv-SE;tr-TR;zh-CN;zh-TW?> <Fragment> <!-- Resource directories should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <?foreach ParentDirectory in INSTALLFOLDER;HistoryPluginFolder;CalculatorPluginFolder;FolderPluginFolder;ProgramPluginFolder;ShellPluginFolder;IndexerPluginFolder;UnitConverterPluginFolder;ValueGeneratorPluginFolder;UriPluginFolder;WindowWalkerPluginFolder;OneNotePluginFolder;RegistryPluginFolder;VSCodeWorkspacesPluginFolder;ServicePluginFolder;SystemPluginFolder;TimeDatePluginFolder;WindowsSettingsPluginFolder;WindowsTerminalPluginFolder;WebSearchPluginFolder;PowerToysPluginFolder?> <DirectoryRef Id="$(var.ParentDirectory)"> <!-- Resource file directories --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <Directory Id="Resource$(var.IdSafeLanguage)$(var.ParentDirectory)" Name="$(var.Language)" /> <?undef IdSafeLanguage?> <?endforeach?> </DirectoryRef> <?endforeach?> <?endif?> <ComponentGroup Id="ResourcesComponentGroup"> <!-- Resource components should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <!-- Components for adding resource files --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <!-- CompGUIDPrefix is language-dependent guid prefix missing the last 2 digits. --> <?define CompGUIDPrefix = 3E93405A-B91B-4E04-BAEC-26BEEE60F9?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define CompGUIDPrefix = AF28C057-7ED9-474C-8E7E-D583BE8ECF?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define CompGUIDPrefix = DD1FEEBD-55F0-44BA-A0FF-62C5C1C952?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define CompGUIDPrefix = F9F86D61-C747-43FC-8509-F3D1F198E1?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define CompGUIDPrefix = 9A919A40-E457-47F5-97C8-E886F06DDE?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define CompGUIDPrefix = 48FBF6D9-32DB-46FF-A64C-225269E738?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define CompGUIDPrefix = FB8E04AB-C8E8-43C0-8883-19F73E4EBA?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define CompGUIDPrefix = 86C8F07C-80CA-420A-B6E7-86933D640C?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define CompGUIDPrefix = C68F115F-28DD-4B45-9512-405C432458?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define CompGUIDPrefix = 97494A31-5F57-4EC1-A6A9-994DF0813B?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define CompGUIDPrefix = F4985235-2AB9-446B-BF8E-B14929A160?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define CompGUIDPrefix = 58155841-D53A-4330-89D3-5C0338B928?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define CompGUIDPrefix = 75710CB2-DBDA-420B-9676-34D5F9D4A2?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define CompGUIDPrefix = 55AF2A35-F959-49AB-B9EF-DFC9964A4F?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define CompGUIDPrefix = D8CE2F7B-B0A1-4687-BFB7-1792B2FCCD?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define CompGUIDPrefix = 157BAF33-8D3F-46B7-9CF9-2C18E601CC?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define CompGUIDPrefix = 85B4199F-5F89-42C3-B7C2-DBCD3E5267?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define CompGUIDPrefix = EA375345-F52A-499B-A45E-108CE67EAF?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define CompGUIDPrefix = F8EE7CE9-58EA-4850-B76F-C22362DC0E?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define CompGUIDPrefix = F07F3210-79E2-4C38-AEF7-D8EBE06621?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?define CompGUIDPrefix = 94D9A417-56FC-435D-8167-A45F5D7A75?> <?endif?> <Component Id="Launcher_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)00"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PowerLauncher.resources.dll" /> </Component> <Component Id="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)01"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="FancyZonesEditor_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.FancyZonesEditor.resources.dll" /> </Component> <Component Id="ImageResizer_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)02"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ImageResizer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ImageResizer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ImageResizer.resources.dll" /> </Component> <Component Id="ColorPicker_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)03"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ColorPicker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ColorPicker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ColorPickerUI.resources.dll" /> </Component> <Component Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)04"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)$(var.Language)\PowerToys.MarkdownPreviewHandler.resources.dll" /> </Component> <Component Id="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)05"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="SVGPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.SvgPreviewHandler.resources.dll" /> </Component> <Component Id="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)06"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="PDFPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PdfPreviewHandler.resources.dll" /> </Component> <Component Id="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)07"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="GcodePreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.GcodePreviewHandler.resources.dll" /> </Component> <!-- PowerToys Run aka Launcher plugin resources --> <Component Id="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" Guid="$(var.CompGUIDPrefix)08"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Calculator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Calculator\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Calculator.resources.dll" /> </Component> <Component Id="Launcher_Folder_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" Guid="$(var.CompGUIDPrefix)09"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Folder_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Folder_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Folder\$(var.Language)\Microsoft.Plugin.Folder.resources.dll" /> </Component> <Component Id="Launcher_Program_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0A" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Program_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Program_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Program\$(var.Language)\Microsoft.Plugin.Program.resources.dll" /> </Component> <Component Id="Launcher_Shell_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0B" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Shell_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Shell_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Shell\$(var.Language)\Microsoft.Plugin.Shell.resources.dll" /> </Component> <Component Id="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0C" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Indexer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Indexer\$(var.Language)\Microsoft.Plugin.Indexer.resources.dll" /> </Component> <Component Id="Launcher_Uri_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0D" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Uri_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Uri_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Uri\$(var.Language)\Microsoft.Plugin.Uri.resources.dll" /> </Component> <Component Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0E" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\VSCodeWorkspaces\$(var.Language)\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.resources.dll" /> </Component> <Component Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0F" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowWalker\$(var.Language)\Microsoft.Plugin.WindowWalker.resources.dll" /> </Component> <Component Id="Launcher_Registry_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)10" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Registry_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Registry_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Registry\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Registry.resources.dll" /> </Component> <Component Id="Launcher_Service_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)11" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Service_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Service_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Service\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Service.resources.dll" /> </Component> <Component Id="Launcher_System_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)12" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_System_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_System_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\System\$(var.Language)\Microsoft.PowerToys.Run.Plugin.System.resources.dll" /> </Component> <Component Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)13" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsSettings\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsSettings.resources.dll" /> </Component> <Component Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)15" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsTerminal\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.resources.dll" /> </Component> <Component Id="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)16" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WebSearch_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WebSearch\$(var.Language)\Community.PowerToys.Run.Plugin.WebSearch.resources.dll" /> </Component> <Component Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)17" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\UnitConverter\$(var.Language)\Community.PowerToys.Run.Plugin.UnitConverter.resources.dll" /> </Component> <Component Id="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)18" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_TimeDate_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\TimeDate\$(var.Language)\Microsoft.PowerToys.Run.Plugin.TimeDate.resources.dll" /> </Component> <Component Id="Launcher_OneNote_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)19" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Resource$(var.IdSafeLanguage)OneNotePluginFolder" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_OneNote_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\OneNote\$(var.Language)\Microsoft.PowerToys.Run.Plugin.OneNote.resources.dll" /> </Component> <Component Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)1A"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.MonacoPreviewHandler.resources.dll" /> </Component> <Component Id="Launcher_History_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" Guid="$(var.CompGUIDPrefix)1B"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_History_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_History_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\History\$(var.Language)\Microsoft.PowerToys.Run.Plugin.History.resources.dll" /> </Component> <Component Id="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" Guid="$(var.CompGUIDPrefix)1C"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_PowerToys_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\PowerToys\$(var.Language)\Microsoft.PowerToys.Run.Plugin.PowerToys.resources.dll" /> </Component> <Component Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)1D" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\ValueGenerator\$(var.Language)\Community.PowerToys.Run.Plugin.ValueGenerator.resources.dll" /> </Component> <?undef IdSafeLanguage?> <?undef CompGUIDPrefix?> <?endforeach?> <?endif?> <?ifdef env.IsPipeline?> <Component Id="RemoveResourcesFolder" Guid="9BC0A5A1-CBC5-47C8-8544-3F8A8C0D45F5" Directory="INSTALLFOLDER" > <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="RemoveResourcesFolder" Value="" KeyPath="yes"/> </RegistryKey> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)INSTALLFOLDER" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)CalculatorPluginFolder" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)FolderPluginFolder" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ProgramPluginFolder" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ShellPluginFolder" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)IndexerPluginFolder" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UriPluginFolder" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowWalkerPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)RegistryPluginFolder" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ServicePluginFolder" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)SystemPluginFolder" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WebSearchPluginFolder" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UnitConverterPluginFolder" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)TimeDatePluginFolder" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)OneNotePluginFolder" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)HistoryPluginFolder" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)PowerToysPluginFolder" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" On="uninstall"/> <?undef IdSafeLanguage?> <?endforeach?> </Component> <?endif?> </ComponentGroup> </Fragment> </Wix>
<?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" > <?include $(sys.CURRENTDIR)\Common.wxi?> <!-- Languages for localization on build farm --> <!-- qps-ploc;qps-ploca;qps-plocm; --> <?define LocLanguageList = cs-CZ;de-DE;es-ES;fr-FR;hu-HU;it-IT;ja-JP;ko-KR;nl-NL;pl-PL;pt-BR;pt-PT;ru-RU;sv-SE;tr-TR;zh-CN;zh-TW?> <Fragment> <!-- Resource directories should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <?foreach ParentDirectory in INSTALLFOLDER;HistoryPluginFolder;CalculatorPluginFolder;FolderPluginFolder;ProgramPluginFolder;ShellPluginFolder;IndexerPluginFolder;UnitConverterPluginFolder;ValueGeneratorPluginFolder;UriPluginFolder;WindowWalkerPluginFolder;OneNotePluginFolder;RegistryPluginFolder;VSCodeWorkspacesPluginFolder;ServicePluginFolder;SystemPluginFolder;TimeDatePluginFolder;WindowsSettingsPluginFolder;WindowsTerminalPluginFolder;WebSearchPluginFolder;PowerToysPluginFolder?> <DirectoryRef Id="$(var.ParentDirectory)"> <!-- Resource file directories --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <Directory Id="Resource$(var.IdSafeLanguage)$(var.ParentDirectory)" Name="$(var.Language)" /> <?undef IdSafeLanguage?> <?endforeach?> </DirectoryRef> <?endforeach?> <?endif?> <ComponentGroup Id="ResourcesComponentGroup"> <!-- Resource components should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <!-- Components for adding resource files --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <!-- CompGUIDPrefix is language-dependent guid prefix missing the last 2 digits. --> <?define CompGUIDPrefix = 3E93405A-B91B-4E04-BAEC-26BEEE60F9?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define CompGUIDPrefix = AF28C057-7ED9-474C-8E7E-D583BE8ECF?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define CompGUIDPrefix = DD1FEEBD-55F0-44BA-A0FF-62C5C1C952?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define CompGUIDPrefix = F9F86D61-C747-43FC-8509-F3D1F198E1?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define CompGUIDPrefix = 9A919A40-E457-47F5-97C8-E886F06DDE?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define CompGUIDPrefix = 48FBF6D9-32DB-46FF-A64C-225269E738?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define CompGUIDPrefix = FB8E04AB-C8E8-43C0-8883-19F73E4EBA?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define CompGUIDPrefix = 86C8F07C-80CA-420A-B6E7-86933D640C?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define CompGUIDPrefix = C68F115F-28DD-4B45-9512-405C432458?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define CompGUIDPrefix = 97494A31-5F57-4EC1-A6A9-994DF0813B?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define CompGUIDPrefix = F4985235-2AB9-446B-BF8E-B14929A160?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define CompGUIDPrefix = 58155841-D53A-4330-89D3-5C0338B928?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define CompGUIDPrefix = 75710CB2-DBDA-420B-9676-34D5F9D4A2?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define CompGUIDPrefix = 55AF2A35-F959-49AB-B9EF-DFC9964A4F?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define CompGUIDPrefix = D8CE2F7B-B0A1-4687-BFB7-1792B2FCCD?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define CompGUIDPrefix = 157BAF33-8D3F-46B7-9CF9-2C18E601CC?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define CompGUIDPrefix = 85B4199F-5F89-42C3-B7C2-DBCD3E5267?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define CompGUIDPrefix = EA375345-F52A-499B-A45E-108CE67EAF?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define CompGUIDPrefix = F8EE7CE9-58EA-4850-B76F-C22362DC0E?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define CompGUIDPrefix = F07F3210-79E2-4C38-AEF7-D8EBE06621?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?define CompGUIDPrefix = 94D9A417-56FC-435D-8167-A45F5D7A75?> <?endif?> <Component Id="Launcher_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)00"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PowerLauncher.resources.dll" /> </Component> <Component Id="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)01"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="FancyZonesEditor_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.FancyZonesEditor.resources.dll" /> </Component> <Component Id="ImageResizer_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)02"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ImageResizer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ImageResizer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ImageResizer.resources.dll" /> </Component> <Component Id="ColorPicker_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)03"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ColorPicker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ColorPicker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ColorPickerUI.resources.dll" /> </Component> <Component Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)04"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)$(var.Language)\PowerToys.MarkdownPreviewHandler.resources.dll" /> </Component> <Component Id="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)05"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="SVGPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.SvgPreviewHandler.resources.dll" /> </Component> <Component Id="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)06"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="PDFPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PdfPreviewHandler.resources.dll" /> </Component> <Component Id="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)07"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="GcodePreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.GcodePreviewHandler.resources.dll" /> </Component> <!-- PowerToys Run aka Launcher plugin resources --> <Component Id="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" Guid="$(var.CompGUIDPrefix)08"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Calculator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Calculator\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Calculator.resources.dll" /> </Component> <Component Id="Launcher_Folder_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" Guid="$(var.CompGUIDPrefix)09"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Folder_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Folder_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Folder\$(var.Language)\Microsoft.Plugin.Folder.resources.dll" /> </Component> <Component Id="Launcher_Program_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0A" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Program_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Program_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Program\$(var.Language)\Microsoft.Plugin.Program.resources.dll" /> </Component> <Component Id="Launcher_Shell_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0B" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Shell_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Shell_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Shell\$(var.Language)\Microsoft.Plugin.Shell.resources.dll" /> </Component> <Component Id="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0C" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Indexer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Indexer\$(var.Language)\Microsoft.Plugin.Indexer.resources.dll" /> </Component> <Component Id="Launcher_Uri_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0D" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Uri_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Uri_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Uri\$(var.Language)\Microsoft.Plugin.Uri.resources.dll" /> </Component> <Component Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0E" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\VSCodeWorkspaces\$(var.Language)\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.resources.dll" /> </Component> <Component Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0F" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowWalker\$(var.Language)\Microsoft.Plugin.WindowWalker.resources.dll" /> </Component> <Component Id="Launcher_Registry_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)10" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Registry_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Registry_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Registry\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Registry.resources.dll" /> </Component> <Component Id="Launcher_Service_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)11" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Service_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Service_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Service\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Service.resources.dll" /> </Component> <Component Id="Launcher_System_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)12" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_System_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_System_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\System\$(var.Language)\Microsoft.PowerToys.Run.Plugin.System.resources.dll" /> </Component> <Component Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)13" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsSettings\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsSettings.resources.dll" /> </Component> <Component Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)15" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsTerminal\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.resources.dll" /> </Component> <Component Id="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)16" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WebSearch_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WebSearch\$(var.Language)\Community.PowerToys.Run.Plugin.WebSearch.resources.dll" /> </Component> <Component Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)17" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\UnitConverter\$(var.Language)\Community.PowerToys.Run.Plugin.UnitConverter.resources.dll" /> </Component> <Component Id="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)18" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_TimeDate_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\TimeDate\$(var.Language)\Microsoft.PowerToys.Run.Plugin.TimeDate.resources.dll" /> </Component> <Component Id="Launcher_OneNote_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)19" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Resource$(var.IdSafeLanguage)OneNotePluginFolder" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_OneNote_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\OneNote\$(var.Language)\Microsoft.PowerToys.Run.Plugin.OneNote.resources.dll" /> </Component> <Component Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)1A"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.MonacoPreviewHandler.resources.dll" /> </Component> <Component Id="Launcher_History_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" Guid="$(var.CompGUIDPrefix)1B"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_History_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_History_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\History\$(var.Language)\Microsoft.PowerToys.Run.Plugin.History.resources.dll" /> </Component> <Component Id="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" Guid="$(var.CompGUIDPrefix)1C"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_PowerToys_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\PowerToys\$(var.Language)\Microsoft.PowerToys.Run.Plugin.PowerToys.resources.dll" /> </Component> <Component Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)1D" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\ValueGenerator\$(var.Language)\Community.PowerToys.Run.Plugin.ValueGenerator.resources.dll" /> </Component> <Component Id="QoiPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)1E"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="QoiPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="QoiPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.QoiPreviewHandler.resources.dll" /> </Component> <?undef IdSafeLanguage?> <?undef CompGUIDPrefix?> <?endforeach?> <?endif?> <?ifdef env.IsPipeline?> <Component Id="RemoveResourcesFolder" Guid="9BC0A5A1-CBC5-47C8-8544-3F8A8C0D45F5" Directory="INSTALLFOLDER" > <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="RemoveResourcesFolder" Value="" KeyPath="yes"/> </RegistryKey> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)INSTALLFOLDER" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)CalculatorPluginFolder" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)FolderPluginFolder" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ProgramPluginFolder" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ShellPluginFolder" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)IndexerPluginFolder" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UriPluginFolder" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowWalkerPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)RegistryPluginFolder" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ServicePluginFolder" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)SystemPluginFolder" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WebSearchPluginFolder" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UnitConverterPluginFolder" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)TimeDatePluginFolder" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)OneNotePluginFolder" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)HistoryPluginFolder" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)PowerToysPluginFolder" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" On="uninstall"/> <?undef IdSafeLanguage?> <?endforeach?> </Component> <?endif?> </ComponentGroup> </Fragment> </Wix>
pedrolamas
9d2f9bcff27e71e7c16ee243961e949f821aab2e
0990724e445fae8319aeec5a1eb92f238c088f37
```suggestion Guid="$(var.CompGUIDPrefix)08"> ```
stefansjfw
229
microsoft/PowerToys
29,735
Adds QoiThumbnailProvider and QoiPreviewHandler
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds a new thumbnail provider and preview handler for qoi files (Quite Ok Images). ### Thumbnails ![image](https://github.com/microsoft/PowerToys/assets/85504/6fa0eed2-1359-4c37-bdb5-80e798cc3aae) ### Preview ![image](https://github.com/microsoft/PowerToys/assets/85504/0771e87e-c7a1-4c45-bab7-98295717241f) ### Settings ![image](https://github.com/microsoft/PowerToys/assets/85504/17e0f037-7448-4104-baa9-6b83208fdfc5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #29742 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [X] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [X] **New binaries:** Added on the required places - [X] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [X] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [x] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Local install and manual validation
null
2023-11-07 19:33:33+00:00
2023-11-14 15:41:10+00:00
installer/PowerToysSetup/Resources.wxs
<?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" > <?include $(sys.CURRENTDIR)\Common.wxi?> <!-- Languages for localization on build farm --> <!-- qps-ploc;qps-ploca;qps-plocm; --> <?define LocLanguageList = cs-CZ;de-DE;es-ES;fr-FR;hu-HU;it-IT;ja-JP;ko-KR;nl-NL;pl-PL;pt-BR;pt-PT;ru-RU;sv-SE;tr-TR;zh-CN;zh-TW?> <Fragment> <!-- Resource directories should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <?foreach ParentDirectory in INSTALLFOLDER;HistoryPluginFolder;CalculatorPluginFolder;FolderPluginFolder;ProgramPluginFolder;ShellPluginFolder;IndexerPluginFolder;UnitConverterPluginFolder;ValueGeneratorPluginFolder;UriPluginFolder;WindowWalkerPluginFolder;OneNotePluginFolder;RegistryPluginFolder;VSCodeWorkspacesPluginFolder;ServicePluginFolder;SystemPluginFolder;TimeDatePluginFolder;WindowsSettingsPluginFolder;WindowsTerminalPluginFolder;WebSearchPluginFolder;PowerToysPluginFolder?> <DirectoryRef Id="$(var.ParentDirectory)"> <!-- Resource file directories --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <Directory Id="Resource$(var.IdSafeLanguage)$(var.ParentDirectory)" Name="$(var.Language)" /> <?undef IdSafeLanguage?> <?endforeach?> </DirectoryRef> <?endforeach?> <?endif?> <ComponentGroup Id="ResourcesComponentGroup"> <!-- Resource components should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <!-- Components for adding resource files --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <!-- CompGUIDPrefix is language-dependent guid prefix missing the last 2 digits. --> <?define CompGUIDPrefix = 3E93405A-B91B-4E04-BAEC-26BEEE60F9?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define CompGUIDPrefix = AF28C057-7ED9-474C-8E7E-D583BE8ECF?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define CompGUIDPrefix = DD1FEEBD-55F0-44BA-A0FF-62C5C1C952?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define CompGUIDPrefix = F9F86D61-C747-43FC-8509-F3D1F198E1?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define CompGUIDPrefix = 9A919A40-E457-47F5-97C8-E886F06DDE?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define CompGUIDPrefix = 48FBF6D9-32DB-46FF-A64C-225269E738?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define CompGUIDPrefix = FB8E04AB-C8E8-43C0-8883-19F73E4EBA?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define CompGUIDPrefix = 86C8F07C-80CA-420A-B6E7-86933D640C?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define CompGUIDPrefix = C68F115F-28DD-4B45-9512-405C432458?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define CompGUIDPrefix = 97494A31-5F57-4EC1-A6A9-994DF0813B?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define CompGUIDPrefix = F4985235-2AB9-446B-BF8E-B14929A160?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define CompGUIDPrefix = 58155841-D53A-4330-89D3-5C0338B928?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define CompGUIDPrefix = 75710CB2-DBDA-420B-9676-34D5F9D4A2?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define CompGUIDPrefix = 55AF2A35-F959-49AB-B9EF-DFC9964A4F?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define CompGUIDPrefix = D8CE2F7B-B0A1-4687-BFB7-1792B2FCCD?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define CompGUIDPrefix = 157BAF33-8D3F-46B7-9CF9-2C18E601CC?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define CompGUIDPrefix = 85B4199F-5F89-42C3-B7C2-DBCD3E5267?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define CompGUIDPrefix = EA375345-F52A-499B-A45E-108CE67EAF?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define CompGUIDPrefix = F8EE7CE9-58EA-4850-B76F-C22362DC0E?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define CompGUIDPrefix = F07F3210-79E2-4C38-AEF7-D8EBE06621?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?define CompGUIDPrefix = 94D9A417-56FC-435D-8167-A45F5D7A75?> <?endif?> <Component Id="Launcher_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)00"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PowerLauncher.resources.dll" /> </Component> <Component Id="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)01"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="FancyZonesEditor_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.FancyZonesEditor.resources.dll" /> </Component> <Component Id="ImageResizer_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)02"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ImageResizer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ImageResizer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ImageResizer.resources.dll" /> </Component> <Component Id="ColorPicker_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)03"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ColorPicker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ColorPicker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ColorPickerUI.resources.dll" /> </Component> <Component Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)04"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)$(var.Language)\PowerToys.MarkdownPreviewHandler.resources.dll" /> </Component> <Component Id="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)05"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="SVGPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.SvgPreviewHandler.resources.dll" /> </Component> <Component Id="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)06"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="PDFPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PdfPreviewHandler.resources.dll" /> </Component> <Component Id="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)07"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="GcodePreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.GcodePreviewHandler.resources.dll" /> </Component> <!-- PowerToys Run aka Launcher plugin resources --> <Component Id="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" Guid="$(var.CompGUIDPrefix)08"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Calculator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Calculator\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Calculator.resources.dll" /> </Component> <Component Id="Launcher_Folder_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" Guid="$(var.CompGUIDPrefix)09"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Folder_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Folder_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Folder\$(var.Language)\Microsoft.Plugin.Folder.resources.dll" /> </Component> <Component Id="Launcher_Program_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0A" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Program_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Program_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Program\$(var.Language)\Microsoft.Plugin.Program.resources.dll" /> </Component> <Component Id="Launcher_Shell_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0B" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Shell_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Shell_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Shell\$(var.Language)\Microsoft.Plugin.Shell.resources.dll" /> </Component> <Component Id="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0C" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Indexer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Indexer\$(var.Language)\Microsoft.Plugin.Indexer.resources.dll" /> </Component> <Component Id="Launcher_Uri_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0D" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Uri_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Uri_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Uri\$(var.Language)\Microsoft.Plugin.Uri.resources.dll" /> </Component> <Component Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0E" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\VSCodeWorkspaces\$(var.Language)\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.resources.dll" /> </Component> <Component Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0F" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowWalker\$(var.Language)\Microsoft.Plugin.WindowWalker.resources.dll" /> </Component> <Component Id="Launcher_Registry_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)10" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Registry_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Registry_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Registry\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Registry.resources.dll" /> </Component> <Component Id="Launcher_Service_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)11" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Service_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Service_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Service\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Service.resources.dll" /> </Component> <Component Id="Launcher_System_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)12" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_System_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_System_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\System\$(var.Language)\Microsoft.PowerToys.Run.Plugin.System.resources.dll" /> </Component> <Component Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)13" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsSettings\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsSettings.resources.dll" /> </Component> <Component Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)15" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsTerminal\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.resources.dll" /> </Component> <Component Id="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)16" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WebSearch_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WebSearch\$(var.Language)\Community.PowerToys.Run.Plugin.WebSearch.resources.dll" /> </Component> <Component Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)17" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\UnitConverter\$(var.Language)\Community.PowerToys.Run.Plugin.UnitConverter.resources.dll" /> </Component> <Component Id="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)18" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_TimeDate_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\TimeDate\$(var.Language)\Microsoft.PowerToys.Run.Plugin.TimeDate.resources.dll" /> </Component> <Component Id="Launcher_OneNote_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)19" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Resource$(var.IdSafeLanguage)OneNotePluginFolder" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_OneNote_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\OneNote\$(var.Language)\Microsoft.PowerToys.Run.Plugin.OneNote.resources.dll" /> </Component> <Component Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)1A"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.MonacoPreviewHandler.resources.dll" /> </Component> <Component Id="Launcher_History_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" Guid="$(var.CompGUIDPrefix)1B"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_History_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_History_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\History\$(var.Language)\Microsoft.PowerToys.Run.Plugin.History.resources.dll" /> </Component> <Component Id="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" Guid="$(var.CompGUIDPrefix)1C"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_PowerToys_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\PowerToys\$(var.Language)\Microsoft.PowerToys.Run.Plugin.PowerToys.resources.dll" /> </Component> <Component Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)1D" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\ValueGenerator\$(var.Language)\Community.PowerToys.Run.Plugin.ValueGenerator.resources.dll" /> </Component> <?undef IdSafeLanguage?> <?undef CompGUIDPrefix?> <?endforeach?> <?endif?> <?ifdef env.IsPipeline?> <Component Id="RemoveResourcesFolder" Guid="9BC0A5A1-CBC5-47C8-8544-3F8A8C0D45F5" Directory="INSTALLFOLDER" > <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="RemoveResourcesFolder" Value="" KeyPath="yes"/> </RegistryKey> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)INSTALLFOLDER" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)CalculatorPluginFolder" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)FolderPluginFolder" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ProgramPluginFolder" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ShellPluginFolder" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)IndexerPluginFolder" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UriPluginFolder" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowWalkerPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)RegistryPluginFolder" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ServicePluginFolder" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)SystemPluginFolder" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WebSearchPluginFolder" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UnitConverterPluginFolder" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)TimeDatePluginFolder" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)OneNotePluginFolder" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)HistoryPluginFolder" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)PowerToysPluginFolder" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" On="uninstall"/> <?undef IdSafeLanguage?> <?endforeach?> </Component> <?endif?> </ComponentGroup> </Fragment> </Wix>
<?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" > <?include $(sys.CURRENTDIR)\Common.wxi?> <!-- Languages for localization on build farm --> <!-- qps-ploc;qps-ploca;qps-plocm; --> <?define LocLanguageList = cs-CZ;de-DE;es-ES;fr-FR;hu-HU;it-IT;ja-JP;ko-KR;nl-NL;pl-PL;pt-BR;pt-PT;ru-RU;sv-SE;tr-TR;zh-CN;zh-TW?> <Fragment> <!-- Resource directories should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <?foreach ParentDirectory in INSTALLFOLDER;HistoryPluginFolder;CalculatorPluginFolder;FolderPluginFolder;ProgramPluginFolder;ShellPluginFolder;IndexerPluginFolder;UnitConverterPluginFolder;ValueGeneratorPluginFolder;UriPluginFolder;WindowWalkerPluginFolder;OneNotePluginFolder;RegistryPluginFolder;VSCodeWorkspacesPluginFolder;ServicePluginFolder;SystemPluginFolder;TimeDatePluginFolder;WindowsSettingsPluginFolder;WindowsTerminalPluginFolder;WebSearchPluginFolder;PowerToysPluginFolder?> <DirectoryRef Id="$(var.ParentDirectory)"> <!-- Resource file directories --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <Directory Id="Resource$(var.IdSafeLanguage)$(var.ParentDirectory)" Name="$(var.Language)" /> <?undef IdSafeLanguage?> <?endforeach?> </DirectoryRef> <?endforeach?> <?endif?> <ComponentGroup Id="ResourcesComponentGroup"> <!-- Resource components should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <!-- Components for adding resource files --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <!-- CompGUIDPrefix is language-dependent guid prefix missing the last 2 digits. --> <?define CompGUIDPrefix = 3E93405A-B91B-4E04-BAEC-26BEEE60F9?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define CompGUIDPrefix = AF28C057-7ED9-474C-8E7E-D583BE8ECF?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define CompGUIDPrefix = DD1FEEBD-55F0-44BA-A0FF-62C5C1C952?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define CompGUIDPrefix = F9F86D61-C747-43FC-8509-F3D1F198E1?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define CompGUIDPrefix = 9A919A40-E457-47F5-97C8-E886F06DDE?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define CompGUIDPrefix = 48FBF6D9-32DB-46FF-A64C-225269E738?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define CompGUIDPrefix = FB8E04AB-C8E8-43C0-8883-19F73E4EBA?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define CompGUIDPrefix = 86C8F07C-80CA-420A-B6E7-86933D640C?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define CompGUIDPrefix = C68F115F-28DD-4B45-9512-405C432458?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define CompGUIDPrefix = 97494A31-5F57-4EC1-A6A9-994DF0813B?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define CompGUIDPrefix = F4985235-2AB9-446B-BF8E-B14929A160?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define CompGUIDPrefix = 58155841-D53A-4330-89D3-5C0338B928?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define CompGUIDPrefix = 75710CB2-DBDA-420B-9676-34D5F9D4A2?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define CompGUIDPrefix = 55AF2A35-F959-49AB-B9EF-DFC9964A4F?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define CompGUIDPrefix = D8CE2F7B-B0A1-4687-BFB7-1792B2FCCD?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define CompGUIDPrefix = 157BAF33-8D3F-46B7-9CF9-2C18E601CC?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define CompGUIDPrefix = 85B4199F-5F89-42C3-B7C2-DBCD3E5267?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define CompGUIDPrefix = EA375345-F52A-499B-A45E-108CE67EAF?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define CompGUIDPrefix = F8EE7CE9-58EA-4850-B76F-C22362DC0E?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define CompGUIDPrefix = F07F3210-79E2-4C38-AEF7-D8EBE06621?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?define CompGUIDPrefix = 94D9A417-56FC-435D-8167-A45F5D7A75?> <?endif?> <Component Id="Launcher_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)00"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PowerLauncher.resources.dll" /> </Component> <Component Id="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)01"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="FancyZonesEditor_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.FancyZonesEditor.resources.dll" /> </Component> <Component Id="ImageResizer_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)02"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ImageResizer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ImageResizer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ImageResizer.resources.dll" /> </Component> <Component Id="ColorPicker_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)03"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ColorPicker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ColorPicker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ColorPickerUI.resources.dll" /> </Component> <Component Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)04"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)$(var.Language)\PowerToys.MarkdownPreviewHandler.resources.dll" /> </Component> <Component Id="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)05"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="SVGPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.SvgPreviewHandler.resources.dll" /> </Component> <Component Id="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)06"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="PDFPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PdfPreviewHandler.resources.dll" /> </Component> <Component Id="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)07"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="GcodePreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.GcodePreviewHandler.resources.dll" /> </Component> <!-- PowerToys Run aka Launcher plugin resources --> <Component Id="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" Guid="$(var.CompGUIDPrefix)08"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Calculator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Calculator\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Calculator.resources.dll" /> </Component> <Component Id="Launcher_Folder_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" Guid="$(var.CompGUIDPrefix)09"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Folder_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Folder_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Folder\$(var.Language)\Microsoft.Plugin.Folder.resources.dll" /> </Component> <Component Id="Launcher_Program_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0A" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Program_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Program_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Program\$(var.Language)\Microsoft.Plugin.Program.resources.dll" /> </Component> <Component Id="Launcher_Shell_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0B" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Shell_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Shell_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Shell\$(var.Language)\Microsoft.Plugin.Shell.resources.dll" /> </Component> <Component Id="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0C" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Indexer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Indexer\$(var.Language)\Microsoft.Plugin.Indexer.resources.dll" /> </Component> <Component Id="Launcher_Uri_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0D" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Uri_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Uri_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Uri\$(var.Language)\Microsoft.Plugin.Uri.resources.dll" /> </Component> <Component Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0E" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\VSCodeWorkspaces\$(var.Language)\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.resources.dll" /> </Component> <Component Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0F" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowWalker\$(var.Language)\Microsoft.Plugin.WindowWalker.resources.dll" /> </Component> <Component Id="Launcher_Registry_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)10" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Registry_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Registry_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Registry\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Registry.resources.dll" /> </Component> <Component Id="Launcher_Service_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)11" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Service_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Service_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Service\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Service.resources.dll" /> </Component> <Component Id="Launcher_System_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)12" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_System_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_System_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\System\$(var.Language)\Microsoft.PowerToys.Run.Plugin.System.resources.dll" /> </Component> <Component Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)13" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsSettings\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsSettings.resources.dll" /> </Component> <Component Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)15" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsTerminal\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.resources.dll" /> </Component> <Component Id="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)16" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WebSearch_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WebSearch\$(var.Language)\Community.PowerToys.Run.Plugin.WebSearch.resources.dll" /> </Component> <Component Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)17" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\UnitConverter\$(var.Language)\Community.PowerToys.Run.Plugin.UnitConverter.resources.dll" /> </Component> <Component Id="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)18" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_TimeDate_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\TimeDate\$(var.Language)\Microsoft.PowerToys.Run.Plugin.TimeDate.resources.dll" /> </Component> <Component Id="Launcher_OneNote_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)19" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Resource$(var.IdSafeLanguage)OneNotePluginFolder" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_OneNote_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\OneNote\$(var.Language)\Microsoft.PowerToys.Run.Plugin.OneNote.resources.dll" /> </Component> <Component Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)1A"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.MonacoPreviewHandler.resources.dll" /> </Component> <Component Id="Launcher_History_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" Guid="$(var.CompGUIDPrefix)1B"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_History_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_History_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\History\$(var.Language)\Microsoft.PowerToys.Run.Plugin.History.resources.dll" /> </Component> <Component Id="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" Guid="$(var.CompGUIDPrefix)1C"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_PowerToys_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\PowerToys\$(var.Language)\Microsoft.PowerToys.Run.Plugin.PowerToys.resources.dll" /> </Component> <Component Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)1D" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\ValueGenerator\$(var.Language)\Community.PowerToys.Run.Plugin.ValueGenerator.resources.dll" /> </Component> <Component Id="QoiPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)1E"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="QoiPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="QoiPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.QoiPreviewHandler.resources.dll" /> </Component> <?undef IdSafeLanguage?> <?undef CompGUIDPrefix?> <?endforeach?> <?endif?> <?ifdef env.IsPipeline?> <Component Id="RemoveResourcesFolder" Guid="9BC0A5A1-CBC5-47C8-8544-3F8A8C0D45F5" Directory="INSTALLFOLDER" > <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="RemoveResourcesFolder" Value="" KeyPath="yes"/> </RegistryKey> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)INSTALLFOLDER" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)CalculatorPluginFolder" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)FolderPluginFolder" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ProgramPluginFolder" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ShellPluginFolder" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)IndexerPluginFolder" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UriPluginFolder" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowWalkerPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)RegistryPluginFolder" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ServicePluginFolder" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)SystemPluginFolder" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WebSearchPluginFolder" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UnitConverterPluginFolder" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)TimeDatePluginFolder" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)OneNotePluginFolder" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)HistoryPluginFolder" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)PowerToysPluginFolder" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" On="uninstall"/> <?undef IdSafeLanguage?> <?endforeach?> </Component> <?endif?> </ComponentGroup> </Fragment> </Wix>
pedrolamas
9d2f9bcff27e71e7c16ee243961e949f821aab2e
0990724e445fae8319aeec5a1eb92f238c088f37
need to increment this by one so the component guid is not the same as the previous one. Installer build will fail in release CI. We should add a comment about this, tbh :)
stefansjfw
230
microsoft/PowerToys
29,735
Adds QoiThumbnailProvider and QoiPreviewHandler
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds a new thumbnail provider and preview handler for qoi files (Quite Ok Images). ### Thumbnails ![image](https://github.com/microsoft/PowerToys/assets/85504/6fa0eed2-1359-4c37-bdb5-80e798cc3aae) ### Preview ![image](https://github.com/microsoft/PowerToys/assets/85504/0771e87e-c7a1-4c45-bab7-98295717241f) ### Settings ![image](https://github.com/microsoft/PowerToys/assets/85504/17e0f037-7448-4104-baa9-6b83208fdfc5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #29742 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [X] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [X] **New binaries:** Added on the required places - [X] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [X] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [x] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Local install and manual validation
null
2023-11-07 19:33:33+00:00
2023-11-14 15:41:10+00:00
installer/PowerToysSetup/Resources.wxs
<?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" > <?include $(sys.CURRENTDIR)\Common.wxi?> <!-- Languages for localization on build farm --> <!-- qps-ploc;qps-ploca;qps-plocm; --> <?define LocLanguageList = cs-CZ;de-DE;es-ES;fr-FR;hu-HU;it-IT;ja-JP;ko-KR;nl-NL;pl-PL;pt-BR;pt-PT;ru-RU;sv-SE;tr-TR;zh-CN;zh-TW?> <Fragment> <!-- Resource directories should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <?foreach ParentDirectory in INSTALLFOLDER;HistoryPluginFolder;CalculatorPluginFolder;FolderPluginFolder;ProgramPluginFolder;ShellPluginFolder;IndexerPluginFolder;UnitConverterPluginFolder;ValueGeneratorPluginFolder;UriPluginFolder;WindowWalkerPluginFolder;OneNotePluginFolder;RegistryPluginFolder;VSCodeWorkspacesPluginFolder;ServicePluginFolder;SystemPluginFolder;TimeDatePluginFolder;WindowsSettingsPluginFolder;WindowsTerminalPluginFolder;WebSearchPluginFolder;PowerToysPluginFolder?> <DirectoryRef Id="$(var.ParentDirectory)"> <!-- Resource file directories --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <Directory Id="Resource$(var.IdSafeLanguage)$(var.ParentDirectory)" Name="$(var.Language)" /> <?undef IdSafeLanguage?> <?endforeach?> </DirectoryRef> <?endforeach?> <?endif?> <ComponentGroup Id="ResourcesComponentGroup"> <!-- Resource components should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <!-- Components for adding resource files --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <!-- CompGUIDPrefix is language-dependent guid prefix missing the last 2 digits. --> <?define CompGUIDPrefix = 3E93405A-B91B-4E04-BAEC-26BEEE60F9?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define CompGUIDPrefix = AF28C057-7ED9-474C-8E7E-D583BE8ECF?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define CompGUIDPrefix = DD1FEEBD-55F0-44BA-A0FF-62C5C1C952?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define CompGUIDPrefix = F9F86D61-C747-43FC-8509-F3D1F198E1?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define CompGUIDPrefix = 9A919A40-E457-47F5-97C8-E886F06DDE?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define CompGUIDPrefix = 48FBF6D9-32DB-46FF-A64C-225269E738?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define CompGUIDPrefix = FB8E04AB-C8E8-43C0-8883-19F73E4EBA?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define CompGUIDPrefix = 86C8F07C-80CA-420A-B6E7-86933D640C?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define CompGUIDPrefix = C68F115F-28DD-4B45-9512-405C432458?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define CompGUIDPrefix = 97494A31-5F57-4EC1-A6A9-994DF0813B?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define CompGUIDPrefix = F4985235-2AB9-446B-BF8E-B14929A160?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define CompGUIDPrefix = 58155841-D53A-4330-89D3-5C0338B928?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define CompGUIDPrefix = 75710CB2-DBDA-420B-9676-34D5F9D4A2?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define CompGUIDPrefix = 55AF2A35-F959-49AB-B9EF-DFC9964A4F?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define CompGUIDPrefix = D8CE2F7B-B0A1-4687-BFB7-1792B2FCCD?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define CompGUIDPrefix = 157BAF33-8D3F-46B7-9CF9-2C18E601CC?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define CompGUIDPrefix = 85B4199F-5F89-42C3-B7C2-DBCD3E5267?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define CompGUIDPrefix = EA375345-F52A-499B-A45E-108CE67EAF?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define CompGUIDPrefix = F8EE7CE9-58EA-4850-B76F-C22362DC0E?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define CompGUIDPrefix = F07F3210-79E2-4C38-AEF7-D8EBE06621?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?define CompGUIDPrefix = 94D9A417-56FC-435D-8167-A45F5D7A75?> <?endif?> <Component Id="Launcher_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)00"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PowerLauncher.resources.dll" /> </Component> <Component Id="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)01"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="FancyZonesEditor_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.FancyZonesEditor.resources.dll" /> </Component> <Component Id="ImageResizer_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)02"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ImageResizer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ImageResizer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ImageResizer.resources.dll" /> </Component> <Component Id="ColorPicker_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)03"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ColorPicker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ColorPicker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ColorPickerUI.resources.dll" /> </Component> <Component Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)04"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)$(var.Language)\PowerToys.MarkdownPreviewHandler.resources.dll" /> </Component> <Component Id="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)05"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="SVGPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.SvgPreviewHandler.resources.dll" /> </Component> <Component Id="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)06"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="PDFPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PdfPreviewHandler.resources.dll" /> </Component> <Component Id="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)07"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="GcodePreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.GcodePreviewHandler.resources.dll" /> </Component> <!-- PowerToys Run aka Launcher plugin resources --> <Component Id="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" Guid="$(var.CompGUIDPrefix)08"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Calculator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Calculator\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Calculator.resources.dll" /> </Component> <Component Id="Launcher_Folder_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" Guid="$(var.CompGUIDPrefix)09"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Folder_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Folder_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Folder\$(var.Language)\Microsoft.Plugin.Folder.resources.dll" /> </Component> <Component Id="Launcher_Program_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0A" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Program_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Program_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Program\$(var.Language)\Microsoft.Plugin.Program.resources.dll" /> </Component> <Component Id="Launcher_Shell_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0B" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Shell_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Shell_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Shell\$(var.Language)\Microsoft.Plugin.Shell.resources.dll" /> </Component> <Component Id="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0C" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Indexer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Indexer\$(var.Language)\Microsoft.Plugin.Indexer.resources.dll" /> </Component> <Component Id="Launcher_Uri_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0D" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Uri_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Uri_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Uri\$(var.Language)\Microsoft.Plugin.Uri.resources.dll" /> </Component> <Component Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0E" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\VSCodeWorkspaces\$(var.Language)\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.resources.dll" /> </Component> <Component Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0F" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowWalker\$(var.Language)\Microsoft.Plugin.WindowWalker.resources.dll" /> </Component> <Component Id="Launcher_Registry_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)10" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Registry_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Registry_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Registry\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Registry.resources.dll" /> </Component> <Component Id="Launcher_Service_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)11" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Service_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Service_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Service\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Service.resources.dll" /> </Component> <Component Id="Launcher_System_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)12" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_System_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_System_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\System\$(var.Language)\Microsoft.PowerToys.Run.Plugin.System.resources.dll" /> </Component> <Component Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)13" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsSettings\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsSettings.resources.dll" /> </Component> <Component Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)15" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsTerminal\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.resources.dll" /> </Component> <Component Id="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)16" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WebSearch_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WebSearch\$(var.Language)\Community.PowerToys.Run.Plugin.WebSearch.resources.dll" /> </Component> <Component Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)17" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\UnitConverter\$(var.Language)\Community.PowerToys.Run.Plugin.UnitConverter.resources.dll" /> </Component> <Component Id="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)18" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_TimeDate_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\TimeDate\$(var.Language)\Microsoft.PowerToys.Run.Plugin.TimeDate.resources.dll" /> </Component> <Component Id="Launcher_OneNote_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)19" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Resource$(var.IdSafeLanguage)OneNotePluginFolder" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_OneNote_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\OneNote\$(var.Language)\Microsoft.PowerToys.Run.Plugin.OneNote.resources.dll" /> </Component> <Component Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)1A"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.MonacoPreviewHandler.resources.dll" /> </Component> <Component Id="Launcher_History_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" Guid="$(var.CompGUIDPrefix)1B"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_History_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_History_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\History\$(var.Language)\Microsoft.PowerToys.Run.Plugin.History.resources.dll" /> </Component> <Component Id="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" Guid="$(var.CompGUIDPrefix)1C"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_PowerToys_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\PowerToys\$(var.Language)\Microsoft.PowerToys.Run.Plugin.PowerToys.resources.dll" /> </Component> <Component Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)1D" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\ValueGenerator\$(var.Language)\Community.PowerToys.Run.Plugin.ValueGenerator.resources.dll" /> </Component> <?undef IdSafeLanguage?> <?undef CompGUIDPrefix?> <?endforeach?> <?endif?> <?ifdef env.IsPipeline?> <Component Id="RemoveResourcesFolder" Guid="9BC0A5A1-CBC5-47C8-8544-3F8A8C0D45F5" Directory="INSTALLFOLDER" > <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="RemoveResourcesFolder" Value="" KeyPath="yes"/> </RegistryKey> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)INSTALLFOLDER" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)CalculatorPluginFolder" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)FolderPluginFolder" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ProgramPluginFolder" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ShellPluginFolder" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)IndexerPluginFolder" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UriPluginFolder" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowWalkerPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)RegistryPluginFolder" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ServicePluginFolder" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)SystemPluginFolder" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WebSearchPluginFolder" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UnitConverterPluginFolder" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)TimeDatePluginFolder" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)OneNotePluginFolder" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)HistoryPluginFolder" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)PowerToysPluginFolder" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" On="uninstall"/> <?undef IdSafeLanguage?> <?endforeach?> </Component> <?endif?> </ComponentGroup> </Fragment> </Wix>
<?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" > <?include $(sys.CURRENTDIR)\Common.wxi?> <!-- Languages for localization on build farm --> <!-- qps-ploc;qps-ploca;qps-plocm; --> <?define LocLanguageList = cs-CZ;de-DE;es-ES;fr-FR;hu-HU;it-IT;ja-JP;ko-KR;nl-NL;pl-PL;pt-BR;pt-PT;ru-RU;sv-SE;tr-TR;zh-CN;zh-TW?> <Fragment> <!-- Resource directories should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <?foreach ParentDirectory in INSTALLFOLDER;HistoryPluginFolder;CalculatorPluginFolder;FolderPluginFolder;ProgramPluginFolder;ShellPluginFolder;IndexerPluginFolder;UnitConverterPluginFolder;ValueGeneratorPluginFolder;UriPluginFolder;WindowWalkerPluginFolder;OneNotePluginFolder;RegistryPluginFolder;VSCodeWorkspacesPluginFolder;ServicePluginFolder;SystemPluginFolder;TimeDatePluginFolder;WindowsSettingsPluginFolder;WindowsTerminalPluginFolder;WebSearchPluginFolder;PowerToysPluginFolder?> <DirectoryRef Id="$(var.ParentDirectory)"> <!-- Resource file directories --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <Directory Id="Resource$(var.IdSafeLanguage)$(var.ParentDirectory)" Name="$(var.Language)" /> <?undef IdSafeLanguage?> <?endforeach?> </DirectoryRef> <?endforeach?> <?endif?> <ComponentGroup Id="ResourcesComponentGroup"> <!-- Resource components should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <!-- Components for adding resource files --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <!-- CompGUIDPrefix is language-dependent guid prefix missing the last 2 digits. --> <?define CompGUIDPrefix = 3E93405A-B91B-4E04-BAEC-26BEEE60F9?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define CompGUIDPrefix = AF28C057-7ED9-474C-8E7E-D583BE8ECF?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define CompGUIDPrefix = DD1FEEBD-55F0-44BA-A0FF-62C5C1C952?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define CompGUIDPrefix = F9F86D61-C747-43FC-8509-F3D1F198E1?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define CompGUIDPrefix = 9A919A40-E457-47F5-97C8-E886F06DDE?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define CompGUIDPrefix = 48FBF6D9-32DB-46FF-A64C-225269E738?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define CompGUIDPrefix = FB8E04AB-C8E8-43C0-8883-19F73E4EBA?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define CompGUIDPrefix = 86C8F07C-80CA-420A-B6E7-86933D640C?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define CompGUIDPrefix = C68F115F-28DD-4B45-9512-405C432458?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define CompGUIDPrefix = 97494A31-5F57-4EC1-A6A9-994DF0813B?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define CompGUIDPrefix = F4985235-2AB9-446B-BF8E-B14929A160?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define CompGUIDPrefix = 58155841-D53A-4330-89D3-5C0338B928?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define CompGUIDPrefix = 75710CB2-DBDA-420B-9676-34D5F9D4A2?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define CompGUIDPrefix = 55AF2A35-F959-49AB-B9EF-DFC9964A4F?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define CompGUIDPrefix = D8CE2F7B-B0A1-4687-BFB7-1792B2FCCD?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define CompGUIDPrefix = 157BAF33-8D3F-46B7-9CF9-2C18E601CC?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define CompGUIDPrefix = 85B4199F-5F89-42C3-B7C2-DBCD3E5267?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define CompGUIDPrefix = EA375345-F52A-499B-A45E-108CE67EAF?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define CompGUIDPrefix = F8EE7CE9-58EA-4850-B76F-C22362DC0E?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define CompGUIDPrefix = F07F3210-79E2-4C38-AEF7-D8EBE06621?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?define CompGUIDPrefix = 94D9A417-56FC-435D-8167-A45F5D7A75?> <?endif?> <Component Id="Launcher_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)00"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PowerLauncher.resources.dll" /> </Component> <Component Id="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)01"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="FancyZonesEditor_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.FancyZonesEditor.resources.dll" /> </Component> <Component Id="ImageResizer_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)02"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ImageResizer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ImageResizer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ImageResizer.resources.dll" /> </Component> <Component Id="ColorPicker_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)03"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ColorPicker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ColorPicker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ColorPickerUI.resources.dll" /> </Component> <Component Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)04"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)$(var.Language)\PowerToys.MarkdownPreviewHandler.resources.dll" /> </Component> <Component Id="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)05"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="SVGPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.SvgPreviewHandler.resources.dll" /> </Component> <Component Id="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)06"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="PDFPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PdfPreviewHandler.resources.dll" /> </Component> <Component Id="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)07"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="GcodePreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.GcodePreviewHandler.resources.dll" /> </Component> <!-- PowerToys Run aka Launcher plugin resources --> <Component Id="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" Guid="$(var.CompGUIDPrefix)08"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Calculator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Calculator\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Calculator.resources.dll" /> </Component> <Component Id="Launcher_Folder_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" Guid="$(var.CompGUIDPrefix)09"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Folder_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Folder_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Folder\$(var.Language)\Microsoft.Plugin.Folder.resources.dll" /> </Component> <Component Id="Launcher_Program_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0A" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Program_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Program_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Program\$(var.Language)\Microsoft.Plugin.Program.resources.dll" /> </Component> <Component Id="Launcher_Shell_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0B" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Shell_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Shell_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Shell\$(var.Language)\Microsoft.Plugin.Shell.resources.dll" /> </Component> <Component Id="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0C" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Indexer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Indexer\$(var.Language)\Microsoft.Plugin.Indexer.resources.dll" /> </Component> <Component Id="Launcher_Uri_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0D" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Uri_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Uri_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Uri\$(var.Language)\Microsoft.Plugin.Uri.resources.dll" /> </Component> <Component Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0E" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\VSCodeWorkspaces\$(var.Language)\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.resources.dll" /> </Component> <Component Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0F" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowWalker\$(var.Language)\Microsoft.Plugin.WindowWalker.resources.dll" /> </Component> <Component Id="Launcher_Registry_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)10" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Registry_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Registry_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Registry\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Registry.resources.dll" /> </Component> <Component Id="Launcher_Service_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)11" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Service_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Service_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Service\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Service.resources.dll" /> </Component> <Component Id="Launcher_System_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)12" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_System_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_System_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\System\$(var.Language)\Microsoft.PowerToys.Run.Plugin.System.resources.dll" /> </Component> <Component Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)13" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsSettings\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsSettings.resources.dll" /> </Component> <Component Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)15" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsTerminal\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.resources.dll" /> </Component> <Component Id="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)16" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WebSearch_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WebSearch\$(var.Language)\Community.PowerToys.Run.Plugin.WebSearch.resources.dll" /> </Component> <Component Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)17" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\UnitConverter\$(var.Language)\Community.PowerToys.Run.Plugin.UnitConverter.resources.dll" /> </Component> <Component Id="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)18" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_TimeDate_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\TimeDate\$(var.Language)\Microsoft.PowerToys.Run.Plugin.TimeDate.resources.dll" /> </Component> <Component Id="Launcher_OneNote_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)19" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Resource$(var.IdSafeLanguage)OneNotePluginFolder" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_OneNote_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\OneNote\$(var.Language)\Microsoft.PowerToys.Run.Plugin.OneNote.resources.dll" /> </Component> <Component Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)1A"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.MonacoPreviewHandler.resources.dll" /> </Component> <Component Id="Launcher_History_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" Guid="$(var.CompGUIDPrefix)1B"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_History_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_History_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\History\$(var.Language)\Microsoft.PowerToys.Run.Plugin.History.resources.dll" /> </Component> <Component Id="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" Guid="$(var.CompGUIDPrefix)1C"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_PowerToys_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\PowerToys\$(var.Language)\Microsoft.PowerToys.Run.Plugin.PowerToys.resources.dll" /> </Component> <Component Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)1D" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\ValueGenerator\$(var.Language)\Community.PowerToys.Run.Plugin.ValueGenerator.resources.dll" /> </Component> <Component Id="QoiPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)1E"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="QoiPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="QoiPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.QoiPreviewHandler.resources.dll" /> </Component> <?undef IdSafeLanguage?> <?undef CompGUIDPrefix?> <?endforeach?> <?endif?> <?ifdef env.IsPipeline?> <Component Id="RemoveResourcesFolder" Guid="9BC0A5A1-CBC5-47C8-8544-3F8A8C0D45F5" Directory="INSTALLFOLDER" > <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="RemoveResourcesFolder" Value="" KeyPath="yes"/> </RegistryKey> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)INSTALLFOLDER" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)CalculatorPluginFolder" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)FolderPluginFolder" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ProgramPluginFolder" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ShellPluginFolder" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)IndexerPluginFolder" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UriPluginFolder" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowWalkerPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)RegistryPluginFolder" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ServicePluginFolder" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)SystemPluginFolder" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WebSearchPluginFolder" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UnitConverterPluginFolder" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)TimeDatePluginFolder" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)OneNotePluginFolder" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)HistoryPluginFolder" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)PowerToysPluginFolder" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" On="uninstall"/> <?undef IdSafeLanguage?> <?endforeach?> </Component> <?endif?> </ComponentGroup> </Fragment> </Wix>
pedrolamas
9d2f9bcff27e71e7c16ee243961e949f821aab2e
0990724e445fae8319aeec5a1eb92f238c088f37
Oops, this was my bad, missed that you put this in the middle of the components list, i.e. the next Component *Launcher_Calculator_$(var.IdSafeLanguage)_Component* has (var.CompGUIDPrefix)08 guid. I'd suggest moving this to the end of the components list and Guid should be Guid="$(var.CompGUIDPrefix)1E" if I'm not wrong
stefansjfw
231
microsoft/PowerToys
29,735
Adds QoiThumbnailProvider and QoiPreviewHandler
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds a new thumbnail provider and preview handler for qoi files (Quite Ok Images). ### Thumbnails ![image](https://github.com/microsoft/PowerToys/assets/85504/6fa0eed2-1359-4c37-bdb5-80e798cc3aae) ### Preview ![image](https://github.com/microsoft/PowerToys/assets/85504/0771e87e-c7a1-4c45-bab7-98295717241f) ### Settings ![image](https://github.com/microsoft/PowerToys/assets/85504/17e0f037-7448-4104-baa9-6b83208fdfc5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #29742 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [X] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [X] **New binaries:** Added on the required places - [X] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [X] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [x] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Local install and manual validation
null
2023-11-07 19:33:33+00:00
2023-11-14 15:41:10+00:00
installer/PowerToysSetup/Resources.wxs
<?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" > <?include $(sys.CURRENTDIR)\Common.wxi?> <!-- Languages for localization on build farm --> <!-- qps-ploc;qps-ploca;qps-plocm; --> <?define LocLanguageList = cs-CZ;de-DE;es-ES;fr-FR;hu-HU;it-IT;ja-JP;ko-KR;nl-NL;pl-PL;pt-BR;pt-PT;ru-RU;sv-SE;tr-TR;zh-CN;zh-TW?> <Fragment> <!-- Resource directories should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <?foreach ParentDirectory in INSTALLFOLDER;HistoryPluginFolder;CalculatorPluginFolder;FolderPluginFolder;ProgramPluginFolder;ShellPluginFolder;IndexerPluginFolder;UnitConverterPluginFolder;ValueGeneratorPluginFolder;UriPluginFolder;WindowWalkerPluginFolder;OneNotePluginFolder;RegistryPluginFolder;VSCodeWorkspacesPluginFolder;ServicePluginFolder;SystemPluginFolder;TimeDatePluginFolder;WindowsSettingsPluginFolder;WindowsTerminalPluginFolder;WebSearchPluginFolder;PowerToysPluginFolder?> <DirectoryRef Id="$(var.ParentDirectory)"> <!-- Resource file directories --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <Directory Id="Resource$(var.IdSafeLanguage)$(var.ParentDirectory)" Name="$(var.Language)" /> <?undef IdSafeLanguage?> <?endforeach?> </DirectoryRef> <?endforeach?> <?endif?> <ComponentGroup Id="ResourcesComponentGroup"> <!-- Resource components should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <!-- Components for adding resource files --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <!-- CompGUIDPrefix is language-dependent guid prefix missing the last 2 digits. --> <?define CompGUIDPrefix = 3E93405A-B91B-4E04-BAEC-26BEEE60F9?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define CompGUIDPrefix = AF28C057-7ED9-474C-8E7E-D583BE8ECF?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define CompGUIDPrefix = DD1FEEBD-55F0-44BA-A0FF-62C5C1C952?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define CompGUIDPrefix = F9F86D61-C747-43FC-8509-F3D1F198E1?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define CompGUIDPrefix = 9A919A40-E457-47F5-97C8-E886F06DDE?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define CompGUIDPrefix = 48FBF6D9-32DB-46FF-A64C-225269E738?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define CompGUIDPrefix = FB8E04AB-C8E8-43C0-8883-19F73E4EBA?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define CompGUIDPrefix = 86C8F07C-80CA-420A-B6E7-86933D640C?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define CompGUIDPrefix = C68F115F-28DD-4B45-9512-405C432458?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define CompGUIDPrefix = 97494A31-5F57-4EC1-A6A9-994DF0813B?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define CompGUIDPrefix = F4985235-2AB9-446B-BF8E-B14929A160?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define CompGUIDPrefix = 58155841-D53A-4330-89D3-5C0338B928?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define CompGUIDPrefix = 75710CB2-DBDA-420B-9676-34D5F9D4A2?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define CompGUIDPrefix = 55AF2A35-F959-49AB-B9EF-DFC9964A4F?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define CompGUIDPrefix = D8CE2F7B-B0A1-4687-BFB7-1792B2FCCD?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define CompGUIDPrefix = 157BAF33-8D3F-46B7-9CF9-2C18E601CC?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define CompGUIDPrefix = 85B4199F-5F89-42C3-B7C2-DBCD3E5267?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define CompGUIDPrefix = EA375345-F52A-499B-A45E-108CE67EAF?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define CompGUIDPrefix = F8EE7CE9-58EA-4850-B76F-C22362DC0E?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define CompGUIDPrefix = F07F3210-79E2-4C38-AEF7-D8EBE06621?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?define CompGUIDPrefix = 94D9A417-56FC-435D-8167-A45F5D7A75?> <?endif?> <Component Id="Launcher_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)00"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PowerLauncher.resources.dll" /> </Component> <Component Id="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)01"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="FancyZonesEditor_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.FancyZonesEditor.resources.dll" /> </Component> <Component Id="ImageResizer_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)02"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ImageResizer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ImageResizer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ImageResizer.resources.dll" /> </Component> <Component Id="ColorPicker_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)03"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ColorPicker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ColorPicker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ColorPickerUI.resources.dll" /> </Component> <Component Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)04"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)$(var.Language)\PowerToys.MarkdownPreviewHandler.resources.dll" /> </Component> <Component Id="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)05"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="SVGPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.SvgPreviewHandler.resources.dll" /> </Component> <Component Id="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)06"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="PDFPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PdfPreviewHandler.resources.dll" /> </Component> <Component Id="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)07"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="GcodePreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.GcodePreviewHandler.resources.dll" /> </Component> <!-- PowerToys Run aka Launcher plugin resources --> <Component Id="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" Guid="$(var.CompGUIDPrefix)08"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Calculator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Calculator\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Calculator.resources.dll" /> </Component> <Component Id="Launcher_Folder_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" Guid="$(var.CompGUIDPrefix)09"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Folder_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Folder_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Folder\$(var.Language)\Microsoft.Plugin.Folder.resources.dll" /> </Component> <Component Id="Launcher_Program_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0A" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Program_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Program_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Program\$(var.Language)\Microsoft.Plugin.Program.resources.dll" /> </Component> <Component Id="Launcher_Shell_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0B" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Shell_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Shell_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Shell\$(var.Language)\Microsoft.Plugin.Shell.resources.dll" /> </Component> <Component Id="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0C" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Indexer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Indexer\$(var.Language)\Microsoft.Plugin.Indexer.resources.dll" /> </Component> <Component Id="Launcher_Uri_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0D" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Uri_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Uri_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Uri\$(var.Language)\Microsoft.Plugin.Uri.resources.dll" /> </Component> <Component Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0E" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\VSCodeWorkspaces\$(var.Language)\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.resources.dll" /> </Component> <Component Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0F" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowWalker\$(var.Language)\Microsoft.Plugin.WindowWalker.resources.dll" /> </Component> <Component Id="Launcher_Registry_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)10" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Registry_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Registry_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Registry\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Registry.resources.dll" /> </Component> <Component Id="Launcher_Service_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)11" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Service_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Service_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Service\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Service.resources.dll" /> </Component> <Component Id="Launcher_System_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)12" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_System_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_System_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\System\$(var.Language)\Microsoft.PowerToys.Run.Plugin.System.resources.dll" /> </Component> <Component Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)13" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsSettings\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsSettings.resources.dll" /> </Component> <Component Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)15" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsTerminal\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.resources.dll" /> </Component> <Component Id="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)16" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WebSearch_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WebSearch\$(var.Language)\Community.PowerToys.Run.Plugin.WebSearch.resources.dll" /> </Component> <Component Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)17" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\UnitConverter\$(var.Language)\Community.PowerToys.Run.Plugin.UnitConverter.resources.dll" /> </Component> <Component Id="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)18" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_TimeDate_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\TimeDate\$(var.Language)\Microsoft.PowerToys.Run.Plugin.TimeDate.resources.dll" /> </Component> <Component Id="Launcher_OneNote_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)19" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Resource$(var.IdSafeLanguage)OneNotePluginFolder" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_OneNote_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\OneNote\$(var.Language)\Microsoft.PowerToys.Run.Plugin.OneNote.resources.dll" /> </Component> <Component Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)1A"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.MonacoPreviewHandler.resources.dll" /> </Component> <Component Id="Launcher_History_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" Guid="$(var.CompGUIDPrefix)1B"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_History_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_History_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\History\$(var.Language)\Microsoft.PowerToys.Run.Plugin.History.resources.dll" /> </Component> <Component Id="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" Guid="$(var.CompGUIDPrefix)1C"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_PowerToys_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\PowerToys\$(var.Language)\Microsoft.PowerToys.Run.Plugin.PowerToys.resources.dll" /> </Component> <Component Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)1D" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\ValueGenerator\$(var.Language)\Community.PowerToys.Run.Plugin.ValueGenerator.resources.dll" /> </Component> <?undef IdSafeLanguage?> <?undef CompGUIDPrefix?> <?endforeach?> <?endif?> <?ifdef env.IsPipeline?> <Component Id="RemoveResourcesFolder" Guid="9BC0A5A1-CBC5-47C8-8544-3F8A8C0D45F5" Directory="INSTALLFOLDER" > <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="RemoveResourcesFolder" Value="" KeyPath="yes"/> </RegistryKey> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)INSTALLFOLDER" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)CalculatorPluginFolder" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)FolderPluginFolder" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ProgramPluginFolder" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ShellPluginFolder" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)IndexerPluginFolder" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UriPluginFolder" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowWalkerPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)RegistryPluginFolder" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ServicePluginFolder" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)SystemPluginFolder" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WebSearchPluginFolder" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UnitConverterPluginFolder" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)TimeDatePluginFolder" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)OneNotePluginFolder" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)HistoryPluginFolder" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)PowerToysPluginFolder" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" On="uninstall"/> <?undef IdSafeLanguage?> <?endforeach?> </Component> <?endif?> </ComponentGroup> </Fragment> </Wix>
<?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" > <?include $(sys.CURRENTDIR)\Common.wxi?> <!-- Languages for localization on build farm --> <!-- qps-ploc;qps-ploca;qps-plocm; --> <?define LocLanguageList = cs-CZ;de-DE;es-ES;fr-FR;hu-HU;it-IT;ja-JP;ko-KR;nl-NL;pl-PL;pt-BR;pt-PT;ru-RU;sv-SE;tr-TR;zh-CN;zh-TW?> <Fragment> <!-- Resource directories should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <?foreach ParentDirectory in INSTALLFOLDER;HistoryPluginFolder;CalculatorPluginFolder;FolderPluginFolder;ProgramPluginFolder;ShellPluginFolder;IndexerPluginFolder;UnitConverterPluginFolder;ValueGeneratorPluginFolder;UriPluginFolder;WindowWalkerPluginFolder;OneNotePluginFolder;RegistryPluginFolder;VSCodeWorkspacesPluginFolder;ServicePluginFolder;SystemPluginFolder;TimeDatePluginFolder;WindowsSettingsPluginFolder;WindowsTerminalPluginFolder;WebSearchPluginFolder;PowerToysPluginFolder?> <DirectoryRef Id="$(var.ParentDirectory)"> <!-- Resource file directories --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <Directory Id="Resource$(var.IdSafeLanguage)$(var.ParentDirectory)" Name="$(var.Language)" /> <?undef IdSafeLanguage?> <?endforeach?> </DirectoryRef> <?endforeach?> <?endif?> <ComponentGroup Id="ResourcesComponentGroup"> <!-- Resource components should be added only if the installer is built on the build farm --> <?ifdef env.IsPipeline?> <!-- Components for adding resource files --> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <!-- CompGUIDPrefix is language-dependent guid prefix missing the last 2 digits. --> <?define CompGUIDPrefix = 3E93405A-B91B-4E04-BAEC-26BEEE60F9?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define CompGUIDPrefix = AF28C057-7ED9-474C-8E7E-D583BE8ECF?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define CompGUIDPrefix = DD1FEEBD-55F0-44BA-A0FF-62C5C1C952?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define CompGUIDPrefix = F9F86D61-C747-43FC-8509-F3D1F198E1?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define CompGUIDPrefix = 9A919A40-E457-47F5-97C8-E886F06DDE?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define CompGUIDPrefix = 48FBF6D9-32DB-46FF-A64C-225269E738?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define CompGUIDPrefix = FB8E04AB-C8E8-43C0-8883-19F73E4EBA?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define CompGUIDPrefix = 86C8F07C-80CA-420A-B6E7-86933D640C?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define CompGUIDPrefix = C68F115F-28DD-4B45-9512-405C432458?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define CompGUIDPrefix = 97494A31-5F57-4EC1-A6A9-994DF0813B?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define CompGUIDPrefix = F4985235-2AB9-446B-BF8E-B14929A160?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define CompGUIDPrefix = 58155841-D53A-4330-89D3-5C0338B928?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define CompGUIDPrefix = 75710CB2-DBDA-420B-9676-34D5F9D4A2?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define CompGUIDPrefix = 55AF2A35-F959-49AB-B9EF-DFC9964A4F?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define CompGUIDPrefix = D8CE2F7B-B0A1-4687-BFB7-1792B2FCCD?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define CompGUIDPrefix = 157BAF33-8D3F-46B7-9CF9-2C18E601CC?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define CompGUIDPrefix = 85B4199F-5F89-42C3-B7C2-DBCD3E5267?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define CompGUIDPrefix = EA375345-F52A-499B-A45E-108CE67EAF?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define CompGUIDPrefix = F8EE7CE9-58EA-4850-B76F-C22362DC0E?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define CompGUIDPrefix = F07F3210-79E2-4C38-AEF7-D8EBE06621?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?define CompGUIDPrefix = 94D9A417-56FC-435D-8167-A45F5D7A75?> <?endif?> <Component Id="Launcher_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)00"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PowerLauncher.resources.dll" /> </Component> <Component Id="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)01"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="FancyZonesEditor_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="FancyZonesEditor_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.FancyZonesEditor.resources.dll" /> </Component> <Component Id="ImageResizer_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)02"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ImageResizer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ImageResizer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ImageResizer.resources.dll" /> </Component> <Component Id="ColorPicker_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)03"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="ColorPicker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="ColorPicker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.ColorPickerUI.resources.dll" /> </Component> <Component Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)04"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MarkdownPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MarkdownPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)$(var.Language)\PowerToys.MarkdownPreviewHandler.resources.dll" /> </Component> <Component Id="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)05"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="SVGPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="SVGPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.SvgPreviewHandler.resources.dll" /> </Component> <Component Id="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)06"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="PDFPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="PDFPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.PdfPreviewHandler.resources.dll" /> </Component> <Component Id="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)07"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="GcodePreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="GcodePreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.GcodePreviewHandler.resources.dll" /> </Component> <!-- PowerToys Run aka Launcher plugin resources --> <Component Id="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" Guid="$(var.CompGUIDPrefix)08"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Calculator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Calculator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Calculator\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Calculator.resources.dll" /> </Component> <Component Id="Launcher_Folder_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" Guid="$(var.CompGUIDPrefix)09"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Folder_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Folder_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Folder\$(var.Language)\Microsoft.Plugin.Folder.resources.dll" /> </Component> <Component Id="Launcher_Program_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0A" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Program_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Program_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Program\$(var.Language)\Microsoft.Plugin.Program.resources.dll" /> </Component> <Component Id="Launcher_Shell_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0B" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Shell_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Shell_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Shell\$(var.Language)\Microsoft.Plugin.Shell.resources.dll" /> </Component> <Component Id="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0C" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Indexer_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Indexer_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Indexer\$(var.Language)\Microsoft.Plugin.Indexer.resources.dll" /> </Component> <Component Id="Launcher_Uri_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0D" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Uri_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Uri_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Uri\$(var.Language)\Microsoft.Plugin.Uri.resources.dll" /> </Component> <Component Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0E" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_VSCodeWorkspaces_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\VSCodeWorkspaces\$(var.Language)\Community.PowerToys.Run.Plugin.VSCodeWorkspaces.resources.dll" /> </Component> <Component Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)0F" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowWalker_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowWalker_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowWalker\$(var.Language)\Microsoft.Plugin.WindowWalker.resources.dll" /> </Component> <Component Id="Launcher_Registry_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)10" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Registry_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Registry_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Registry\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Registry.resources.dll" /> </Component> <Component Id="Launcher_Service_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)11" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_Service_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_Service_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\Service\$(var.Language)\Microsoft.PowerToys.Run.Plugin.Service.resources.dll" /> </Component> <Component Id="Launcher_System_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)12" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_System_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_System_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\System\$(var.Language)\Microsoft.PowerToys.Run.Plugin.System.resources.dll" /> </Component> <Component Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)13" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsSettings_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsSettings_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsSettings\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsSettings.resources.dll" /> </Component> <Component Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)15" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WindowsTerminal_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WindowsTerminal\$(var.Language)\Microsoft.PowerToys.Run.Plugin.WindowsTerminal.resources.dll" /> </Component> <Component Id="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)16" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_WebSearch_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_WebSearch_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\WebSearch\$(var.Language)\Community.PowerToys.Run.Plugin.WebSearch.resources.dll" /> </Component> <Component Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)17" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_UnitConverter_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_UnitConverter_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\UnitConverter\$(var.Language)\Community.PowerToys.Run.Plugin.UnitConverter.resources.dll" /> </Component> <Component Id="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)18" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_TimeDate_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_TimeDate_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\TimeDate\$(var.Language)\Microsoft.PowerToys.Run.Plugin.TimeDate.resources.dll" /> </Component> <Component Id="Launcher_OneNote_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)19" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Resource$(var.IdSafeLanguage)OneNotePluginFolder" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_OneNote_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\OneNote\$(var.Language)\Microsoft.PowerToys.Run.Plugin.OneNote.resources.dll" /> </Component> <Component Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)1A"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="MonacoPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="MonacoPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.MonacoPreviewHandler.resources.dll" /> </Component> <Component Id="Launcher_History_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" Guid="$(var.CompGUIDPrefix)1B"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_History_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_History_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\History\$(var.Language)\Microsoft.PowerToys.Run.Plugin.History.resources.dll" /> </Component> <Component Id="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" Guid="$(var.CompGUIDPrefix)1C"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_PowerToys_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_PowerToys_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\PowerToys\$(var.Language)\Microsoft.PowerToys.Run.Plugin.PowerToys.resources.dll" /> </Component> <Component Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Guid="$(var.CompGUIDPrefix)1D" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="Launcher_ValueGenerator_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="Launcher_ValueGenerator_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)RunPlugins\ValueGenerator\$(var.Language)\Community.PowerToys.Run.Plugin.ValueGenerator.resources.dll" /> </Component> <Component Id="QoiPreviewHandler_$(var.IdSafeLanguage)_Component" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" Guid="$(var.CompGUIDPrefix)1E"> <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="QoiPreviewHandler_$(var.IdSafeLanguage)_Component" Value="" KeyPath="yes"/> </RegistryKey> <File Id="QoiPreviewHandler_$(var.IdSafeLanguage)_File" Source="$(var.BinDir)\$(var.Language)\PowerToys.QoiPreviewHandler.resources.dll" /> </Component> <?undef IdSafeLanguage?> <?undef CompGUIDPrefix?> <?endforeach?> <?endif?> <?ifdef env.IsPipeline?> <Component Id="RemoveResourcesFolder" Guid="9BC0A5A1-CBC5-47C8-8544-3F8A8C0D45F5" Directory="INSTALLFOLDER" > <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> <RegistryValue Type="string" Name="RemoveResourcesFolder" Value="" KeyPath="yes"/> </RegistryKey> <?foreach Language in $(var.LocLanguageList)?> <!--NB: Ids can't contain hyphens--> <?if $(var.Language) = cs-CZ?> <?define IdSafeLanguage = cs_CZ?> <?elseif $(var.Language) = de-DE?> <?define IdSafeLanguage = de_DE?> <?elseif $(var.Language) = es-ES?> <?define IdSafeLanguage = es_ES?> <?elseif $(var.Language) = fr-FR?> <?define IdSafeLanguage = fr_FR?> <?elseif $(var.Language) = hu-HU?> <?define IdSafeLanguage = hu_HU?> <?elseif $(var.Language) = it-IT?> <?define IdSafeLanguage = it_IT?> <?elseif $(var.Language) = ja-JP?> <?define IdSafeLanguage = ja_JP?> <?elseif $(var.Language) = ko-KR?> <?define IdSafeLanguage = ko_KR?> <?elseif $(var.Language) = nl-NL?> <?define IdSafeLanguage = nl_NL?> <?elseif $(var.Language) = pl-PL?> <?define IdSafeLanguage = pl_PL?> <?elseif $(var.Language) = pt-BR?> <?define IdSafeLanguage = pt_BR?> <?elseif $(var.Language) = pt-PT?> <?define IdSafeLanguage = pt_PT?> <!-- <?elseif $(var.Language) = qps-ploc?> <?define IdSafeLanguage = qps_ploc?> <?elseif $(var.Language) = qps-ploca?> <?define IdSafeLanguage = qps_ploca?> <?elseif $(var.Language) = qps-plocm?> <?define IdSafeLanguage = qps_plocm?> --> <?elseif $(var.Language) = ru-RU?> <?define IdSafeLanguage = ru_RU?> <?elseif $(var.Language) = sv-SE?> <?define IdSafeLanguage = sv_SE?> <?elseif $(var.Language) = tr-TR?> <?define IdSafeLanguage = tr_TR?> <?elseif $(var.Language) = zh-CN?> <?define IdSafeLanguage = zh_CN?> <?elseif $(var.Language) = zh-TW?> <?define IdSafeLanguage = zh_TW?> <?else?> <?define IdSafeLanguage = $(var.Language)?> <?endif?> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)INSTALLFOLDER" Directory="Resource$(var.IdSafeLanguage)INSTALLFOLDER" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)CalculatorPluginFolder" Directory="Resource$(var.IdSafeLanguage)CalculatorPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)FolderPluginFolder" Directory="Resource$(var.IdSafeLanguage)FolderPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ProgramPluginFolder" Directory="Resource$(var.IdSafeLanguage)ProgramPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ShellPluginFolder" Directory="Resource$(var.IdSafeLanguage)ShellPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)IndexerPluginFolder" Directory="Resource$(var.IdSafeLanguage)IndexerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UriPluginFolder" Directory="Resource$(var.IdSafeLanguage)UriPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" Directory="Resource$(var.IdSafeLanguage)VSCodeWorkspacesPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowWalkerPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowWalkerPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)RegistryPluginFolder" Directory="Resource$(var.IdSafeLanguage)RegistryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ServicePluginFolder" Directory="Resource$(var.IdSafeLanguage)ServicePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)SystemPluginFolder" Directory="Resource$(var.IdSafeLanguage)SystemPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsSettingsPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" Directory="Resource$(var.IdSafeLanguage)WindowsTerminalPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)WebSearchPluginFolder" Directory="Resource$(var.IdSafeLanguage)WebSearchPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)UnitConverterPluginFolder" Directory="Resource$(var.IdSafeLanguage)UnitConverterPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)TimeDatePluginFolder" Directory="Resource$(var.IdSafeLanguage)TimeDatePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)OneNotePluginFolder" Directory="Resource$(var.IdSafeLanguage)OneNotePluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)HistoryPluginFolder" Directory="Resource$(var.IdSafeLanguage)HistoryPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)PowerToysPluginFolder" Directory="Resource$(var.IdSafeLanguage)PowerToysPluginFolder" On="uninstall"/> <RemoveFolder Id="RemoveFolderResourcesResource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" Directory="Resource$(var.IdSafeLanguage)ValueGeneratorPluginFolder" On="uninstall"/> <?undef IdSafeLanguage?> <?endforeach?> </Component> <?endif?> </ComponentGroup> </Fragment> </Wix>
pedrolamas
9d2f9bcff27e71e7c16ee243961e949f821aab2e
0990724e445fae8319aeec5a1eb92f238c088f37
Done!
pedrolamas
232
microsoft/PowerToys
29,735
Adds QoiThumbnailProvider and QoiPreviewHandler
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds a new thumbnail provider and preview handler for qoi files (Quite Ok Images). ### Thumbnails ![image](https://github.com/microsoft/PowerToys/assets/85504/6fa0eed2-1359-4c37-bdb5-80e798cc3aae) ### Preview ![image](https://github.com/microsoft/PowerToys/assets/85504/0771e87e-c7a1-4c45-bab7-98295717241f) ### Settings ![image](https://github.com/microsoft/PowerToys/assets/85504/17e0f037-7448-4104-baa9-6b83208fdfc5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #29742 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [X] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [X] **New binaries:** Added on the required places - [X] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [X] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [x] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Local install and manual validation
null
2023-11-07 19:33:33+00:00
2023-11-14 15:41:10+00:00
src/common/utils/gpo.h
#pragma once #include <Windows.h> #include <optional> namespace powertoys_gpo { enum gpo_rule_configured_t { gpo_rule_configured_wrong_value = -3, // The policy is set to an unrecognized value gpo_rule_configured_unavailable = -2, // Couldn't access registry gpo_rule_configured_not_configured = -1, // Policy is not configured gpo_rule_configured_disabled = 0, // Policy is disabled gpo_rule_configured_enabled = 1, // Policy is enabled }; // Registry path where gpo policy values are stored. const std::wstring POLICIES_PATH = L"SOFTWARE\\Policies\\PowerToys"; const std::wstring POWER_LAUNCHER_INDIVIDUAL_PLUGIN_ENABLED_LIST_PATH = POLICIES_PATH + L"\\PowerLauncherIndividualPluginEnabledList"; // Registry scope where gpo policy values are stored. const HKEY POLICIES_SCOPE_MACHINE = HKEY_LOCAL_MACHINE; const HKEY POLICIES_SCOPE_USER = HKEY_CURRENT_USER; // The registry value names for PowerToys utilities enabled and disabled policies. const std::wstring POLICY_CONFIGURE_ENABLED_GLOBAL_ALL_UTILITIES = L"ConfigureGlobalUtilityEnabledState"; const std::wstring POLICY_CONFIGURE_ENABLED_ALWAYS_ON_TOP = L"ConfigureEnabledUtilityAlwaysOnTop"; const std::wstring POLICY_CONFIGURE_ENABLED_AWAKE = L"ConfigureEnabledUtilityAwake"; const std::wstring POLICY_CONFIGURE_ENABLED_COLOR_PICKER = L"ConfigureEnabledUtilityColorPicker"; const std::wstring POLICY_CONFIGURE_ENABLED_CROP_AND_LOCK = L"ConfigureEnabledUtilityCropAndLock"; const std::wstring POLICY_CONFIGURE_ENABLED_FANCYZONES = L"ConfigureEnabledUtilityFancyZones"; const std::wstring POLICY_CONFIGURE_ENABLED_FILE_LOCKSMITH = L"ConfigureEnabledUtilityFileLocksmith"; const std::wstring POLICY_CONFIGURE_ENABLED_SVG_PREVIEW = L"ConfigureEnabledUtilityFileExplorerSVGPreview"; const std::wstring POLICY_CONFIGURE_ENABLED_MARKDOWN_PREVIEW = L"ConfigureEnabledUtilityFileExplorerMarkdownPreview"; const std::wstring POLICY_CONFIGURE_ENABLED_MONACO_PREVIEW = L"ConfigureEnabledUtilityFileExplorerMonacoPreview"; const std::wstring POLICY_CONFIGURE_ENABLED_PDF_PREVIEW = L"ConfigureEnabledUtilityFileExplorerPDFPreview"; const std::wstring POLICY_CONFIGURE_ENABLED_GCODE_PREVIEW = L"ConfigureEnabledUtilityFileExplorerGcodePreview"; const std::wstring POLICY_CONFIGURE_ENABLED_SVG_THUMBNAILS = L"ConfigureEnabledUtilityFileExplorerSVGThumbnails"; const std::wstring POLICY_CONFIGURE_ENABLED_PDF_THUMBNAILS = L"ConfigureEnabledUtilityFileExplorerPDFThumbnails"; const std::wstring POLICY_CONFIGURE_ENABLED_GCODE_THUMBNAILS = L"ConfigureEnabledUtilityFileExplorerGcodeThumbnails"; const std::wstring POLICY_CONFIGURE_ENABLED_STL_THUMBNAILS = L"ConfigureEnabledUtilityFileExplorerSTLThumbnails"; const std::wstring POLICY_CONFIGURE_ENABLED_HOSTS_FILE_EDITOR = L"ConfigureEnabledUtilityHostsFileEditor"; const std::wstring POLICY_CONFIGURE_ENABLED_IMAGE_RESIZER = L"ConfigureEnabledUtilityImageResizer"; const std::wstring POLICY_CONFIGURE_ENABLED_KEYBOARD_MANAGER = L"ConfigureEnabledUtilityKeyboardManager"; const std::wstring POLICY_CONFIGURE_ENABLED_FIND_MY_MOUSE = L"ConfigureEnabledUtilityFindMyMouse"; const std::wstring POLICY_CONFIGURE_ENABLED_MOUSE_HIGHLIGHTER = L"ConfigureEnabledUtilityMouseHighlighter"; const std::wstring POLICY_CONFIGURE_ENABLED_MOUSE_JUMP = L"ConfigureEnabledUtilityMouseJump"; const std::wstring POLICY_CONFIGURE_ENABLED_MOUSE_POINTER_CROSSHAIRS = L"ConfigureEnabledUtilityMousePointerCrosshairs"; const std::wstring POLICY_CONFIGURE_ENABLED_POWER_RENAME = L"ConfigureEnabledUtilityPowerRename"; const std::wstring POLICY_CONFIGURE_ENABLED_POWER_LAUNCHER = L"ConfigureEnabledUtilityPowerLauncher"; const std::wstring POLICY_CONFIGURE_ENABLED_QUICK_ACCENT = L"ConfigureEnabledUtilityQuickAccent"; const std::wstring POLICY_CONFIGURE_ENABLED_SCREEN_RULER = L"ConfigureEnabledUtilityScreenRuler"; const std::wstring POLICY_CONFIGURE_ENABLED_SHORTCUT_GUIDE = L"ConfigureEnabledUtilityShortcutGuide"; const std::wstring POLICY_CONFIGURE_ENABLED_TEXT_EXTRACTOR = L"ConfigureEnabledUtilityTextExtractor"; const std::wstring POLICY_CONFIGURE_ENABLED_PASTE_PLAIN = L"ConfigureEnabledUtilityPastePlain"; const std::wstring POLICY_CONFIGURE_ENABLED_VIDEO_CONFERENCE_MUTE = L"ConfigureEnabledUtilityVideoConferenceMute"; const std::wstring POLICY_CONFIGURE_ENABLED_REGISTRY_PREVIEW = L"ConfigureEnabledUtilityRegistryPreview"; const std::wstring POLICY_CONFIGURE_ENABLED_MOUSE_WITHOUT_BORDERS = L"ConfigureEnabledUtilityMouseWithoutBorders"; const std::wstring POLICY_CONFIGURE_ENABLED_PEEK = L"ConfigureEnabledUtilityPeek"; const std::wstring POLICY_CONFIGURE_ENABLED_ENVIRONMENT_VARIABLES = L"ConfigureEnabledUtilityEnvironmentVariables"; // The registry value names for PowerToys installer and update policies. const std::wstring POLICY_DISABLE_PER_USER_INSTALLATION = L"PerUserInstallationDisabled"; const std::wstring POLICY_DISABLE_AUTOMATIC_UPDATE_DOWNLOAD = L"AutomaticUpdateDownloadDisabled"; const std::wstring POLICY_SUSPEND_NEW_UPDATE_TOAST = L"SuspendNewUpdateAvailableToast"; const std::wstring POLICY_DISABLE_PERIODIC_UPDATE_CHECK = L"PeriodicUpdateCheckDisabled"; // The registry value names for other PowerToys policies. const std::wstring POLICY_ALLOW_EXPERIMENTATION = L"AllowExperimentation"; const std::wstring POLICY_CONFIGURE_ENABLED_POWER_LAUNCHER_ALL_PLUGINS = L"PowerLauncherAllPluginsEnabledState"; inline std::optional<std::wstring> readRegistryStringValue(HKEY hRootKey, const std::wstring& subKey, const std::wstring& value_name) { DWORD reg_value_type = REG_SZ; DWORD reg_flags = RRF_RT_REG_SZ; DWORD string_buffer_capacity; // Request required buffer capacity / string length if (RegGetValueW(hRootKey, subKey.c_str(), value_name.c_str(), reg_flags, &reg_value_type, NULL, &string_buffer_capacity) != ERROR_SUCCESS) { return std::nullopt; } else if (string_buffer_capacity == 0) { return std::nullopt; } // RegGetValueW overshoots sometimes. Use a buffer first to not have characters past the string end. wchar_t* temp_buffer = new wchar_t[string_buffer_capacity / sizeof(wchar_t) + 1]; // Read string if (RegGetValueW(hRootKey, subKey.c_str(), value_name.c_str(), reg_flags, &reg_value_type, temp_buffer, &string_buffer_capacity) != ERROR_SUCCESS) { delete temp_buffer; return std::nullopt; } // Convert buffer to std::wstring, delete buffer and return REG_SZ value std::wstring string_value = temp_buffer; delete temp_buffer; return string_value; } inline gpo_rule_configured_t getConfiguredValue(const std::wstring& registry_value_name) { HKEY key{}; DWORD value = 0xFFFFFFFE; DWORD valueSize = sizeof(value); bool machine_key_found = true; if (auto res = RegOpenKeyExW(POLICIES_SCOPE_MACHINE, POLICIES_PATH.c_str(), 0, KEY_READ, &key); res != ERROR_SUCCESS) { machine_key_found = false; } if(machine_key_found) { // If the path was found in the machine, we need to check if the value for the policy exists. auto res = RegQueryValueExW(key, registry_value_name.c_str(), nullptr, nullptr, reinterpret_cast<LPBYTE>(&value), &valueSize); RegCloseKey(key); if (res != ERROR_SUCCESS) { // Value not found on the path. machine_key_found=false; } } if (!machine_key_found) { // If there's no value found on the machine scope, try to get it from the user scope. if (auto res = RegOpenKeyExW(POLICIES_SCOPE_USER, POLICIES_PATH.c_str(), 0, KEY_READ, &key); res != ERROR_SUCCESS) { if (res == ERROR_FILE_NOT_FOUND) { return gpo_rule_configured_not_configured; } return gpo_rule_configured_unavailable; } auto res = RegQueryValueExW(key, registry_value_name.c_str(), nullptr, nullptr, reinterpret_cast<LPBYTE>(&value), &valueSize); RegCloseKey(key); if (res != ERROR_SUCCESS) { return gpo_rule_configured_not_configured; } } switch (value) { case 0: return gpo_rule_configured_disabled; case 1: return gpo_rule_configured_enabled; default: return gpo_rule_configured_wrong_value; } } inline std::optional<std::wstring> getPolicyListValue(const std::wstring& registry_list_path, const std::wstring& registry_list_value_name) { // This function returns the value of an entry of an policy list. The user scope is only checked, if the list is not enabled for the machine to not mix the lists. HKEY key{}; // Try to read from the machine list. bool machine_list_found = false; if (RegOpenKeyExW(POLICIES_SCOPE_MACHINE, registry_list_path.c_str(), 0, KEY_READ, &key) == ERROR_SUCCESS) { machine_list_found = true; RegCloseKey(key); // If the path exists in the machine registry, we try to read the value. auto regValueData = readRegistryStringValue(POLICIES_SCOPE_MACHINE, registry_list_path, registry_list_value_name); if (regValueData.has_value()) { // Return the value from the machine list. return *regValueData; } } // If no list exists for machine, we try to read from the user list. if (!machine_list_found) { if (RegOpenKeyExW(POLICIES_SCOPE_USER, registry_list_path.c_str(), 0, KEY_READ, &key) == ERROR_SUCCESS) { RegCloseKey(key); // If the path exists in the user registry, we try to read the value. auto regValueData = readRegistryStringValue(POLICIES_SCOPE_USER, registry_list_path, registry_list_value_name); if (regValueData.has_value()) { // Return the value from the user list. return *regValueData; } } } // No list exists for machine and user, or no value was found in the list, or an error ocurred while reading the value. return std::nullopt; } inline gpo_rule_configured_t getUtilityEnabledValue(const std::wstring& utility_name) { auto individual_value = getConfiguredValue(utility_name); if (individual_value == gpo_rule_configured_disabled || individual_value == gpo_rule_configured_enabled) { return individual_value; } else { return getConfiguredValue(POLICY_CONFIGURE_ENABLED_GLOBAL_ALL_UTILITIES); } } inline gpo_rule_configured_t getConfiguredAlwaysOnTopEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_ALWAYS_ON_TOP); } inline gpo_rule_configured_t getConfiguredAwakeEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_AWAKE); } inline gpo_rule_configured_t getConfiguredColorPickerEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_COLOR_PICKER); } inline gpo_rule_configured_t getConfiguredCropAndLockEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_CROP_AND_LOCK); } inline gpo_rule_configured_t getConfiguredFancyZonesEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_FANCYZONES); } inline gpo_rule_configured_t getConfiguredFileLocksmithEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_FILE_LOCKSMITH); } inline gpo_rule_configured_t getConfiguredSvgPreviewEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_SVG_PREVIEW); } inline gpo_rule_configured_t getConfiguredMarkdownPreviewEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_MARKDOWN_PREVIEW); } inline gpo_rule_configured_t getConfiguredMonacoPreviewEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_MONACO_PREVIEW); } inline gpo_rule_configured_t getConfiguredPdfPreviewEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_PDF_PREVIEW); } inline gpo_rule_configured_t getConfiguredGcodePreviewEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_GCODE_PREVIEW); } inline gpo_rule_configured_t getConfiguredSvgThumbnailsEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_SVG_THUMBNAILS); } inline gpo_rule_configured_t getConfiguredPdfThumbnailsEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_PDF_THUMBNAILS); } inline gpo_rule_configured_t getConfiguredGcodeThumbnailsEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_GCODE_THUMBNAILS); } inline gpo_rule_configured_t getConfiguredStlThumbnailsEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_STL_THUMBNAILS); } inline gpo_rule_configured_t getConfiguredHostsFileEditorEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_HOSTS_FILE_EDITOR); } inline gpo_rule_configured_t getConfiguredImageResizerEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_IMAGE_RESIZER); } inline gpo_rule_configured_t getConfiguredKeyboardManagerEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_KEYBOARD_MANAGER); } inline gpo_rule_configured_t getConfiguredFindMyMouseEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_FIND_MY_MOUSE); } inline gpo_rule_configured_t getConfiguredMouseHighlighterEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_MOUSE_HIGHLIGHTER); } inline gpo_rule_configured_t getConfiguredMouseJumpEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_MOUSE_JUMP); } inline gpo_rule_configured_t getConfiguredMousePointerCrosshairsEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_MOUSE_POINTER_CROSSHAIRS); } inline gpo_rule_configured_t getConfiguredPowerRenameEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_POWER_RENAME); } inline gpo_rule_configured_t getConfiguredPowerLauncherEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_POWER_LAUNCHER); } inline gpo_rule_configured_t getConfiguredQuickAccentEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_QUICK_ACCENT); } inline gpo_rule_configured_t getConfiguredScreenRulerEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_SCREEN_RULER); } inline gpo_rule_configured_t getConfiguredShortcutGuideEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_SHORTCUT_GUIDE); } inline gpo_rule_configured_t getConfiguredTextExtractorEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_TEXT_EXTRACTOR); } inline gpo_rule_configured_t getConfiguredPastePlainEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_PASTE_PLAIN); } inline gpo_rule_configured_t getConfiguredVideoConferenceMuteEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_VIDEO_CONFERENCE_MUTE); } inline gpo_rule_configured_t getConfiguredMouseWithoutBordersEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_MOUSE_WITHOUT_BORDERS); } inline gpo_rule_configured_t getConfiguredPeekEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_PEEK); } inline gpo_rule_configured_t getConfiguredRegistryPreviewEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_REGISTRY_PREVIEW); } inline gpo_rule_configured_t getConfiguredEnvironmentVariablesEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_ENVIRONMENT_VARIABLES); } inline gpo_rule_configured_t getDisablePerUserInstallationValue() { return getConfiguredValue(POLICY_DISABLE_PER_USER_INSTALLATION); } inline gpo_rule_configured_t getDisableAutomaticUpdateDownloadValue() { return getConfiguredValue(POLICY_DISABLE_AUTOMATIC_UPDATE_DOWNLOAD); } inline gpo_rule_configured_t getSuspendNewUpdateToastValue() { return getConfiguredValue(POLICY_SUSPEND_NEW_UPDATE_TOAST); } inline gpo_rule_configured_t getDisablePeriodicUpdateCheckValue() { return getConfiguredValue(POLICY_DISABLE_PERIODIC_UPDATE_CHECK); } inline gpo_rule_configured_t getAllowExperimentationValue() { return getConfiguredValue(POLICY_ALLOW_EXPERIMENTATION); } inline gpo_rule_configured_t getRunPluginEnabledValue(std::string pluginID) { if (pluginID == "" || pluginID == " ") { // this plugin id can't exist in the registry return gpo_rule_configured_not_configured; } std::wstring plugin_id(pluginID.begin(), pluginID.end()); auto individual_plugin_setting = getPolicyListValue(POWER_LAUNCHER_INDIVIDUAL_PLUGIN_ENABLED_LIST_PATH, plugin_id); if (individual_plugin_setting.has_value()) { if (*individual_plugin_setting == L"0") { // force disabled return gpo_rule_configured_disabled; } else if (*individual_plugin_setting == L"1") { // force enabled return gpo_rule_configured_enabled; } else if (*individual_plugin_setting == L"2") { // user takes control return gpo_rule_configured_not_configured; } else { return gpo_rule_configured_wrong_value; } } else { // If no individual plugin policy exists, we check the policy with the setting for all plugins. return getConfiguredValue(POLICY_CONFIGURE_ENABLED_POWER_LAUNCHER_ALL_PLUGINS); } } }
#pragma once #include <Windows.h> #include <optional> namespace powertoys_gpo { enum gpo_rule_configured_t { gpo_rule_configured_wrong_value = -3, // The policy is set to an unrecognized value gpo_rule_configured_unavailable = -2, // Couldn't access registry gpo_rule_configured_not_configured = -1, // Policy is not configured gpo_rule_configured_disabled = 0, // Policy is disabled gpo_rule_configured_enabled = 1, // Policy is enabled }; // Registry path where gpo policy values are stored. const std::wstring POLICIES_PATH = L"SOFTWARE\\Policies\\PowerToys"; const std::wstring POWER_LAUNCHER_INDIVIDUAL_PLUGIN_ENABLED_LIST_PATH = POLICIES_PATH + L"\\PowerLauncherIndividualPluginEnabledList"; // Registry scope where gpo policy values are stored. const HKEY POLICIES_SCOPE_MACHINE = HKEY_LOCAL_MACHINE; const HKEY POLICIES_SCOPE_USER = HKEY_CURRENT_USER; // The registry value names for PowerToys utilities enabled and disabled policies. const std::wstring POLICY_CONFIGURE_ENABLED_GLOBAL_ALL_UTILITIES = L"ConfigureGlobalUtilityEnabledState"; const std::wstring POLICY_CONFIGURE_ENABLED_ALWAYS_ON_TOP = L"ConfigureEnabledUtilityAlwaysOnTop"; const std::wstring POLICY_CONFIGURE_ENABLED_AWAKE = L"ConfigureEnabledUtilityAwake"; const std::wstring POLICY_CONFIGURE_ENABLED_COLOR_PICKER = L"ConfigureEnabledUtilityColorPicker"; const std::wstring POLICY_CONFIGURE_ENABLED_CROP_AND_LOCK = L"ConfigureEnabledUtilityCropAndLock"; const std::wstring POLICY_CONFIGURE_ENABLED_FANCYZONES = L"ConfigureEnabledUtilityFancyZones"; const std::wstring POLICY_CONFIGURE_ENABLED_FILE_LOCKSMITH = L"ConfigureEnabledUtilityFileLocksmith"; const std::wstring POLICY_CONFIGURE_ENABLED_SVG_PREVIEW = L"ConfigureEnabledUtilityFileExplorerSVGPreview"; const std::wstring POLICY_CONFIGURE_ENABLED_MARKDOWN_PREVIEW = L"ConfigureEnabledUtilityFileExplorerMarkdownPreview"; const std::wstring POLICY_CONFIGURE_ENABLED_MONACO_PREVIEW = L"ConfigureEnabledUtilityFileExplorerMonacoPreview"; const std::wstring POLICY_CONFIGURE_ENABLED_PDF_PREVIEW = L"ConfigureEnabledUtilityFileExplorerPDFPreview"; const std::wstring POLICY_CONFIGURE_ENABLED_GCODE_PREVIEW = L"ConfigureEnabledUtilityFileExplorerGcodePreview"; const std::wstring POLICY_CONFIGURE_ENABLED_SVG_THUMBNAILS = L"ConfigureEnabledUtilityFileExplorerSVGThumbnails"; const std::wstring POLICY_CONFIGURE_ENABLED_PDF_THUMBNAILS = L"ConfigureEnabledUtilityFileExplorerPDFThumbnails"; const std::wstring POLICY_CONFIGURE_ENABLED_GCODE_THUMBNAILS = L"ConfigureEnabledUtilityFileExplorerGcodeThumbnails"; const std::wstring POLICY_CONFIGURE_ENABLED_STL_THUMBNAILS = L"ConfigureEnabledUtilityFileExplorerSTLThumbnails"; const std::wstring POLICY_CONFIGURE_ENABLED_HOSTS_FILE_EDITOR = L"ConfigureEnabledUtilityHostsFileEditor"; const std::wstring POLICY_CONFIGURE_ENABLED_IMAGE_RESIZER = L"ConfigureEnabledUtilityImageResizer"; const std::wstring POLICY_CONFIGURE_ENABLED_KEYBOARD_MANAGER = L"ConfigureEnabledUtilityKeyboardManager"; const std::wstring POLICY_CONFIGURE_ENABLED_FIND_MY_MOUSE = L"ConfigureEnabledUtilityFindMyMouse"; const std::wstring POLICY_CONFIGURE_ENABLED_MOUSE_HIGHLIGHTER = L"ConfigureEnabledUtilityMouseHighlighter"; const std::wstring POLICY_CONFIGURE_ENABLED_MOUSE_JUMP = L"ConfigureEnabledUtilityMouseJump"; const std::wstring POLICY_CONFIGURE_ENABLED_MOUSE_POINTER_CROSSHAIRS = L"ConfigureEnabledUtilityMousePointerCrosshairs"; const std::wstring POLICY_CONFIGURE_ENABLED_POWER_RENAME = L"ConfigureEnabledUtilityPowerRename"; const std::wstring POLICY_CONFIGURE_ENABLED_POWER_LAUNCHER = L"ConfigureEnabledUtilityPowerLauncher"; const std::wstring POLICY_CONFIGURE_ENABLED_QUICK_ACCENT = L"ConfigureEnabledUtilityQuickAccent"; const std::wstring POLICY_CONFIGURE_ENABLED_SCREEN_RULER = L"ConfigureEnabledUtilityScreenRuler"; const std::wstring POLICY_CONFIGURE_ENABLED_SHORTCUT_GUIDE = L"ConfigureEnabledUtilityShortcutGuide"; const std::wstring POLICY_CONFIGURE_ENABLED_TEXT_EXTRACTOR = L"ConfigureEnabledUtilityTextExtractor"; const std::wstring POLICY_CONFIGURE_ENABLED_PASTE_PLAIN = L"ConfigureEnabledUtilityPastePlain"; const std::wstring POLICY_CONFIGURE_ENABLED_VIDEO_CONFERENCE_MUTE = L"ConfigureEnabledUtilityVideoConferenceMute"; const std::wstring POLICY_CONFIGURE_ENABLED_REGISTRY_PREVIEW = L"ConfigureEnabledUtilityRegistryPreview"; const std::wstring POLICY_CONFIGURE_ENABLED_MOUSE_WITHOUT_BORDERS = L"ConfigureEnabledUtilityMouseWithoutBorders"; const std::wstring POLICY_CONFIGURE_ENABLED_PEEK = L"ConfigureEnabledUtilityPeek"; const std::wstring POLICY_CONFIGURE_ENABLED_ENVIRONMENT_VARIABLES = L"ConfigureEnabledUtilityEnvironmentVariables"; const std::wstring POLICY_CONFIGURE_ENABLED_QOI_PREVIEW = L"ConfigureEnabledUtilityFileExplorerQOIPreview"; const std::wstring POLICY_CONFIGURE_ENABLED_QOI_THUMBNAILS = L"ConfigureEnabledUtilityFileExplorerQOIThumbnails"; // The registry value names for PowerToys installer and update policies. const std::wstring POLICY_DISABLE_PER_USER_INSTALLATION = L"PerUserInstallationDisabled"; const std::wstring POLICY_DISABLE_AUTOMATIC_UPDATE_DOWNLOAD = L"AutomaticUpdateDownloadDisabled"; const std::wstring POLICY_SUSPEND_NEW_UPDATE_TOAST = L"SuspendNewUpdateAvailableToast"; const std::wstring POLICY_DISABLE_PERIODIC_UPDATE_CHECK = L"PeriodicUpdateCheckDisabled"; // The registry value names for other PowerToys policies. const std::wstring POLICY_ALLOW_EXPERIMENTATION = L"AllowExperimentation"; const std::wstring POLICY_CONFIGURE_ENABLED_POWER_LAUNCHER_ALL_PLUGINS = L"PowerLauncherAllPluginsEnabledState"; inline std::optional<std::wstring> readRegistryStringValue(HKEY hRootKey, const std::wstring& subKey, const std::wstring& value_name) { DWORD reg_value_type = REG_SZ; DWORD reg_flags = RRF_RT_REG_SZ; DWORD string_buffer_capacity; // Request required buffer capacity / string length if (RegGetValueW(hRootKey, subKey.c_str(), value_name.c_str(), reg_flags, &reg_value_type, NULL, &string_buffer_capacity) != ERROR_SUCCESS) { return std::nullopt; } else if (string_buffer_capacity == 0) { return std::nullopt; } // RegGetValueW overshoots sometimes. Use a buffer first to not have characters past the string end. wchar_t* temp_buffer = new wchar_t[string_buffer_capacity / sizeof(wchar_t) + 1]; // Read string if (RegGetValueW(hRootKey, subKey.c_str(), value_name.c_str(), reg_flags, &reg_value_type, temp_buffer, &string_buffer_capacity) != ERROR_SUCCESS) { delete temp_buffer; return std::nullopt; } // Convert buffer to std::wstring, delete buffer and return REG_SZ value std::wstring string_value = temp_buffer; delete temp_buffer; return string_value; } inline gpo_rule_configured_t getConfiguredValue(const std::wstring& registry_value_name) { HKEY key{}; DWORD value = 0xFFFFFFFE; DWORD valueSize = sizeof(value); bool machine_key_found = true; if (auto res = RegOpenKeyExW(POLICIES_SCOPE_MACHINE, POLICIES_PATH.c_str(), 0, KEY_READ, &key); res != ERROR_SUCCESS) { machine_key_found = false; } if(machine_key_found) { // If the path was found in the machine, we need to check if the value for the policy exists. auto res = RegQueryValueExW(key, registry_value_name.c_str(), nullptr, nullptr, reinterpret_cast<LPBYTE>(&value), &valueSize); RegCloseKey(key); if (res != ERROR_SUCCESS) { // Value not found on the path. machine_key_found=false; } } if (!machine_key_found) { // If there's no value found on the machine scope, try to get it from the user scope. if (auto res = RegOpenKeyExW(POLICIES_SCOPE_USER, POLICIES_PATH.c_str(), 0, KEY_READ, &key); res != ERROR_SUCCESS) { if (res == ERROR_FILE_NOT_FOUND) { return gpo_rule_configured_not_configured; } return gpo_rule_configured_unavailable; } auto res = RegQueryValueExW(key, registry_value_name.c_str(), nullptr, nullptr, reinterpret_cast<LPBYTE>(&value), &valueSize); RegCloseKey(key); if (res != ERROR_SUCCESS) { return gpo_rule_configured_not_configured; } } switch (value) { case 0: return gpo_rule_configured_disabled; case 1: return gpo_rule_configured_enabled; default: return gpo_rule_configured_wrong_value; } } inline std::optional<std::wstring> getPolicyListValue(const std::wstring& registry_list_path, const std::wstring& registry_list_value_name) { // This function returns the value of an entry of an policy list. The user scope is only checked, if the list is not enabled for the machine to not mix the lists. HKEY key{}; // Try to read from the machine list. bool machine_list_found = false; if (RegOpenKeyExW(POLICIES_SCOPE_MACHINE, registry_list_path.c_str(), 0, KEY_READ, &key) == ERROR_SUCCESS) { machine_list_found = true; RegCloseKey(key); // If the path exists in the machine registry, we try to read the value. auto regValueData = readRegistryStringValue(POLICIES_SCOPE_MACHINE, registry_list_path, registry_list_value_name); if (regValueData.has_value()) { // Return the value from the machine list. return *regValueData; } } // If no list exists for machine, we try to read from the user list. if (!machine_list_found) { if (RegOpenKeyExW(POLICIES_SCOPE_USER, registry_list_path.c_str(), 0, KEY_READ, &key) == ERROR_SUCCESS) { RegCloseKey(key); // If the path exists in the user registry, we try to read the value. auto regValueData = readRegistryStringValue(POLICIES_SCOPE_USER, registry_list_path, registry_list_value_name); if (regValueData.has_value()) { // Return the value from the user list. return *regValueData; } } } // No list exists for machine and user, or no value was found in the list, or an error ocurred while reading the value. return std::nullopt; } inline gpo_rule_configured_t getUtilityEnabledValue(const std::wstring& utility_name) { auto individual_value = getConfiguredValue(utility_name); if (individual_value == gpo_rule_configured_disabled || individual_value == gpo_rule_configured_enabled) { return individual_value; } else { return getConfiguredValue(POLICY_CONFIGURE_ENABLED_GLOBAL_ALL_UTILITIES); } } inline gpo_rule_configured_t getConfiguredAlwaysOnTopEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_ALWAYS_ON_TOP); } inline gpo_rule_configured_t getConfiguredAwakeEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_AWAKE); } inline gpo_rule_configured_t getConfiguredColorPickerEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_COLOR_PICKER); } inline gpo_rule_configured_t getConfiguredCropAndLockEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_CROP_AND_LOCK); } inline gpo_rule_configured_t getConfiguredFancyZonesEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_FANCYZONES); } inline gpo_rule_configured_t getConfiguredFileLocksmithEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_FILE_LOCKSMITH); } inline gpo_rule_configured_t getConfiguredSvgPreviewEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_SVG_PREVIEW); } inline gpo_rule_configured_t getConfiguredMarkdownPreviewEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_MARKDOWN_PREVIEW); } inline gpo_rule_configured_t getConfiguredMonacoPreviewEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_MONACO_PREVIEW); } inline gpo_rule_configured_t getConfiguredPdfPreviewEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_PDF_PREVIEW); } inline gpo_rule_configured_t getConfiguredGcodePreviewEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_GCODE_PREVIEW); } inline gpo_rule_configured_t getConfiguredSvgThumbnailsEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_SVG_THUMBNAILS); } inline gpo_rule_configured_t getConfiguredPdfThumbnailsEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_PDF_THUMBNAILS); } inline gpo_rule_configured_t getConfiguredGcodeThumbnailsEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_GCODE_THUMBNAILS); } inline gpo_rule_configured_t getConfiguredStlThumbnailsEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_STL_THUMBNAILS); } inline gpo_rule_configured_t getConfiguredHostsFileEditorEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_HOSTS_FILE_EDITOR); } inline gpo_rule_configured_t getConfiguredImageResizerEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_IMAGE_RESIZER); } inline gpo_rule_configured_t getConfiguredKeyboardManagerEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_KEYBOARD_MANAGER); } inline gpo_rule_configured_t getConfiguredFindMyMouseEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_FIND_MY_MOUSE); } inline gpo_rule_configured_t getConfiguredMouseHighlighterEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_MOUSE_HIGHLIGHTER); } inline gpo_rule_configured_t getConfiguredMouseJumpEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_MOUSE_JUMP); } inline gpo_rule_configured_t getConfiguredMousePointerCrosshairsEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_MOUSE_POINTER_CROSSHAIRS); } inline gpo_rule_configured_t getConfiguredPowerRenameEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_POWER_RENAME); } inline gpo_rule_configured_t getConfiguredPowerLauncherEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_POWER_LAUNCHER); } inline gpo_rule_configured_t getConfiguredQuickAccentEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_QUICK_ACCENT); } inline gpo_rule_configured_t getConfiguredScreenRulerEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_SCREEN_RULER); } inline gpo_rule_configured_t getConfiguredShortcutGuideEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_SHORTCUT_GUIDE); } inline gpo_rule_configured_t getConfiguredTextExtractorEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_TEXT_EXTRACTOR); } inline gpo_rule_configured_t getConfiguredPastePlainEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_PASTE_PLAIN); } inline gpo_rule_configured_t getConfiguredVideoConferenceMuteEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_VIDEO_CONFERENCE_MUTE); } inline gpo_rule_configured_t getConfiguredMouseWithoutBordersEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_MOUSE_WITHOUT_BORDERS); } inline gpo_rule_configured_t getConfiguredPeekEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_PEEK); } inline gpo_rule_configured_t getConfiguredRegistryPreviewEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_REGISTRY_PREVIEW); } inline gpo_rule_configured_t getConfiguredEnvironmentVariablesEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_ENVIRONMENT_VARIABLES); } inline gpo_rule_configured_t getDisablePerUserInstallationValue() { return getConfiguredValue(POLICY_DISABLE_PER_USER_INSTALLATION); } inline gpo_rule_configured_t getDisableAutomaticUpdateDownloadValue() { return getConfiguredValue(POLICY_DISABLE_AUTOMATIC_UPDATE_DOWNLOAD); } inline gpo_rule_configured_t getSuspendNewUpdateToastValue() { return getConfiguredValue(POLICY_SUSPEND_NEW_UPDATE_TOAST); } inline gpo_rule_configured_t getDisablePeriodicUpdateCheckValue() { return getConfiguredValue(POLICY_DISABLE_PERIODIC_UPDATE_CHECK); } inline gpo_rule_configured_t getAllowExperimentationValue() { return getConfiguredValue(POLICY_ALLOW_EXPERIMENTATION); } inline gpo_rule_configured_t getRunPluginEnabledValue(std::string pluginID) { if (pluginID == "" || pluginID == " ") { // this plugin id can't exist in the registry return gpo_rule_configured_not_configured; } std::wstring plugin_id(pluginID.begin(), pluginID.end()); auto individual_plugin_setting = getPolicyListValue(POWER_LAUNCHER_INDIVIDUAL_PLUGIN_ENABLED_LIST_PATH, plugin_id); if (individual_plugin_setting.has_value()) { if (*individual_plugin_setting == L"0") { // force disabled return gpo_rule_configured_disabled; } else if (*individual_plugin_setting == L"1") { // force enabled return gpo_rule_configured_enabled; } else if (*individual_plugin_setting == L"2") { // user takes control return gpo_rule_configured_not_configured; } else { return gpo_rule_configured_wrong_value; } } else { // If no individual plugin policy exists, we check the policy with the setting for all plugins. return getConfiguredValue(POLICY_CONFIGURE_ENABLED_POWER_LAUNCHER_ALL_PLUGINS); } } inline gpo_rule_configured_t getConfiguredQoiPreviewEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_QOI_PREVIEW); } inline gpo_rule_configured_t getConfiguredQoiThumbnailsEnabledValue() { return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_QOI_THUMBNAILS); } }
pedrolamas
9d2f9bcff27e71e7c16ee243961e949f821aab2e
0990724e445fae8319aeec5a1eb92f238c088f37
This is a utility policy. You need `getUtilityEnabledValue`. ```suggestion return getUtilityEnabledValue(POLICY_CONFIGURE_ENABLED_QOI_THUMBNAILS); ```
htcfreek
233
microsoft/PowerToys
29,735
Adds QoiThumbnailProvider and QoiPreviewHandler
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds a new thumbnail provider and preview handler for qoi files (Quite Ok Images). ### Thumbnails ![image](https://github.com/microsoft/PowerToys/assets/85504/6fa0eed2-1359-4c37-bdb5-80e798cc3aae) ### Preview ![image](https://github.com/microsoft/PowerToys/assets/85504/0771e87e-c7a1-4c45-bab7-98295717241f) ### Settings ![image](https://github.com/microsoft/PowerToys/assets/85504/17e0f037-7448-4104-baa9-6b83208fdfc5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #29742 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [X] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [X] **New binaries:** Added on the required places - [X] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [X] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [x] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Local install and manual validation
null
2023-11-07 19:33:33+00:00
2023-11-14 15:41:10+00:00
src/gpo/assets/PowerToys.admx
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) Microsoft Corporation. Licensed under the MIT License. --> <policyDefinitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" revision="1.5" schemaVersion="1.0" xmlns="http://schemas.microsoft.com/GroupPolicy/2006/07/PolicyDefinitions"> <policyNamespaces> <target prefix="powertoys" namespace="Microsoft.Policies.PowerToys" /> </policyNamespaces> <resources minRequiredRevision="1.5"/><!-- Last changed with PowerToys v0.75.1 --> <supportedOn> <definitions> <definition name="SUPPORTED_POWERTOYS_0_64_0" displayName="$(string.SUPPORTED_POWERTOYS_0_64_0)"/> <definition name="SUPPORTED_POWERTOYS_0_68_0" displayName="$(string.SUPPORTED_POWERTOYS_0_68_0)"/> <definition name="SUPPORTED_POWERTOYS_0_69_0" displayName="$(string.SUPPORTED_POWERTOYS_0_69_0)"/> <definition name="SUPPORTED_POWERTOYS_0_70_0" displayName="$(string.SUPPORTED_POWERTOYS_0_70_0)"/> <definition name="SUPPORTED_POWERTOYS_0_73_0" displayName="$(string.SUPPORTED_POWERTOYS_0_73_0)"/> <definition name="SUPPORTED_POWERTOYS_0_75_0" displayName="$(string.SUPPORTED_POWERTOYS_0_75_0)"/> </definitions> </supportedOn> <categories> <category name="PowerToys" displayName="$(string.PowerToys)" /> <category name="InstallerUpdates" displayName="$(string.InstallerUpdates)"> <parentCategory ref="PowerToys" /> </category> <category name="PowerToysRun" displayName="$(string.PowerToysRun)"> <parentCategory ref="PowerToys" /> </category> </categories> <policies> <policy name="ConfigureGlobalUtilityEnabledState" class="Both" displayName="$(string.ConfigureGlobalUtilityEnabledState)" explainText="$(string.ConfigureGlobalUtilityEnabledStateDescription)" key="Software\Policies\PowerToys" valueName="ConfigureGlobalUtilityEnabledState"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityAlwaysOnTop" class="Both" displayName="$(string.ConfigureEnabledUtilityAlwaysOnTop)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityAlwaysOnTop"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityAwake" class="Both" displayName="$(string.ConfigureEnabledUtilityAwake)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityAwake"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityColorPicker" class="Both" displayName="$(string.ConfigureEnabledUtilityColorPicker)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityColorPicker"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityCropAndLock" class="Both" displayName="$(string.ConfigureEnabledUtilityCropAndLock)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityCropAndLock"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_73_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityEnvironmentVariables" class="Both" displayName="$(string.ConfigureEnabledUtilityEnvironmentVariables)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityEnvironmentVariables"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFancyZones" class="Both" displayName="$(string.ConfigureEnabledUtilityFancyZones)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFancyZones"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileLocksmith" class="Both" displayName="$(string.ConfigureEnabledUtilityFileLocksmith)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileLocksmith"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerSVGPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerSVGPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerSVGPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerMarkdownPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerMarkdownPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerMarkdownPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerMonacoPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerMonacoPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerMonacoPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerPDFPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerPDFPreview)" explainText="$(string.ConfigureEnabledUtilityDescriptionPDFPreviewHandler)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerPDFPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerGcodePreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerGcodePreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerGcodePreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerSVGThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerSVGThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerSVGThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerPDFThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerPDFThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerPDFThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerGcodeThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerGcodeThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerGcodeThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerSTLThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerSTLThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerSTLThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityHostsFileEditor" class="Both" displayName="$(string.ConfigureEnabledUtilityHostsFileEditor)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityHostsFileEditor"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityImageResizer" class="Both" displayName="$(string.ConfigureEnabledUtilityImageResizer)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityImageResizer"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityKeyboardManager" class="Both" displayName="$(string.ConfigureEnabledUtilityKeyboardManager)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityKeyboardManager"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFindMyMouse" class="Both" displayName="$(string.ConfigureEnabledUtilityFindMyMouse)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFindMyMouse"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMouseHighlighter" class="Both" displayName="$(string.ConfigureEnabledUtilityMouseHighlighter)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMouseHighlighter"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMousePointerCrosshairs" class="Both" displayName="$(string.ConfigureEnabledUtilityMousePointerCrosshairs)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMousePointerCrosshairs"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMouseJump" class="Both" displayName="$(string.ConfigureEnabledUtilityMouseJump)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMouseJump"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMouseWithoutBorders" class="Both" displayName="$(string.ConfigureEnabledUtilityMouseWithoutBorders)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMouseWithoutBorders"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_70_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPastePlain" class="Both" displayName="$(string.ConfigureEnabledUtilityPastePlain)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPastePlain"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPeek" class="Both" displayName="$(string.ConfigureEnabledUtilityPeek)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPeek"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_70_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPowerRename" class="Both" displayName="$(string.ConfigureEnabledUtilityPowerRename)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPowerRename"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPowerLauncher" class="Both" displayName="$(string.ConfigureEnabledUtilityPowerLauncher)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPowerLauncher"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityQuickAccent" class="Both" displayName="$(string.ConfigureEnabledUtilityQuickAccent)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityQuickAccent"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityRegistryPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityRegistryPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityRegistryPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_69_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityScreenRuler" class="Both" displayName="$(string.ConfigureEnabledUtilityScreenRuler)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityScreenRuler"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityShortcutGuide" class="Both" displayName="$(string.ConfigureEnabledUtilityShortcutGuide)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityShortcutGuide"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityTextExtractor" class="Both" displayName="$(string.ConfigureEnabledUtilityTextExtractor)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityTextExtractor"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityVideoConferenceMute" class="Both" displayName="$(string.ConfigureEnabledUtilityVideoConferenceMute)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityVideoConferenceMute"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="DisablePerUserInstallation" class="Machine" displayName="$(string.DisablePerUserInstallation)" explainText="$(string.DisablePerUserInstallationDescription)" key="Software\Policies\PowerToys" valueName="PerUserInstallationDisabled"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_69_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="DisableAutomaticUpdateDownload" class="Both" displayName="$(string.DisableAutomaticUpdateDownload)" explainText="$(string.DisableAutomaticUpdateDownloadDescription)" key="Software\Policies\PowerToys" valueName="AutomaticUpdateDownloadDisabled"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="SuspendNewUpdateToast" class="Both" displayName="$(string.SuspendNewUpdateToast)" explainText="$(string.SuspendNewUpdateToastDescription)" key="Software\Policies\PowerToys" valueName="SuspendNewUpdateAvailableToast"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <!-- This policy is implemented for later usage (PT v1.0 and later) and therefore inactive. (To make it working please update `src/runner/UpdateUtils.cpp`) <policy name="DisablePeriodicUpdateCheck" class="Both" displayName="$(string.DisablePeriodicUpdateCheck)" explainText="$(string.DisablePeriodicUpdateCheckDescription)" key="Software\Policies\PowerToys" valueName="PeriodicUpdateCheckDisabled"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> --> <policy name="AllowExperimentation" class="Both" displayName="$(string.AllowExperimentation)" explainText="$(string.AllowExperimentationDescription)" key="Software\Policies\PowerToys" valueName="AllowExperimentation"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="PowerToysRunAllPluginsEnabledState" class="Both" displayName="$(string.PowerToysRunAllPluginsEnabledState)" explainText="$(string.PowerToysRunAllPluginsEnabledStateDescription)" key="Software\Policies\PowerToys" valueName="PowerLauncherAllPluginsEnabledState"> <parentCategory ref="PowerToysRun" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="PowerToysRunIndividualPluginEnabledState" class="Both" displayName="$(string.PowerToysRunIndividualPluginEnabledState)" explainText="$(string.PowerToysRunIndividualPluginEnabledStateDescription)" presentation="$(presentation.PowerToysRunIndividualPluginEnabledState)" key="Software\Policies\PowerToys\PowerLauncherIndividualPluginEnabledList"> <parentCategory ref="PowerToysRun" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0"/> <elements> <list id="PowerToysRunIndividualPluginEnabledList" explicitValue="true" /> </elements> </policy> </policies> </policyDefinitions>
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) Microsoft Corporation. Licensed under the MIT License. --> <policyDefinitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" revision="1.5" schemaVersion="1.0" xmlns="http://schemas.microsoft.com/GroupPolicy/2006/07/PolicyDefinitions"> <policyNamespaces> <target prefix="powertoys" namespace="Microsoft.Policies.PowerToys" /> </policyNamespaces> <resources minRequiredRevision="1.6"/><!-- Last changed with PowerToys v0.76.0 --> <supportedOn> <definitions> <definition name="SUPPORTED_POWERTOYS_0_64_0" displayName="$(string.SUPPORTED_POWERTOYS_0_64_0)"/> <definition name="SUPPORTED_POWERTOYS_0_68_0" displayName="$(string.SUPPORTED_POWERTOYS_0_68_0)"/> <definition name="SUPPORTED_POWERTOYS_0_69_0" displayName="$(string.SUPPORTED_POWERTOYS_0_69_0)"/> <definition name="SUPPORTED_POWERTOYS_0_70_0" displayName="$(string.SUPPORTED_POWERTOYS_0_70_0)"/> <definition name="SUPPORTED_POWERTOYS_0_73_0" displayName="$(string.SUPPORTED_POWERTOYS_0_73_0)"/> <definition name="SUPPORTED_POWERTOYS_0_75_0" displayName="$(string.SUPPORTED_POWERTOYS_0_75_0)"/> <definition name="SUPPORTED_POWERTOYS_0_76_0" displayName="$(string.SUPPORTED_POWERTOYS_0_76_0)"/> </definitions> </supportedOn> <categories> <category name="PowerToys" displayName="$(string.PowerToys)" /> <category name="InstallerUpdates" displayName="$(string.InstallerUpdates)"> <parentCategory ref="PowerToys" /> </category> <category name="PowerToysRun" displayName="$(string.PowerToysRun)"> <parentCategory ref="PowerToys" /> </category> </categories> <policies> <policy name="ConfigureGlobalUtilityEnabledState" class="Both" displayName="$(string.ConfigureGlobalUtilityEnabledState)" explainText="$(string.ConfigureGlobalUtilityEnabledStateDescription)" key="Software\Policies\PowerToys" valueName="ConfigureGlobalUtilityEnabledState"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityAlwaysOnTop" class="Both" displayName="$(string.ConfigureEnabledUtilityAlwaysOnTop)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityAlwaysOnTop"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityAwake" class="Both" displayName="$(string.ConfigureEnabledUtilityAwake)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityAwake"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityColorPicker" class="Both" displayName="$(string.ConfigureEnabledUtilityColorPicker)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityColorPicker"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityCropAndLock" class="Both" displayName="$(string.ConfigureEnabledUtilityCropAndLock)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityCropAndLock"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_73_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityEnvironmentVariables" class="Both" displayName="$(string.ConfigureEnabledUtilityEnvironmentVariables)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityEnvironmentVariables"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFancyZones" class="Both" displayName="$(string.ConfigureEnabledUtilityFancyZones)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFancyZones"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileLocksmith" class="Both" displayName="$(string.ConfigureEnabledUtilityFileLocksmith)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileLocksmith"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerSVGPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerSVGPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerSVGPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerMarkdownPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerMarkdownPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerMarkdownPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerMonacoPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerMonacoPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerMonacoPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerPDFPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerPDFPreview)" explainText="$(string.ConfigureEnabledUtilityDescriptionPDFPreviewHandler)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerPDFPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerGcodePreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerGcodePreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerGcodePreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerSVGThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerSVGThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerSVGThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerPDFThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerPDFThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerPDFThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerGcodeThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerGcodeThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerGcodeThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerQOIPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerQOIPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerQOIPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_76_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerQOIThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerQOIThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerQOIThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_76_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerSTLThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerSTLThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerSTLThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityHostsFileEditor" class="Both" displayName="$(string.ConfigureEnabledUtilityHostsFileEditor)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityHostsFileEditor"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityImageResizer" class="Both" displayName="$(string.ConfigureEnabledUtilityImageResizer)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityImageResizer"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityKeyboardManager" class="Both" displayName="$(string.ConfigureEnabledUtilityKeyboardManager)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityKeyboardManager"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFindMyMouse" class="Both" displayName="$(string.ConfigureEnabledUtilityFindMyMouse)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFindMyMouse"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMouseHighlighter" class="Both" displayName="$(string.ConfigureEnabledUtilityMouseHighlighter)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMouseHighlighter"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMousePointerCrosshairs" class="Both" displayName="$(string.ConfigureEnabledUtilityMousePointerCrosshairs)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMousePointerCrosshairs"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMouseJump" class="Both" displayName="$(string.ConfigureEnabledUtilityMouseJump)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMouseJump"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMouseWithoutBorders" class="Both" displayName="$(string.ConfigureEnabledUtilityMouseWithoutBorders)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMouseWithoutBorders"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_70_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPastePlain" class="Both" displayName="$(string.ConfigureEnabledUtilityPastePlain)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPastePlain"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPeek" class="Both" displayName="$(string.ConfigureEnabledUtilityPeek)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPeek"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_70_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPowerRename" class="Both" displayName="$(string.ConfigureEnabledUtilityPowerRename)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPowerRename"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPowerLauncher" class="Both" displayName="$(string.ConfigureEnabledUtilityPowerLauncher)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPowerLauncher"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityQuickAccent" class="Both" displayName="$(string.ConfigureEnabledUtilityQuickAccent)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityQuickAccent"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityRegistryPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityRegistryPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityRegistryPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_69_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityScreenRuler" class="Both" displayName="$(string.ConfigureEnabledUtilityScreenRuler)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityScreenRuler"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityShortcutGuide" class="Both" displayName="$(string.ConfigureEnabledUtilityShortcutGuide)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityShortcutGuide"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityTextExtractor" class="Both" displayName="$(string.ConfigureEnabledUtilityTextExtractor)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityTextExtractor"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityVideoConferenceMute" class="Both" displayName="$(string.ConfigureEnabledUtilityVideoConferenceMute)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityVideoConferenceMute"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="DisablePerUserInstallation" class="Machine" displayName="$(string.DisablePerUserInstallation)" explainText="$(string.DisablePerUserInstallationDescription)" key="Software\Policies\PowerToys" valueName="PerUserInstallationDisabled"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_69_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="DisableAutomaticUpdateDownload" class="Both" displayName="$(string.DisableAutomaticUpdateDownload)" explainText="$(string.DisableAutomaticUpdateDownloadDescription)" key="Software\Policies\PowerToys" valueName="AutomaticUpdateDownloadDisabled"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="SuspendNewUpdateToast" class="Both" displayName="$(string.SuspendNewUpdateToast)" explainText="$(string.SuspendNewUpdateToastDescription)" key="Software\Policies\PowerToys" valueName="SuspendNewUpdateAvailableToast"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <!-- This policy is implemented for later usage (PT v1.0 and later) and therefore inactive. (To make it working please update `src/runner/UpdateUtils.cpp`) <policy name="DisablePeriodicUpdateCheck" class="Both" displayName="$(string.DisablePeriodicUpdateCheck)" explainText="$(string.DisablePeriodicUpdateCheckDescription)" key="Software\Policies\PowerToys" valueName="PeriodicUpdateCheckDisabled"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> --> <policy name="AllowExperimentation" class="Both" displayName="$(string.AllowExperimentation)" explainText="$(string.AllowExperimentationDescription)" key="Software\Policies\PowerToys" valueName="AllowExperimentation"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="PowerToysRunAllPluginsEnabledState" class="Both" displayName="$(string.PowerToysRunAllPluginsEnabledState)" explainText="$(string.PowerToysRunAllPluginsEnabledStateDescription)" key="Software\Policies\PowerToys" valueName="PowerLauncherAllPluginsEnabledState"> <parentCategory ref="PowerToysRun" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="PowerToysRunIndividualPluginEnabledState" class="Both" displayName="$(string.PowerToysRunIndividualPluginEnabledState)" explainText="$(string.PowerToysRunIndividualPluginEnabledStateDescription)" presentation="$(presentation.PowerToysRunIndividualPluginEnabledState)" key="Software\Policies\PowerToys\PowerLauncherIndividualPluginEnabledList"> <parentCategory ref="PowerToysRun" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0"/> <elements> <list id="PowerToysRunIndividualPluginEnabledList" explicitValue="true" /> </elements> </policy> </policies> </policyDefinitions>
pedrolamas
9d2f9bcff27e71e7c16ee243961e949f821aab2e
0990724e445fae8319aeec5a1eb92f238c088f37
not correct. (probably) from PowerToys v0.76 Also, revision bump is needed. Line 8 of this file.
stefansjfw
234
microsoft/PowerToys
29,735
Adds QoiThumbnailProvider and QoiPreviewHandler
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds a new thumbnail provider and preview handler for qoi files (Quite Ok Images). ### Thumbnails ![image](https://github.com/microsoft/PowerToys/assets/85504/6fa0eed2-1359-4c37-bdb5-80e798cc3aae) ### Preview ![image](https://github.com/microsoft/PowerToys/assets/85504/0771e87e-c7a1-4c45-bab7-98295717241f) ### Settings ![image](https://github.com/microsoft/PowerToys/assets/85504/17e0f037-7448-4104-baa9-6b83208fdfc5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #29742 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [X] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [X] **New binaries:** Added on the required places - [X] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [X] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [x] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Local install and manual validation
null
2023-11-07 19:33:33+00:00
2023-11-14 15:41:10+00:00
src/gpo/assets/PowerToys.admx
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) Microsoft Corporation. Licensed under the MIT License. --> <policyDefinitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" revision="1.5" schemaVersion="1.0" xmlns="http://schemas.microsoft.com/GroupPolicy/2006/07/PolicyDefinitions"> <policyNamespaces> <target prefix="powertoys" namespace="Microsoft.Policies.PowerToys" /> </policyNamespaces> <resources minRequiredRevision="1.5"/><!-- Last changed with PowerToys v0.75.1 --> <supportedOn> <definitions> <definition name="SUPPORTED_POWERTOYS_0_64_0" displayName="$(string.SUPPORTED_POWERTOYS_0_64_0)"/> <definition name="SUPPORTED_POWERTOYS_0_68_0" displayName="$(string.SUPPORTED_POWERTOYS_0_68_0)"/> <definition name="SUPPORTED_POWERTOYS_0_69_0" displayName="$(string.SUPPORTED_POWERTOYS_0_69_0)"/> <definition name="SUPPORTED_POWERTOYS_0_70_0" displayName="$(string.SUPPORTED_POWERTOYS_0_70_0)"/> <definition name="SUPPORTED_POWERTOYS_0_73_0" displayName="$(string.SUPPORTED_POWERTOYS_0_73_0)"/> <definition name="SUPPORTED_POWERTOYS_0_75_0" displayName="$(string.SUPPORTED_POWERTOYS_0_75_0)"/> </definitions> </supportedOn> <categories> <category name="PowerToys" displayName="$(string.PowerToys)" /> <category name="InstallerUpdates" displayName="$(string.InstallerUpdates)"> <parentCategory ref="PowerToys" /> </category> <category name="PowerToysRun" displayName="$(string.PowerToysRun)"> <parentCategory ref="PowerToys" /> </category> </categories> <policies> <policy name="ConfigureGlobalUtilityEnabledState" class="Both" displayName="$(string.ConfigureGlobalUtilityEnabledState)" explainText="$(string.ConfigureGlobalUtilityEnabledStateDescription)" key="Software\Policies\PowerToys" valueName="ConfigureGlobalUtilityEnabledState"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityAlwaysOnTop" class="Both" displayName="$(string.ConfigureEnabledUtilityAlwaysOnTop)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityAlwaysOnTop"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityAwake" class="Both" displayName="$(string.ConfigureEnabledUtilityAwake)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityAwake"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityColorPicker" class="Both" displayName="$(string.ConfigureEnabledUtilityColorPicker)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityColorPicker"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityCropAndLock" class="Both" displayName="$(string.ConfigureEnabledUtilityCropAndLock)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityCropAndLock"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_73_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityEnvironmentVariables" class="Both" displayName="$(string.ConfigureEnabledUtilityEnvironmentVariables)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityEnvironmentVariables"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFancyZones" class="Both" displayName="$(string.ConfigureEnabledUtilityFancyZones)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFancyZones"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileLocksmith" class="Both" displayName="$(string.ConfigureEnabledUtilityFileLocksmith)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileLocksmith"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerSVGPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerSVGPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerSVGPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerMarkdownPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerMarkdownPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerMarkdownPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerMonacoPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerMonacoPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerMonacoPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerPDFPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerPDFPreview)" explainText="$(string.ConfigureEnabledUtilityDescriptionPDFPreviewHandler)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerPDFPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerGcodePreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerGcodePreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerGcodePreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerSVGThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerSVGThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerSVGThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerPDFThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerPDFThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerPDFThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerGcodeThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerGcodeThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerGcodeThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerSTLThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerSTLThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerSTLThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityHostsFileEditor" class="Both" displayName="$(string.ConfigureEnabledUtilityHostsFileEditor)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityHostsFileEditor"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityImageResizer" class="Both" displayName="$(string.ConfigureEnabledUtilityImageResizer)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityImageResizer"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityKeyboardManager" class="Both" displayName="$(string.ConfigureEnabledUtilityKeyboardManager)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityKeyboardManager"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFindMyMouse" class="Both" displayName="$(string.ConfigureEnabledUtilityFindMyMouse)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFindMyMouse"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMouseHighlighter" class="Both" displayName="$(string.ConfigureEnabledUtilityMouseHighlighter)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMouseHighlighter"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMousePointerCrosshairs" class="Both" displayName="$(string.ConfigureEnabledUtilityMousePointerCrosshairs)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMousePointerCrosshairs"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMouseJump" class="Both" displayName="$(string.ConfigureEnabledUtilityMouseJump)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMouseJump"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMouseWithoutBorders" class="Both" displayName="$(string.ConfigureEnabledUtilityMouseWithoutBorders)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMouseWithoutBorders"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_70_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPastePlain" class="Both" displayName="$(string.ConfigureEnabledUtilityPastePlain)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPastePlain"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPeek" class="Both" displayName="$(string.ConfigureEnabledUtilityPeek)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPeek"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_70_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPowerRename" class="Both" displayName="$(string.ConfigureEnabledUtilityPowerRename)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPowerRename"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPowerLauncher" class="Both" displayName="$(string.ConfigureEnabledUtilityPowerLauncher)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPowerLauncher"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityQuickAccent" class="Both" displayName="$(string.ConfigureEnabledUtilityQuickAccent)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityQuickAccent"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityRegistryPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityRegistryPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityRegistryPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_69_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityScreenRuler" class="Both" displayName="$(string.ConfigureEnabledUtilityScreenRuler)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityScreenRuler"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityShortcutGuide" class="Both" displayName="$(string.ConfigureEnabledUtilityShortcutGuide)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityShortcutGuide"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityTextExtractor" class="Both" displayName="$(string.ConfigureEnabledUtilityTextExtractor)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityTextExtractor"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityVideoConferenceMute" class="Both" displayName="$(string.ConfigureEnabledUtilityVideoConferenceMute)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityVideoConferenceMute"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="DisablePerUserInstallation" class="Machine" displayName="$(string.DisablePerUserInstallation)" explainText="$(string.DisablePerUserInstallationDescription)" key="Software\Policies\PowerToys" valueName="PerUserInstallationDisabled"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_69_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="DisableAutomaticUpdateDownload" class="Both" displayName="$(string.DisableAutomaticUpdateDownload)" explainText="$(string.DisableAutomaticUpdateDownloadDescription)" key="Software\Policies\PowerToys" valueName="AutomaticUpdateDownloadDisabled"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="SuspendNewUpdateToast" class="Both" displayName="$(string.SuspendNewUpdateToast)" explainText="$(string.SuspendNewUpdateToastDescription)" key="Software\Policies\PowerToys" valueName="SuspendNewUpdateAvailableToast"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <!-- This policy is implemented for later usage (PT v1.0 and later) and therefore inactive. (To make it working please update `src/runner/UpdateUtils.cpp`) <policy name="DisablePeriodicUpdateCheck" class="Both" displayName="$(string.DisablePeriodicUpdateCheck)" explainText="$(string.DisablePeriodicUpdateCheckDescription)" key="Software\Policies\PowerToys" valueName="PeriodicUpdateCheckDisabled"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> --> <policy name="AllowExperimentation" class="Both" displayName="$(string.AllowExperimentation)" explainText="$(string.AllowExperimentationDescription)" key="Software\Policies\PowerToys" valueName="AllowExperimentation"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="PowerToysRunAllPluginsEnabledState" class="Both" displayName="$(string.PowerToysRunAllPluginsEnabledState)" explainText="$(string.PowerToysRunAllPluginsEnabledStateDescription)" key="Software\Policies\PowerToys" valueName="PowerLauncherAllPluginsEnabledState"> <parentCategory ref="PowerToysRun" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="PowerToysRunIndividualPluginEnabledState" class="Both" displayName="$(string.PowerToysRunIndividualPluginEnabledState)" explainText="$(string.PowerToysRunIndividualPluginEnabledStateDescription)" presentation="$(presentation.PowerToysRunIndividualPluginEnabledState)" key="Software\Policies\PowerToys\PowerLauncherIndividualPluginEnabledList"> <parentCategory ref="PowerToysRun" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0"/> <elements> <list id="PowerToysRunIndividualPluginEnabledList" explicitValue="true" /> </elements> </policy> </policies> </policyDefinitions>
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) Microsoft Corporation. Licensed under the MIT License. --> <policyDefinitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" revision="1.5" schemaVersion="1.0" xmlns="http://schemas.microsoft.com/GroupPolicy/2006/07/PolicyDefinitions"> <policyNamespaces> <target prefix="powertoys" namespace="Microsoft.Policies.PowerToys" /> </policyNamespaces> <resources minRequiredRevision="1.6"/><!-- Last changed with PowerToys v0.76.0 --> <supportedOn> <definitions> <definition name="SUPPORTED_POWERTOYS_0_64_0" displayName="$(string.SUPPORTED_POWERTOYS_0_64_0)"/> <definition name="SUPPORTED_POWERTOYS_0_68_0" displayName="$(string.SUPPORTED_POWERTOYS_0_68_0)"/> <definition name="SUPPORTED_POWERTOYS_0_69_0" displayName="$(string.SUPPORTED_POWERTOYS_0_69_0)"/> <definition name="SUPPORTED_POWERTOYS_0_70_0" displayName="$(string.SUPPORTED_POWERTOYS_0_70_0)"/> <definition name="SUPPORTED_POWERTOYS_0_73_0" displayName="$(string.SUPPORTED_POWERTOYS_0_73_0)"/> <definition name="SUPPORTED_POWERTOYS_0_75_0" displayName="$(string.SUPPORTED_POWERTOYS_0_75_0)"/> <definition name="SUPPORTED_POWERTOYS_0_76_0" displayName="$(string.SUPPORTED_POWERTOYS_0_76_0)"/> </definitions> </supportedOn> <categories> <category name="PowerToys" displayName="$(string.PowerToys)" /> <category name="InstallerUpdates" displayName="$(string.InstallerUpdates)"> <parentCategory ref="PowerToys" /> </category> <category name="PowerToysRun" displayName="$(string.PowerToysRun)"> <parentCategory ref="PowerToys" /> </category> </categories> <policies> <policy name="ConfigureGlobalUtilityEnabledState" class="Both" displayName="$(string.ConfigureGlobalUtilityEnabledState)" explainText="$(string.ConfigureGlobalUtilityEnabledStateDescription)" key="Software\Policies\PowerToys" valueName="ConfigureGlobalUtilityEnabledState"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityAlwaysOnTop" class="Both" displayName="$(string.ConfigureEnabledUtilityAlwaysOnTop)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityAlwaysOnTop"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityAwake" class="Both" displayName="$(string.ConfigureEnabledUtilityAwake)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityAwake"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityColorPicker" class="Both" displayName="$(string.ConfigureEnabledUtilityColorPicker)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityColorPicker"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityCropAndLock" class="Both" displayName="$(string.ConfigureEnabledUtilityCropAndLock)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityCropAndLock"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_73_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityEnvironmentVariables" class="Both" displayName="$(string.ConfigureEnabledUtilityEnvironmentVariables)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityEnvironmentVariables"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFancyZones" class="Both" displayName="$(string.ConfigureEnabledUtilityFancyZones)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFancyZones"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileLocksmith" class="Both" displayName="$(string.ConfigureEnabledUtilityFileLocksmith)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileLocksmith"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerSVGPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerSVGPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerSVGPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerMarkdownPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerMarkdownPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerMarkdownPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerMonacoPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerMonacoPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerMonacoPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerPDFPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerPDFPreview)" explainText="$(string.ConfigureEnabledUtilityDescriptionPDFPreviewHandler)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerPDFPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerGcodePreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerGcodePreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerGcodePreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerSVGThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerSVGThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerSVGThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerPDFThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerPDFThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerPDFThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerGcodeThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerGcodeThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerGcodeThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerQOIPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerQOIPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerQOIPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_76_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerQOIThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerQOIThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerQOIThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_76_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFileExplorerSTLThumbnails" class="Both" displayName="$(string.ConfigureEnabledUtilityFileExplorerSTLThumbnails)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFileExplorerSTLThumbnails"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityHostsFileEditor" class="Both" displayName="$(string.ConfigureEnabledUtilityHostsFileEditor)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityHostsFileEditor"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityImageResizer" class="Both" displayName="$(string.ConfigureEnabledUtilityImageResizer)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityImageResizer"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityKeyboardManager" class="Both" displayName="$(string.ConfigureEnabledUtilityKeyboardManager)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityKeyboardManager"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityFindMyMouse" class="Both" displayName="$(string.ConfigureEnabledUtilityFindMyMouse)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityFindMyMouse"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMouseHighlighter" class="Both" displayName="$(string.ConfigureEnabledUtilityMouseHighlighter)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMouseHighlighter"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMousePointerCrosshairs" class="Both" displayName="$(string.ConfigureEnabledUtilityMousePointerCrosshairs)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMousePointerCrosshairs"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMouseJump" class="Both" displayName="$(string.ConfigureEnabledUtilityMouseJump)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMouseJump"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityMouseWithoutBorders" class="Both" displayName="$(string.ConfigureEnabledUtilityMouseWithoutBorders)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityMouseWithoutBorders"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_70_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPastePlain" class="Both" displayName="$(string.ConfigureEnabledUtilityPastePlain)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPastePlain"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPeek" class="Both" displayName="$(string.ConfigureEnabledUtilityPeek)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPeek"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_70_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPowerRename" class="Both" displayName="$(string.ConfigureEnabledUtilityPowerRename)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPowerRename"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityPowerLauncher" class="Both" displayName="$(string.ConfigureEnabledUtilityPowerLauncher)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityPowerLauncher"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityQuickAccent" class="Both" displayName="$(string.ConfigureEnabledUtilityQuickAccent)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityQuickAccent"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityRegistryPreview" class="Both" displayName="$(string.ConfigureEnabledUtilityRegistryPreview)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityRegistryPreview"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_69_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityScreenRuler" class="Both" displayName="$(string.ConfigureEnabledUtilityScreenRuler)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityScreenRuler"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityShortcutGuide" class="Both" displayName="$(string.ConfigureEnabledUtilityShortcutGuide)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityShortcutGuide"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityTextExtractor" class="Both" displayName="$(string.ConfigureEnabledUtilityTextExtractor)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityTextExtractor"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="ConfigureEnabledUtilityVideoConferenceMute" class="Both" displayName="$(string.ConfigureEnabledUtilityVideoConferenceMute)" explainText="$(string.ConfigureEnabledUtilityDescription)" key="Software\Policies\PowerToys" valueName="ConfigureEnabledUtilityVideoConferenceMute"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_64_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="DisablePerUserInstallation" class="Machine" displayName="$(string.DisablePerUserInstallation)" explainText="$(string.DisablePerUserInstallationDescription)" key="Software\Policies\PowerToys" valueName="PerUserInstallationDisabled"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_69_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="DisableAutomaticUpdateDownload" class="Both" displayName="$(string.DisableAutomaticUpdateDownload)" explainText="$(string.DisableAutomaticUpdateDownloadDescription)" key="Software\Policies\PowerToys" valueName="AutomaticUpdateDownloadDisabled"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="SuspendNewUpdateToast" class="Both" displayName="$(string.SuspendNewUpdateToast)" explainText="$(string.SuspendNewUpdateToastDescription)" key="Software\Policies\PowerToys" valueName="SuspendNewUpdateAvailableToast"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <!-- This policy is implemented for later usage (PT v1.0 and later) and therefore inactive. (To make it working please update `src/runner/UpdateUtils.cpp`) <policy name="DisablePeriodicUpdateCheck" class="Both" displayName="$(string.DisablePeriodicUpdateCheck)" explainText="$(string.DisablePeriodicUpdateCheckDescription)" key="Software\Policies\PowerToys" valueName="PeriodicUpdateCheckDisabled"> <parentCategory ref="InstallerUpdates" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> --> <policy name="AllowExperimentation" class="Both" displayName="$(string.AllowExperimentation)" explainText="$(string.AllowExperimentationDescription)" key="Software\Policies\PowerToys" valueName="AllowExperimentation"> <parentCategory ref="PowerToys" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_68_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="PowerToysRunAllPluginsEnabledState" class="Both" displayName="$(string.PowerToysRunAllPluginsEnabledState)" explainText="$(string.PowerToysRunAllPluginsEnabledStateDescription)" key="Software\Policies\PowerToys" valueName="PowerLauncherAllPluginsEnabledState"> <parentCategory ref="PowerToysRun" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0" /> <enabledValue> <decimal value="1" /> </enabledValue> <disabledValue> <decimal value="0" /> </disabledValue> </policy> <policy name="PowerToysRunIndividualPluginEnabledState" class="Both" displayName="$(string.PowerToysRunIndividualPluginEnabledState)" explainText="$(string.PowerToysRunIndividualPluginEnabledStateDescription)" presentation="$(presentation.PowerToysRunIndividualPluginEnabledState)" key="Software\Policies\PowerToys\PowerLauncherIndividualPluginEnabledList"> <parentCategory ref="PowerToysRun" /> <supportedOn ref="SUPPORTED_POWERTOYS_0_75_0"/> <elements> <list id="PowerToysRunIndividualPluginEnabledList" explicitValue="true" /> </elements> </policy> </policies> </policyDefinitions>
pedrolamas
9d2f9bcff27e71e7c16ee243961e949f821aab2e
0990724e445fae8319aeec5a1eb92f238c088f37
Same here. From PT v0.76
stefansjfw
235