diff --git a/src/modules/launcher/Plugins/Microsoft.Plugin.Indexer/SearchHelper/WindowsSearchAPI.cs b/src/modules/launcher/Plugins/Microsoft.Plugin.Indexer/SearchHelper/WindowsSearchAPI.cs index 83bcda7418..26c51f7b67 100644 --- a/src/modules/launcher/Plugins/Microsoft.Plugin.Indexer/SearchHelper/WindowsSearchAPI.cs +++ b/src/modules/launcher/Plugins/Microsoft.Plugin.Indexer/SearchHelper/WindowsSearchAPI.cs @@ -90,13 +90,13 @@ namespace Microsoft.Plugin.Indexer.SearchHelper queryHelper.QueryMaxResults = maxCount; // Set list of columns we want to display, getting the path presently - queryHelper.QuerySelectColumns = "System.ItemPathDisplay"; + queryHelper.QuerySelectColumns = "System.ItemPathDisplay, System.FileName"; // Set additional query restriction queryHelper.QueryWhereRestrictions = "AND scope='file:'"; // To filter based on title for now - queryHelper.QueryContentProperties = "System.Title"; + queryHelper.QueryContentProperties = "System.FileName"; // Set sorting order queryHelper.QuerySorting = "System.DateModified DESC";