There are many ways to map yourself or someone a network drive, but today I will show you how to map a network drive in the command prompt.
syntax:
net view -- views all computers in the workgroup or domain network
-----------------------------------------------------------------------------------------------------
syntax:
net view \\computername -- views any share folders on the computer
example:
net view \\DTS-Enterprise
-----------------------------------------------------------------------------------------------------
syntax:
net use [drive letter] \\computername -- add a network share
example:
net use M: "\\DTS-Enterprise\Control Center"
Note: if there is a space between on the folder you need to put quotes on before and after like in the example. You can use any letter drive as long as it is not being used.
-----------------------------------------------------------------------------------------------------
syntax:
net use [drive letter] \DELETE-- deletes the network network share
example:
net use M: \DELETE
syntax:
net view -- views all computers in the workgroup or domain network
-----------------------------------------------------------------------------------------------------
syntax:
net view \\computername -- views any share folders on the computer
example:
net view \\DTS-Enterprise
-----------------------------------------------------------------------------------------------------
syntax:
net use [drive letter] \\computername -- add a network share
example:
net use M: "\\DTS-Enterprise\Control Center"
Note: if there is a space between on the folder you need to put quotes on before and after like in the example. You can use any letter drive as long as it is not being used.
-----------------------------------------------------------------------------------------------------
syntax:
net use [drive letter] \DELETE-- deletes the network network share
example:
net use M: \DELETE
Comments