Open Networks folder through cmd?

How can I open the networks folder (equivalent of click "networks" in windows explorer) from a batch file or cmd?

I thought I could just do explorer \\ but that didn't work.

3 Answers

How can I open the networks folder from a batch file or cmd?

equivalent of click "networks" in windows explorer

It's actually "Network" (singular) not "Networks".

Use the following command:

explorer shell:NetworkPlacesFolder

Source How to Open Hidden System Folders with Windows’ Shell Command


Further Reading

To open special folders in Explorer, use the shell command:

  • Network folder: explorer shell:::{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}

Some other examples:

  • This computer: explorer shell:::{20d04fe0-3aea-1069-a2d8-08002b30309d}
  • Search dialog: explorer shell:::{9343812e-1c37-4a49-a12e-4b2d810d956b}
7

Make a mapping to the shared folder : net use z: \\

and close it afterwards : net use z: /delete

Note: see cmd : net use /? for help z: = examplename driveletter : speaks for itself but every drive has a hidden administrative root share name : z$.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like