windows系统通过CMD将文件copy到远程电脑
时间:2017-11-27 10:42:36
收藏:0
阅读:942
在需要上传文件的电脑上使用管理员权限运行cmd,输入
runas /user:administrator cmd 回车
net share IPC$
net use \\IP地址\ipc$ password /user:username
xcopy note.ejs \\IP地址\C$\clothes\views /Y
net use \\IP地址\ipc$ /delete
原文:http://www.cnblogs.com/yk1028/p/7902801.html
评论(0)