Solution
For the CSV example, either of the followings are the change you can make to open the CSV file with Microsoft Excel (instead of Notepad) based on the above article:
- Change the
PerceivedType
of.csv
fromtext
todocument
(This will remove "edit" verb from context menu assuming that perceived typedocument
doesn't have edit verb associated with it. In this case, Box Edit will use the program associated with "open" since there is no "edit".) -
Set the "edit" verb of perceived type
text
to Microsoft Excel by setting\HKEY_CLASSES_ROOT\SystemFileAssociations\text\shell\edit\command
to"C:\Program Files\Microsoft Office\root\Office16\EXCEL.EXE" %1
(Note: The path of excel.exe can differ depending on the editions/versions of Microsoft Excel. Also, this can be the path of any program you would like the file to be associated with.) - Delete the "edit" verb of perceived type
text
by removing the subkey\HKEY_CLASSES_ROOT\SystemFileAssociations\text\shell\edit
(This will remove "edit" verb from context menu just like the first approach. If "edit" verb for CSV doesn't exist, Box Edit will use the program associated with "open".)
Note: Please note that any change in the registry subkeys like the above are to be performed at your own risk. The above registry subkeys are created/used by Windows in general (not owned by Box) and can be used by other applications. The change can impact the user experience of other applications.