Let's say I wish to connect to a remote computer through IP address, and open the shared C drive: I'll click on WinKey+r, and in the run command I type:
\192.168.0.1\C
Now let's say this server requires username and password to log in. Normally, when I type the above command, I'll get a pop-up asking me to enter my username and password. Once I type the, I'm in.
What if I wanted to skip this "pop-up" and write the username and password directly in order to log in, something like:
\user:pass@192.168.0.1\C
I tried using net use, but that doesn't answer my needs, as I wish to actually open drive C in my windows explorer.
Any ideas?