Maximum number of shares on 1 server ?

A

Alex

Hi. If possible could anyone confirm whether there is a maximum number of
shares which can be created on a single Windows 2000 Server and Windows 2003
Server ?

Thanks,
Alex.
 
P

Pegasus \(MVP\)

Alex said:
Hi. If possible could anyone confirm whether there is a maximum number of
shares which can be created on a single Windows 2000 Server and Windows 2003
Server ?

Thanks,
Alex.

You can easily find out for yourself if there is a reasonable
limit, by running this batch file:

@echo off
set Number=10000
for /L %%a in (1,1,%Number%) do (
md c:\Folder%%a
net share Share%%a=c:\Folder%%a
)

Either it works, or it does not! To clean up the mess, run
this batch file:
@echo off
set Number=10000
for /L %%a in (1,1,%Number%) do (
rd c:\Folder%%a
net share Share%%a /d
)
 
H

Herb Martin

Alex said:
Hi. If possible could anyone confirm whether there is a maximum number of
shares which can be created on a single Windows 2000 Server and Windows
2003 Server ?

I agree with Lars and Pegasus.

Curious though: How many shares do you NEED?
 
P

Phillip Windell

Well,...my opinion here is a rather practical one....

If there are so many that the users are confused about where to do and it is a
nightmare for the admin to maintain the permissions,...then you have too many.

--
Phillip Windell [MCP, MVP, CCNA]
www.wandtv.com

The views expressed (as annoying as they are, and as stupid as they sound), are
my own and not those of my employer, or Microsoft, or anyone else associated
with me, including my cats.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top