Adds taskbar search icon control

This commit is contained in:
2022-04-12 13:06:53 -05:00
parent 7fb0518e93
commit cf0818709c
2 changed files with 109 additions and 0 deletions

View File

@@ -10,6 +10,7 @@
<definitions>
<definition displayName="$(string.SUPPORTED_WIN)" name="SUPPORTED_WIN"/>
<definition displayName="$(string.SUPPORTED_WIN10_ONLY)" name="SUPPORTED_WIN10_ONLY"/>
<definition displayName="$(string.SUPPORTED_WIN10_11)" name="SUPPORTED_WIN10_11"/>
<definition displayName="$(string.SUPPORTED_WIN11_ONLY)" name="SUPPORTED_WIN11_ONLY"/>
</definitions>
</supportedOn>
@@ -58,5 +59,96 @@
</enum>
</elements>
</policy>
<policy
name="SearchBoxSize"
class="User"
displayName="$(string.SearchBoxSize_Display)"
explainText="$(string.SearchBoxSize_Explain)"
presentation="$(presentation.SearchBoxSize_PresentationID)"
key="Software\Microsoft\Windows\CurrentVersion\Search"
>
<parentCategory ref="uwo"/>
<supportedOn ref="SUPPORTED_WIN"/>
<elements>
<enum id="SearchBoxSize_Enum" valueName="SearchboxTaskbarMode">
<item displayName="$(string.SearchBoxSize_Large)">
<value>
<decimal value="2"/>
</value>
</item>
<item displayName="$(string.SearchBoxSize_Small)">
<value>
<decimal value="1"/>
</value>
</item>
<item displayName="$(string.SearchBoxSize_Hidden)">
<value>
<decimal value="0"/>
</value>
</item>
<item displayName="$(string.SearchBoxSize_Disabled)">
<value>
<delete/>
</value>
</item>
</enum>
</elements>
</policy>
<!-- POLICY "TaskBar Search Box Size"
POLICY "Show all icons in the system tray"
KEYNAME "Software\Microsoft\Windows\CurrentVersion\Explorer"
EXPLAIN "Set to enabled to show all icons in the system tray"
VALUENAME "EnableAutoTray"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 1
END POLICY
POLICY "Show Task View button on taskbar"
KEYNAME "Software\Microsoft\Windows\CurrentVersion\Explorer"
EXPLAIN "Set to enabled to show the Task View Button on the taskbar"
VALUENAME "ShowTaskViewButton"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END POLICY
POLICY "Disable Desktop Preview"
KEYNAME "Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
EXPLAIN "Set to enabled to disable the Desktop Preview"
VALUENAME "DisablePreviewDesktop"
VALUEON NUMERIC 0
VALUEOFF NUMERIC 1
END POLICY
POLICY "Open File Explorer to This PC"
KEYNAME "Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
EXPLAIN "Set to enabled to force windows file explorer to automatically open with This PC selected"
VALUENAME "LaunchTo"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END POLICY
POLICY "Show recent items in the File Explorer"
KEYNAME "Software\Microsoft\Windows\CurrentVersion\Explorer"
EXPLAIN "Set to enabled to show recent items in file explorer"
VALUENAME "ShowRecent"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END POLICY
POLICY "Show frequent items in the File Explorer"
KEYNAME "Software\Microsoft\Windows\CurrentVersion\Explorer"
EXPLAIN "Set to enabled to show frequent items in file explorer"
VALUENAME "ShowFrequent"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END POLICY
POLICY "Show recent items in the start menu"
KEYNAME "Software\Microsoft\Windows\CurrentVersion\Explorer"
EXPLAIN "Set to enabled to show recent items in file start menu"
VALUENAME "Start_TrackDocs"
VALUEON NUMERIC 1
VALUEOFF NUMERIC 0
END POLICY
-->
</policies>
</policyDefinitions>