Try net help use
for usage:
> net help use The syntax of this command is: NET USE [devicename | *] [\\computername\sharename[\volume] [password | *]]
Then try
net use x: \\computername\sharename
Я хотел бы знать, если кто-то знает правильный синтаксис для предоставления папки общего доступа к папке удаленного сетевого компьютера. Пожалуйста, напишите синтаксис, который вы точно знаете, что он работает.
Эта операция должна быть в командной строке CLI У меня появляются сообщения об ошибках при попытке использовать:
net use x: \\someNetworkPath\
Я получаю такие ошибки, как: произошла системная ошибка 53. Сетевой путь не найден
Я должен сказать, что в Windows я могу получить доступ к этому сетевому пути.
Важное примечание: я раньше использовал net use, потому что команда Net share, насколько я знаю, не знает, что такое UNC Path
Try net help use
for usage:
> net help use The syntax of this command is: NET USE [devicename | *] [\\computername\sharename[\volume] [password | *]]
Then try
net use x: \\computername\sharename
Net Share is used to create a share on your machine
Net Use is used to connect to a remote share. Which I think is what you're asking. The correct syntax is:
net use * \\computername or IP\sharename
for instance:
net use * \\mycomputer\c$
-> this will connect to a share with the next available drive letter to a machine's hidden c:\ share.
net use x: \\mycomputer\music
-> this will connect to a share called music on the remote computer named "mycomputer" and call it the x drive.
Both of those will use whatever user you are logged in as. You may have to give it the user name of the computer you are trying to connect to. So you would need to do:
net use * \\mycomputer\c$ /u:mycomputer\username
This will prompt you for a password of the user to the remote computer named "mycomputer"
It also sounds like you may want to create a share on a remote machine. You would have to use something like psexec if you want to do that.