Shree
Shree

Reputation: 233

I want to map a network share on a computer

I want to map a remote harddisk on my computer

Say I have a computer A which has a external HDD on F:

I want to mount F: on my computer B

I tried net use \ComputerA\F$ /user:UsernameA PasswordA Also How can i use powershell for it

Upvotes: 0

Views: 75

Answers (1)

bmdixon
bmdixon

Reputation: 352

if you have access to the remote machine you can use the psexec command to share the drive on the remote machine and then use net use to map it on your local machine

psexec \\remotePC net share f$=f:
net use \\remotePC\f$

Upvotes: 1

Related Questions