How many concurrent connections can windows 2008 r2 make to a UNC fileshare?

11,071

Assuming your UNC file share is also a Windows server, then the max is really only limited by CAL licenses owned (but not actually set anywhere but on paper).

Since this is asking concurrent connections, you can check it here (on the server with the share):

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Shares

Look at the share and there is a REG_MULTI_SZ that should say "MaxUses"

the default is some crazy high number like 4294967295 (65536 times 65536 minus 1) based on ports like you say (no it's not a reference to Excel :) )

Share:
11,071

Related videos on Youtube

Andrew Theken
Author by

Andrew Theken

Professional .Net Developer. Open Source dabbler. Apple fan.

Updated on September 18, 2022

Comments

  • Andrew Theken
    Andrew Theken almost 2 years

    We have an application that makes request to a UNC path for files and serves them via IIS.

    How many concurrent connections can a process on Windows 2008 r2 make to a UNC file share?

    Are there any specific limitations on this, or is it purely a based on physical resource constraints (and number of available ports for TCP/IP connections).

  • Andrew Theken
    Andrew Theken over 11 years
    Thanks, this is useful, though I need to check with our ops guys to see if the share is Windows or a Linux share masquerading as a windows share. :-)