How can I add OneDrive's Share & related items to Dopus Context Menu?

Unfortunately, I discovered another problem. If I right-click on a folder in the folder tree on the left, the context menu appears as it should. However, if I instead use the keyboard and the special menu button (or shift+f10), the menu does not appear.

That isn't related to what this thread is about. If you want help with a new issue, please start a new thread.

Sorry, I will do that!

1 Like

I have 13.17.8 and have this persistent issue - i.e no one drive "Share" in the context menu. I have tried all the fixes I could find and no help. In File Explorer it is there and that is the work around.

Workaround:

Insert the following as a Script Function to open the file location in File Explorer!!:

@script vbscript
Option Explicit

Function OnClick(ByRef clickData)
    Dim cmd
    Dim item
    Dim sel

    Set cmd = clickData.Func.Command
    Set sel = clickData.Func.sourcetab.selected

    If sel.count = 0 Then
        ' No selection: Open the current folder in Explorer
        cmd.RunCommand "explorer """ & clickData.Func.sourcetab.path & """"
    Else
        ' For each selected item, open its containing folder in Explorer and select the item
        For Each item In sel
            cmd.RunCommand "explorer /select,""" & item.realpath & """"
        Next
    End If
End Function

Custoimize>TAB User Commands +New Add script and select Script Function from Function Defn. Type Then run it - save if it functions as advertised.