On Windows 2003 you could choose between:

  • Minimize memory used
  • Balance
  • Maximize data throughput for file sharing
  • Maximize data throughput for network applications

These options used to be found under:

Control Panel -> 
    Network Connections -> 
       NIC Properties ->
           File and Printer Sharing for Microsoft Networks ->
               Server Optimization tab

On Windows 2008 Server it appears you can't set this property any more. Do I set this somewhere else, or, are these options no longer valid under Windows 2008?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Seems that this option has disappeared from the user interface. But it is still available as registry setting (Microsoft Technet documentation):

HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management 
DWORD: LargeSystemCache

and

HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters
DWORD: Size

I'm not sure if changing the default values will have an effect on the system.

Description

Specifies whether the system maintains a standard size or a large size file system cache, and influences how often the system writes changed pages to disk.

Increasing the size of the file system cache generally improves server performance, but it reduces the physical memory space available to applications and services. Similarly, writing system data less frequently minimizes use of the disk subsystem, but the changed pages occupy memory that might otherwise be used by applications.

Option setting                   Large System Cache value  Size value
---------------------------------------------------------------------
Minimize memory used                                    0           1
Balance                                                 0           2
Max throughput for file sharing                         1           3
Max throughput for network app                          0           3
link|improve this answer
Appreciated. You could maybe add the name of the DWORD: LargeSystemCache and this key: HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters, DWORD:Size to your answer then it's perfect. – Kev Jul 8 '09 at 12:54
Oh, I forgot the 2nd registry key. Done! Thanks Kev. – splattne Jul 8 '09 at 13:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.