답변:
수락 된 답변으로이 오류가 발생하면;
System error 1219 has occurred.
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
좀 더 정확하고 다른 공유를 유지하려면 다음 명령을 사용하여 서버의 기존 공유를 나열하십시오.
NET VIEW \\SERVERNAME
그런 다음 충돌하는 공유를 삭제하십시오.
NET USE \\SERVERNAME\SHARENAME /DELETE
마지막으로 허용 된 답변을 사용하면 성공합니다.
NET USE \\SERVERNAME\SHARENAME /u:USERNAME
Enter the password for 'USERNAME' to connect to 'SERVERNAME':
The command completed successfully.