windows – 发生了系统错误1219

前端之家收集整理的这篇文章主要介绍了windows – 发生了系统错误1219前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图通过部署脚本连接到远程服务器并在那里部署服务.

我首先说明“Net use”并发送服务器的凭据.

但在这里我得到系统1219错误

Multiple connections to a server or shared resource by the same user,using more than one user name,are not allowed. Disconnect all prevIoUs connections to the server or shared resource and try again.

我不知道除了这个之外我还有任何连接到服务器.

我尝试过net“use / delete”但被告知没有连接对服务器开放.

是什么赋予了?

1.启动命令提示
  1. cmd.exe

2.查看当前的网络共享

  1. C:\>net use
  2. New connections will not be remembered.
  3.  
  4. Status Local Remote Network
  5.  
  6. -------------------------------------------------------------------------------
  7. OK G: \\srv\share Microsoft Windows Network
  8. OK H: \\fqdn\user$ Microsoft Windows Network
  9. \\zombie-srv\share Microsoft Windows Network
  10. The command completed successfully.

3.删除僵尸坐骑

  1. C:\>net use /DELETE \\zombie-srv\share
  2. \\zombie-srv\share was deleted successfully.

4.以另一个用户身份安装共享

  1. C:\>net use z: \\zombie-srv\c$/USER:domain\admin_user
  2. Enter the password for 'domain\admin_user' to connect to 'zombie-srv':
  3. The command completed successfully.

你也可以试试

  1. net help use

有关如何操作net命令的更多详细信息.

猜你在找的Windows相关文章