dkgv / pinpoint

Keystroke launcher and personal command central. Alternative to Spotlight and Alfred for Windows. Alternative to Wox, PowerToys.

Home Page:https://usepinpoint.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AppSearch is missing a directory

mgrandi opened this issue · comments

It seems that applications in this directory: C:\Users\mgrandi\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\* are not being picked up by AppSearch

image

(sorry, messed up the first one, here is it showing that it is indeed picked up by the windows start menu)

image

as an example

i'll try and find the exact code spot later, just reporting before i forget!

That particular path is actually already indexed (https://github.com/dkgv/pinpoint/blob/master/Pinpoint.Plugin.AppSearch/StandardAppProvider.cs#L12) so it seems strange that no results show up. Is the file extension of Kusto.Explorer not .lnk?

good call, its a "Application Reference":

mgrandi@mgrandi-laptop:/mnt/c/Users/mgrandi/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Kusto.Explorer$ ls -lah
total 0
drwxrwxrwx 1 mgrandi mgrandi 4.0K Sep  7 09:53  .
drwxrwxrwx 1 mgrandi mgrandi 4.0K Sep  7 10:32  ..
-rwxrwxrwx 1 mgrandi mgrandi  348 Sep  7 09:53 'Kusto.Explorer - 1 .appref-ms'

mgrandi@mgrandi-laptop:/mnt/c/Users/mgrandi/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Kusto.Explorer$ cat Kusto.Explorer\ -\ 1\ .appref-ms

��https://kusto.azureedge.net/kustoexplorer/Kusto.Explorer.application#Kusto.Explorer.application, Culture=neutral, PublicKeyToken=d76090feedfde4f3, processorArchitecture=msil

mgrandi@mgrandi-laptop:/mnt/c/Users/mgrandi/AppData/Roaming/Microsoft/Windows/Start Menu/Programs/Kusto.Explorer$

This is indeed a ClickOnce application and it seems to point to a URL, and then windows knows how to find the local copy of the installation and see if it needs to be updated, a short blurb i found on stack overflow: https://stackoverflow.com/a/281232/975046