tablacus / TablacusExplorer

A tabbed file manager with Add-on support
https://tablacus.github.io/explorer_en.html
MIT License
978 stars 102 forks source link

I Can't find "Map network drive" And "Disconnect network drive"... #81

Open dasu88 opened 7 years ago

dasu88 commented 7 years ago

How do I get "Map network drive" and "Disconnect network drive" in the tablacus explorer? image19

tablacus commented 7 years ago

Map network drive

Type

Exec

Options

Rundll32.exe shell32.dll,SHHelpShortcuts_RunDLL Connect

4

Disconnect network drive

Type

JScript

Options

var hMenu = api.CreatePopupMenu();
var ContextMenu = api.ContextMenu(ssfDRIVES);
ContextMenu.QueryContextMenu(hMenu, 0, 1, 0x7FFF, CMF_DEFAULTONLY);
ContextMenu.InvokeCommand(0, te.hwnd, "disconnectNetworkDrive", null, null, SW_SHOWNORMAL, 0, 0);
api.DestroyMenu(hMenu);

5

dasu88 commented 7 years ago

Thank you very much...