DisplayQuickPick
Applies To: Windows 7, Windows 8, Windows Server 2008 R2, Windows Server 2012
Important
This setting has been deprecated in Windows® 8.1. The information about this deprecated setting is provided for reference only.
DisplayQuickPick
specifies whether the Search Scope appears as a Quick Pick icon. When a user types a search, and then clicks on the Quick Pick icon, then Internet Explorer® searches using that Search Scope.
Values
true |
Specifies that a Quick Pick icon is created to link to the Search Scope. This is the default value. |
false |
Specifies that a Quick Pick icon is not created. |
Valid Configuration Passes
specialize
Parent Hierarchy
Microsoft-Windows-IE-InternetExplorer | SearchScopes | Scope | DisplayQuickPick
Applies To
For a list of the supported Windows® editions and architectures that this component supports, see Microsoft-Windows-IE-InternetExplorer.
XML Example
The following XML output shows how to create a Quick Pick icon for one Search Scope. In this example, the second Search Scope will show a Quick Pick icon.
<SearchScopes>
<Scope wcm:action="add">
<ScopeDefault>true</ScopeDefault>
<ScopeDisplayName>MyFirstSearchProvider</ScopeDisplayName>
<ScopeKey>SearchProvider1</ScopeKey>
<ScopeUrl>https://www.contoso.com/search?q={searchTerms}</ScopeUrl>
<DisplayQuickPick>false</DisplayQuickPick>
</Scope>
<Scope wcm:action="add">
<ScopeDisplayName>MySecondSearchProvider</ScopeDisplayName>
<ScopeKey>SearchProvider2</ScopeKey>
<ScopeUrl>http://search.fabrikam.com/results.aspx?q="{searchTerms}"</ScopeUrl>
<DisplayQuickPick>true</DisplayQuickPick>
</Scope>
</SearchScopes>