How do I connect to a network share via the Windows Command Prompt?

Is there any way to connect to a network share via cmd.exe? Answer use net use, example: net use X: \\SERVER\Share Where X: is the drive letter you wish to map the share to, and \\SERVER\Share is the UNC path to the share. This should make the share visible in My Computer and the command … Read more

How can I suppress those annoying Thumbs.db files in Windows Vista and Windows 7?

In Windows XP, there used to be a folder setting like “Do not cache thumbnails.” I can’t seem to find something similar for Windows Vista and Windows 7, and every folder on my network containing a photo or video continues to get littered with “Thumbs.db”. I appreciate that caching thumbnails makes some sense, but I … Read more

How do I change the user I am logged in with on a Network Share?

When connecting to a server via Explorer (not a mapped network drive) even if the “Remember my credentials” check box is not selected, Windows remembers the password until you log out. Is there any way to switch user/password for a share without logging out and back in? Answer Are you mapping the share to your … Read more

Accessing a Windows share with a different username

Is it possible to manually specify the username, in which Windows uses it when connecting to a networked share? perhaps \\username@host\… PS: Both the server and clients run Windows 7. Answer You can specify it through the command line using the net command. net use <driveletter>: \\<server>\<sharename> /USER:<domain>\<username> <password> /PERSISTENT:YES You can also specify different … Read more

How can I scan the local network for connected devices? (Mac OS)

I’m basically looking for something like this but available on Mac. I am trying to connect a new workstation to our wireless multifunction printer and I’m having a hell of a time getting the device to spit out an IP for me to connect to. Is there a way I can scan the network somehow? … Read more