Hi John, I did not want to create a too long post, so I have summarized very briefly the features of the shell extension. For example, by right-clicking on a folder background in File Explorer (or in an 'Open' or 'Save as' common dialog box) you can quick navigate to a favorite folder in the current open window of File Explorer. The shell extension enables you to add menu items, menu separators, submenus, and nested submenus to the context menu of File Explorer, so it is up to you to "design" your menu.
Anyway, you're right, a picture is worth a thousand words, so you can find attached two pictures showing just an example of what you can do. I also attached two pictures of two pages of the PDF file.
Here is the script to create the menu displayed in the pictures. It's the sample script included in the ZIP archive.
$POPUP $SHELL|44, QkAccess Menu
{
$ICON_FOLDER, Open C:\Windows, $GOTO, %windir%
$ICON_DRIVEFIXED, Local Disk (C:), $GOTO, c:\
-------------------------
$POPUP SIID_SOFTWARE, Applications
{
$APPICON, Run Notepad, %windir%\system32\notepad.exe
$APPICON, Open WIN.INI, %windir%\system32\notepad.exe, %windir%\win.ini
$APPICON, Run MS Paint, %windir%\system32\mspaint.exe
}
-------------------------
$ICON_FOLDER, New Temporary Folder, $NEWFOLDER, %qka_TempName%
$APPICON, Open CMD Here, $CMDHERE
$APPICON, Open CMD Here (elevated), !$CMDHERE
-------------------------
$SHELL|1, Modify Menu, %windir%\system32\notepad.exe, %qka_Path%\QkAccess.ini
}