简体   繁体   English

我想在计算机上映射网络共享

[英]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: 假设我有一台计算机A,在F上有一个外部硬盘:

I want to mount F: on my computer B 我想在计算机B上挂载F:

I tried net use \\ComputerA\\F$ /user:UsernameA PasswordA Also How can i use powershell for it 我试过net use \\ ComputerA \\ F $ / user:UsernameA PasswordA另外我如何使用Powershell

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命令在远程计算机上共享驱动器,然后使用net use将其映射到本地计算机上

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 批处理脚本-按计算机名称映射网络驱动器 - batch script - map network drives by computer name 如何与特定计算机而不是所有计算机共享本地网络上的文件 - How to share file on local network with specific computer and not with all 我想访问网络上的共享! - I'd like access to a share on the network! 注册应用程序失败,因为文件位于网络共享上。在注册包之前将文件复制到本地计算机 - Registration of app failed because the files are on a network share. Copy the files to the local computer before registering the package 测试计算机是否在网络上可用 - Test if computer is available on network 如何在网络共享驱动器上使用sqlite3数据库? - How can I use sqlite3 database on a network share drive? 如何在远程计算机上共享文件夹 - how to share folder on remote computer 简单的PowerShell脚本,使目录与每个人共享权限,并将其映射为共享网络驱动器 - Simple PowerShell script to make a directory share it with everyone permission and map it as a shared network drive 如何在没有其他应用程序的情况下将网络共享文件夹 map 到 Windows 中的本地文件夹 - How to map a network share folder to a local folder in Windows without additional Apps 共享本地网络Docker - Share local network Docker
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM