2021-08-25

windows 共享目录切换用户

使用共享目录时,切换共享目录的用户方法:
打开cmd, 执行下面命令

// 删除共享目录 
// eg.   net use \\x.x.x.x /del /y
net use <共享目录地址> /del /y

// 连接新用户
// eg. net use \\x.x.x.x  /user:yourusername
net use <共享目录地址> /user:<新用户账号>

上一篇:javaSE 笔记 File类


下一篇:python的for和内置函数运用