티스토리 뷰

윈도우에서 공유폴더를 걸면 접속자수가 기본적으로 제한된다. XP Home 의 경우 5명, Pro의 경우 10명으로 제한된다고 한다. 경우에따라서 이 접속자수를 늘리거나 줄일 필요가 있을 때 다음과 같이 한다.

1. 시작 - 실행 - cmd 입력 - 확인        하시면 도스창이 실행됩니다.
2. net share 엔터             하시면 현재 공유된 폴더들이 나옵니다.
3. net share ? 엔터               하시면 net share 사용방법이 간단히 나오는데.
4. net share 공유폴더명 /users:3      
하시면 3명으로 제한한다는 것이고, UNLIMITED 라 입력하시면 제한없이 공유하는 것입니다. 명령을 잘 실행했습니다. 라고 나오면 정상입니다.

To display information about shared resources on the computer, type:
net share

To share a computer's C:\Data directory with the share name DataShare and include a remark, type:
net share DataShare=c:\Data /remark:"For department 123."

To stop sharing the DataShare folder you created in the previous example, type:
net share DataShare /delete

To share a computer's C:\Art Lst directory with the share name List, type:
net share list="c:\art lst"

참고 : MSDN
http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/net_share.mspx?mfr=true

댓글