ShowTopResult (Standard 8 Module Reference)
7/8/2014
Review the applicable Feature modules and any examples for the ShowTopResult setting in Windows Embedded 8 Standard (Standard 8).
This setting specifies whether to enable the TopResult feature, which skips the results page and immediately loads the top search results of your search provider without first displaying the search results page.
Set to true to enable the TopResult feature; otherwise, set to false. The default value is true.
Modules
The following table shows the modules that you can apply this setting to. In Image Configuration Editor (ICE), you can follow the corresponding path to set this setting for a module.
Module |
Path |
---|---|
Features/User Applications/Internet Explorer 10/SearchScopes/Scope/ShowTopResult |
XML Example
The following XML example shows how to disable the TopResult feature for the search provider.
<SearchScopes>
<Scope wcm:action="add">
<ScopeDisplayName>MySecondSearchProvider</ScopeDisplayName>
<ScopeKey>SearchProvider2</ScopeKey>
<ScopeUrl>http://search.fabrikam.com/results.aspx?q="{searchTerms}"</ScopeUrl>
<ShowSearchSuggestions>false</ShowSearchSuggestions>
<ShowTopResult>false</ShowTopResult>
<TopResultUrl>https://www.contoso.com/search?q={searchTerms}&TopResult</Scope>
</Scope>
</SearchScopes>