Максимальное количество tcp соединений windows 7

I have an application that tries to open as many http requests as possible (in order to stress test a proxy implementation) It seems to me that Win7 (SP1) may have a limitation on number of concurrent opened connection (it may be the so called half-open state if I'm not wrong). Is there something I can do for client ? and also I test using a vista PC that acts as a proxy server. It would be great if I could configure it to sustain at least 50 new connections initiated / second on client side and many more on server. I made the modification according with http://technet.microsoft.com/en-us/magazine/2007.12.network.aspx by setting TcpNumConnections = 150 but it doesn't make a difference. I still only see about 20 tcp sockets associated with my http client by using tcpviewI
  • Remove From My Forums
  • Вопрос

  • I have an application that tries to open as many http requests as possible (in order to stress test a proxy implementation) It seems to me that Win7 (SP1) may have a limitation on number of concurrent opened connection (it may be the so called half-open
    state if I’m not wrong). Is there something I can do for client ? and also I test using a vista PC that acts as a proxy server. It would be great if I could configure it to sustain at least 50 new connections initiated / second on client side and many more
    on server. I made the modification according with http://technet.microsoft.com/en-us/magazine/2007.12.network.aspx by setting TcpNumConnections = 150 but it doesn’t make a difference. I still only see about 20 tcp sockets associated with my http client by
    using tcpviewI 

    • Изменено

      2 декабря 2011 г. 18:22

Ответы

  • Hi,

    According your description I suggest that you could try to disable the half-open TCP connections limit, set the value of the EnableConnectionRateLimiting
    DWORD registry entry to 0 (0x00000000). To do this, follow these steps:

    1.      
    Click
    Start, type regedit in the Start Search box, and then click
    regedit.exe in the Programs list. If you are prompted for an administrator password or for confirmation, type your password, or click
    Continue.

    2.      
    Locate and then double-click the following registry key:

    HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesTcpipParametersEnableConnectionRateLimiting

    3.      
    In the Value data box, type
    0, and then click OK.

    4.      
    Exit Registry Editor.

    5.      
    Restart the computer.

    Hope that helps


    William Tan

    TechNet Community Support

    • Помечено в качестве ответа
      Arthur Xie
      9 декабря 2011 г. 2:30

    • Помечено в качестве ответа
      Arthur Xie
      9 декабря 2011 г. 2:30

I’ve done a bit of searching on the internet trying to find out whether there is an INBOUND TCP connection limit on Windows 7.

We’re writing a server product which processes data from a number of embedded nodes. These nodes connect over TCP to the server.

We’re wondering whether we can get away with Windows 7 to run the server application rather than having to pay for Server 2008.

We’re not using any of the Microsoft protocols however we may use IIS on the server for client applications to connect to view data from the embedded nodes.

Tamara Wijsman's user avatar

asked Mar 4, 2011 at 10:09

Nick's user avatar

2

I have experienced maximum connection limit problems in Windows XP and Windows Vista, and now I do all my server development on NetBSD Unix. I’ve not tried Windows 7, but I’ve heard that it’s got the same limit.

The problem I ran into was that once we had 10 connection open, additional connection attempts would fail but in a strange way — no error message but eventually it timed out. This limit was a maximum of 10 per TCP port number used, so you might be able to get around this if you’re using different TCP port numbers.

There are a few hacking tools on the internet that will modify this limit in your TCPIP.SYS file, but these are not supported by Microsoft, and if you modify the wrong version of TCPIP.SYS then you’ll be at risk of having a corrupt TCP/IP stack on your system. In addition to that, some of those tools were actually SpyWare, so you need to be very careful with this.

answered Mar 4, 2011 at 19:32

Randolf Richardson's user avatar

2

There doesn’t seem to be any TCP connection limit on Windows 7. The last time I ran a P2P software and the TCP Connections was 500+, according to Resource Monitor.

answered Apr 12, 2013 at 9:24

myopenid's user avatar

I would suggest that 65535 would be the maximum number of TCP connections permitted for an IPV4 Windows machine.

answered Nov 8, 2013 at 17:50

Mikuss's user avatar

2

I’ve done a bit of searching on the internet trying to find out whether there is an INBOUND TCP connection limit on Windows 7.

We’re writing a server product which processes data from a number of embedded nodes. These nodes connect over TCP to the server.

We’re wondering whether we can get away with Windows 7 to run the server application rather than having to pay for Server 2008.

We’re not using any of the Microsoft protocols however we may use IIS on the server for client applications to connect to view data from the embedded nodes.

Tamara Wijsman's user avatar

asked Mar 4, 2011 at 10:09

Nick's user avatar

2

I have experienced maximum connection limit problems in Windows XP and Windows Vista, and now I do all my server development on NetBSD Unix. I’ve not tried Windows 7, but I’ve heard that it’s got the same limit.

The problem I ran into was that once we had 10 connection open, additional connection attempts would fail but in a strange way — no error message but eventually it timed out. This limit was a maximum of 10 per TCP port number used, so you might be able to get around this if you’re using different TCP port numbers.

There are a few hacking tools on the internet that will modify this limit in your TCPIP.SYS file, but these are not supported by Microsoft, and if you modify the wrong version of TCPIP.SYS then you’ll be at risk of having a corrupt TCP/IP stack on your system. In addition to that, some of those tools were actually SpyWare, so you need to be very careful with this.

answered Mar 4, 2011 at 19:32

Randolf Richardson's user avatar

2

There doesn’t seem to be any TCP connection limit on Windows 7. The last time I ran a P2P software and the TCP Connections was 500+, according to Resource Monitor.

answered Apr 12, 2013 at 9:24

myopenid's user avatar

I would suggest that 65535 would be the maximum number of TCP connections permitted for an IPV4 Windows machine.

answered Nov 8, 2013 at 17:50

Mikuss's user avatar

2

I’ve done a bit of searching on the internet trying to find out whether there is an INBOUND TCP connection limit on Windows 7.

We’re writing a server product which processes data from a number of embedded nodes. These nodes connect over TCP to the server.

We’re wondering whether we can get away with Windows 7 to run the server application rather than having to pay for Server 2008.

We’re not using any of the Microsoft protocols however we may use IIS on the server for client applications to connect to view data from the embedded nodes.

Tamara Wijsman's user avatar

asked Mar 4, 2011 at 10:09

Nick's user avatar

2

I have experienced maximum connection limit problems in Windows XP and Windows Vista, and now I do all my server development on NetBSD Unix. I’ve not tried Windows 7, but I’ve heard that it’s got the same limit.

The problem I ran into was that once we had 10 connection open, additional connection attempts would fail but in a strange way — no error message but eventually it timed out. This limit was a maximum of 10 per TCP port number used, so you might be able to get around this if you’re using different TCP port numbers.

There are a few hacking tools on the internet that will modify this limit in your TCPIP.SYS file, but these are not supported by Microsoft, and if you modify the wrong version of TCPIP.SYS then you’ll be at risk of having a corrupt TCP/IP stack on your system. In addition to that, some of those tools were actually SpyWare, so you need to be very careful with this.

answered Mar 4, 2011 at 19:32

Randolf Richardson's user avatar

2

There doesn’t seem to be any TCP connection limit on Windows 7. The last time I ran a P2P software and the TCP Connections was 500+, according to Resource Monitor.

answered Apr 12, 2013 at 9:24

myopenid's user avatar

I would suggest that 65535 would be the maximum number of TCP connections permitted for an IPV4 Windows machine.

answered Nov 8, 2013 at 17:50

Mikuss's user avatar

2

На чтение 8 мин Просмотров 2.1к. Опубликовано 01.03.2020

Содержание

  1. Несколько RDP сессий в Windows 7
  2. Как увеличить количество сетевых подключений
  3. Как снять ограничение TCP/IP подключений
  4. Установка роли файлового сервера на Windows 7
  5. Загрузка Windows 7 в «безопасном режиме»
  6. Сделать полный доступ к системным файлам
  7. Запуск патча
  8. Установка роли сервера терминалов на Windows 7

Начиная с Windows XP, в операционной системе корпорации Microsoft имеется ограничение на количество одновременных подключений к компьютеру. Технически данная операционная система может поддерживать почти любое количество одновременных подключений (их число ограничено только аппаратными возможностями). MS установила искусственные ограничения для того, чтобы продвинуть свой другой продукт – Windows Server.

В виду того, что данные ограничения созданы искусственно, от них можно достаточно легко избавиться. Однако для этого придется устанавливать патчи, которые поменяют некоторые параметры операционной системы, которые нельзя изменить через панель управления или редактор реестра.

Несколько RDP сессий в Windows 7

Как увеличить количество сетевых подключений

Программ для устранения соответствующих ограничений существует достаточно много, но когда речь заходит о вмешательстве во внутреннюю структуру ОС лучше пользоваться проверенным софтом. Для Windows 7 (любых версий) таким ПО является «FixLimUserWindows». Программа умеет работать как с 32-ух, так и с 64-ех битными платформами.

Скачать FixLimUserWindows — https://yadi.sk/d/j49CyT5zjWiQS

Использовать ее рекомендуется в «безопасном режиме». Для того чтобы загрузить операционную в этом режиме нужно еще до появления логотипа «Windows» на загрузочном экране нажать на клавишу «F8» и выбрать в появившемся списке «загрузиться в безопасном режиме». После попадания на рабочий стол понадобится запустить скаченную программу, а затем она сама заменит все нужные файлы.

Если патчить в режиме «обычная загрузка», то после запуска программы на рабочем столе появится новый файл, который придется скопировать в папку «C:WindowsSystem32». Следует отметить, что последнее опять возможно либо в безопасном режиме, либо меняя права доступа.

Вне зависимости от выбранного способа, после того, как файлы будут пропатчины, ограничение на количество подключений снимется. Но для того чтобы сразу убедиться в этом можно открыть командную строку («Ctrl+R» -> «cmd» -> «Ok») и ввести команду «net config server». После нажатия на клавишу «Enter» должно появиться сообщение: «максимальное число пользователей без ограничений».

Если сообщение появилось, значит теперь можно подключать любое количество устройств, главное, чтобы мощности компьютера хватило для поддержания нагрузки от них.

Следует отметить, что изменение файлов операционной системы Widnows является нарушением лицензионного соглашения Microsoft.

Соответственно и использование указанного софта и другого программного обеспечения аналогичного функционала может формально привести к разрыву договора между пользователем и корпорацией MS. Однако после патча активация остается работоспособной.

Как снять ограничение TCP/IP подключений

Привет всем читателям. В ОС Windows XP SP2(x86,x64)/SP3, 2003 Server SP1
(x86)/SP2(x86,x64), Vista без SP(x86,x64) и с SP1(x86,x64) существует ограничение
на количество одновременных попыток сетевых подключений,установленное в режим 10.
В Windows 7 Professional, основная проблема
в том, что количество одновременных подключений tcp ip в этой системе равно 20,

Весьма распространено заблуждение о том, что ограничено максимальное количество соединений вообще.

Попытка подключения

Для установления TCP/IP соединения локальный компьютер сперва посылает удалённому компьютеру приглашение к соединению (так называемый SYN пакет). Состояние, в котором при этом находится локальный компьютер, называют полуоткрытым соединением (англ. half-open connection) или попыткой подключения (англ. connection attempt).
Далее в зависимости от ответа удалённого компьютера полуоткрытое соединение либо закрывается либо переходит в нормальное установленное TCP соединение.

В чем суть ограничения

Ограничение заключается в том, что компьютеру не разрешается иметь более 10 одновременных полуоткрытых исходящих соединений. При достижении предела новые попытки подключений ставятся в очередь.
Таким способом, фактически ограничена скорость подключения к другим компьютерам.
На количество установленных соединений жесткого предела в системе нет.

Кроме того, ограничение никак не затрагивает входящие соединения.
Ограничение введено компанией Microsoft в попытке замедлить распространение вирусов с зараженного компьютера, а также ограничить возможности участия компьютера в DoS-атаках.

Как проверить срабатывание ограничения

Чтобы проверить, срабатывает ли на вашем компьютере это ограничение, загляните в Event Viewer (например через Control Panel — Administrative Tools; или Пуск — Выполнить — EventVwr.msc).

Каждое сообщение «EventID 4226: TCP/IP has reached the security limit
imposed on the number of concurrent TCP connect attempts
» говорит о том, что ограничение сработало.
Причем в XP это реализовано на уровне системного файла TCPIP.SYS, который необходимо патчить с помощью программы: EventID 4226 Patcher Version 2.23d которая увеличит это число до 50.

Как снять ограничение

Для того чтобы увеличить до максимума число возможных сессий в виндовой сетке, следует сделать следующее: запустить глобальные политики CTRL+R ->

читайте далее

Вступите в группу, и вы сможете просматривать изображения в полном размере

Как известно в Windows 7 искусственно ограничивается количество сетевых подключений к папкам, для которых предоставлен общий доступ. Да-да, это уже всеми известный факт и корпорация Майкрософт установила ограничения для того, чтобы продвигать линейку серверных операционных систем Windows Server. По умолчанию максимальное количество соединений в Windows 7 равно 20. В целом этого количества может даже хватить, если в офисе пара-тройка компьютеров, но если их намного больше, то можно сушить весла… Со стороны пользователей проблема плавающая, то есть сетевой ресурс может открываться, а может и нет, причем иногда сетевая папка может открываться через Проводник по IP, но не открываться по имени, и наоборот.

В итоге пришлось перерыть немало различных ресурсов в Интернете, но «лекарство» обычно находилось только для Windows XP, а следовательно нам не подходит. Решение найдено, но хочу сразу предупредить, что любой подобный способ несет за собой потерю вашей Windows-лицензии, так как любые патчи, как и любые изменения в системных файлов запрещены.

Технически операционная система Windows 7 поддерживает любое количество одновременных подключений, которое может ограничиваться лишь аппаратными возможностями нашего компьютера и именно этот факт мы должны проверить.

Установка роли файлового сервера на Windows 7

Итак, как увеличить количество сетевых подключений Windows 7, чтобы сделать рабочий файловый сервер? Было испытано немалое количество различных программ и лишь одна справилась с этой задачей — «FixLimUserWindows”, программа, работающая, к слову, и в 32 в 64-битных версиях Windows 7.

Загрузка Windows 7 в «безопасном режиме»

Для этого необходимо нажать на клавишу “F8” еще до появления эмблемы “Windows” и выбрать в появившемся списке «Загрузиться в безопасном режиме».

Сделать полный доступ к системным файлам

Заходим в папку C:WindowsSystem32, становимся владельцем файла srvsvc.dll и предоставляем полный доступ к нему для текущего пользователя, тоже самое для файла C:WindowsSystem32drivers cpip.sys.

Запуск патча

Первым делом нам необходимо скачать FixLimUserWindows ну и, соответственно, запустить его.

Программа сама заменит все нужные файлы и останется лишь перезапустить систему. После чего перезагрузки ограничение на количество подключений снимется, в чем можно убедиться на практике, попросив пользователей зайти в какую-нибудь сетевую папку на нашем Windows 7 сервере либо проведя предварительную проверку через командную строку (быстрое открытие через «CTRL+R» -> «cmd» -> «Ok») и ввести команду:

Нажимаем на клавишу «Enter” и убеждаемся, что у нас “максимальное число пользователей без ограничений”:

Если у вас похожее сообщение, значит Windows полностью готов к подключению любого количества пользователей и устройств, главное, чтобы аппаратной пропускной способности сетевой карты и мощности процессора хватило для того, чтобы выдержать запланированную нагрузку. Обращаю внимание, что в разделе «Общие ресурсы» оснастки «Управление компьютером» система по прежнему показывает не более 20 подключений, но на практике клиентские компьютеры перестают тормозить и начинают молниеносно подключаться к сетевым папкам нашего новоиспеченного Windows 7 Server.

Во время тестирования выяснилось, что к общим сетевым папкам нашего сервера невозможно подключиться с компов, на которых установлена Windows XP. Решение проблемы следующее:

1. На нашем компьютере с Windows 7 (сервере) открываем редактор реестра (regedit)

2. Находим ключик HKLMSYSTEMCurrentControlSetControlSession ManagerMemory ManagementLargeSystemCache и меняем его значение на 1

3. Находим ключик HKLMSYSTEMCurrentControlSetServicesLanmanServerParametersSize и меняем его значение на 3

Создать значение DWORD32 — Имя: DisableStrictNameChecking , Значение: 1

После внесения изменений в реестр и перезагрузки компьютера ни каких проблем не наблюдается.

Установка роли сервера терминалов на Windows 7

Такая возможность тоже имеется, следите за изменениями на сайте!

Еще раз повторяю — изменение файлов в операционной системе Windows — это нарушение лицензионного соглашения Microsoft, хотя после патча активация Windows остается вполне работоспособной. :)) В любом случае, все вышеописанные действия написаны лишь в ознакомительных целях: покупайте только лицензионное ПО от компании Microsoft и ни в коем случае не ломайте его! 😉

  • Распечатать

Оцените статью:

  1. 5
  2. 4
  3. 3
  4. 2
  5. 1

(1 голос, среднее: 4 из 5)

Поделитесь с друзьями!

To keep the TCP/IP stack from taking all resources on the computer, there are different parameters that control how many connections it can handle. If running applications that are constantly opening and closing connections (P2P), or are providing a service which many tries to connect to at the same time (Web-server like IIS), then one can improve the performance of these applications by changing the restriction limits.

There is a parameter that limits the maximum number of connections that TCP may have open simultaneously.

[HKEY_LOCAL_MACHINE System CurrentControlSet Services Tcpip Parameters]
TcpNumConnections = 0x00fffffe (Default = 16,777,214)

Note a 16 Million connection limit sounds very promising, but there are other parameters (See below), which keeps us from ever reaching this limit.

When a client makes a connect() call to make a connection to a server, then the client invisible/implicit bind the socket to a local dynamic (anonymous, ephemeral, short-lived) port number.
The default range for dynamic ports in Windows is 1024 to 5000, thus giving 3977 outbound concurrent connections for each IP Address.
It is possible to change the upper limit with this DWORD registry key:

For each connection a TCP Control Block (TCB — Data structure using 0.5 KB
pagepool and 0.5 KB non-pagepool) is maintained.
The TCBs are pre-allocated and stored in a table, to avoid spending time on allocating/deallocating
the TCBs every time connections are created/closed. The TCB Table enables reuse/caching
of TCBs and improves memory management, but the static size limits how many
connections TCP can support simultaneously (Active + TIME_WAIT).
Configure the size of the TCB Table with this DWORD registry key:

[HKEY_LOCAL_MACHINE System CurrentControlSet Services Tcpip Parameters]
MaxFreeTcbs = 2000 (Default = RAM dependent, but usual Pro = 1000, Srv=2000)

To make lookups in the TCB table faster a hash table has been made, which is optimized
for finding a certain active connection. If the hash table is too small compared to the
total amount of active connections, then extra CPU time is required to find a connection.
Configure the size of the hash table with this DWORD registry key (Is allocated from pagepool memory):

[HKEY_LOCAL_MACHINE System CurrentControlSet services Tcpip Parameters]
MaxHashTableSize = 512 (Default = 512, Range = 64-65536)

Note Microsoft recommends for a multiprocessor environment, that the value should not be higher
than the maximum amount of concurrent connections (MaxFreeTcbs), also if multiprocessor then it might be interesting
to look at the registry-key NumTcbTablePartitions (Recommended value CPU-count multiplied by 4).

More Info MS KB151418
More Info MS KB224585

If having allocated a 1000 TCBs then it doesn’t mean that one will be able to have a 1000 active connections.
Especially if the application is quickly opening and closing connections, because after a connection is «closed»
it enters the state TIME_WAIT, and will continue to occupy the port number for 4 minutes (2*Maximum Segment Live, MSL)
before it is actually removed. This behavior is specified in RFC 793,
and prevents attempts to reconnect to the same party, before the old socket is recognized as closed at both sides.
It is possible to change how long a socket should be in TIME_WAIT state before it can be re-used freely:

[HKEY_LOCAL_MACHINE System CurrentControlSet services Tcpip Parameters]
TcpTimedWaitDelay = 120 (Default = 240 secs, Range = 30-300)

More Info MS KB137984
More Info MS KB149532
More Info MS KB832954

Note with Win2k the reuse of sockets have been changed, so when reaching the limit of more than
1000 connections in TIME-WAIT state, then it starts to mark sockets that have been in TIME_WAIT state for more than 60 secs as free. It is possible to configure this limit:

[HKEY_LOCAL_MACHINE System CurrentControlSet services Tcpip Parameters]
MaxFreeTWTcbs = 1000 (Default = 1000 sockets)

Note with Win2k3 SP1 the reuse of sockets have been changed, so when it has to re-use sockets
in TIME_WAIT state, then it checks whether the other party is different from the old socket.
Eliminating the need to fiddle with (TcpTimedWaitDelay) and (MaxFreeTWTcbs) any more.

If using an application protocol that doesn’t implement timeout checking, but relies on the TCPIP timeout checking without specifying how often it should be done,
then it is possible to get connections that «never» closes, if the remote host disconnects without
closing the connection properly. The TCPIP timeout checking is by default done every 2 hour, by sending a keep alive packet.
It is possible to change how often TCPIP should check the connections (Affects all TCPIP connections):

[HKEY_LOCAL_MACHINE System CurrentControlSet services Tcpip Parameters]
KeepAliveTime = 1800000 (Default = 7,200,000 milisecs)

More Info MS KB140325

When data is sent/received the data is copied back and forth to non-paged pool memory
for buffering. If there are many connections receiving/sending data, then it is possible to exhaust
the non-paged pool memory. The max size of the non-paged pool buffer allocated for each connection
is controlled by MaxBufferredReceiveBytes or TCPIP Receive Window
depending on which is smallest. More Info MS KB296265

Note if using the Professional/Home edition of Windows then it is very likely that it is
crippled (By Microsoft) not to handle many concurrent TCP connections. Ex. Microsoft have
officially stated that the backlog limit is 5 (200 when Server), so the Professional
edition is not able to accept() more than 5 new connections concurrently. More Info MS KB127144

Note even if having optimized Windows to handle many concurrent connections, then
connections might still be refused when reaching a certain limit, in case a NAT-Router/Firewall
is placed infront of it, which is unable to handle so many concurrent connections.

Note if having activated SYN-Attack-Protection
(Enabled by default in Win2k3 SP1) or installed WinXP SP2, a limit is introduced on how many connection attempts
(half-open) one can make simultaneously (XP SP2 & Vista = 10; Vista SP2 = no limit). This will keep worms like blaster
and sasser from spreading too fast, but it will also limit other applications
that creates many new connections simultaneously (Like P2P).

EventID 4226: TCP/IP has reached the security limit imposed on the number of concurrent TCP connect attempts

More Info www.LvlLord.de

Windows Vista SP2 removes the limit again, but it can be enabled with the following DWORD registry setting:

[HKEY_LOCAL_MACHINE SYSTEM CurrentControlSet Services Tcpip Parameters]
EnableConnectionRateLimiting = 1

More Info MS KB969710

Related No more than 10 connections to a remote computer

0 / 0 / 1

Регистрация: 02.09.2018

Сообщений: 8

1

11.01.2019, 21:57. Показов 54162. Ответов 5


Количество TCP-соединений упирается в потолок… причем в диспетчере показывает лимит то 10 то 500… Винда 10. Можно ли как то увеличить порог не переходя на серверную винду?

Миниатюры

Как увеличить порог TCP-соединений?
 

Как увеличить порог TCP-соединений?
 

__________________
Помощь в написании контрольных, курсовых и дипломных работ, диссертаций здесь



0



556 / 307 / 70

Регистрация: 16.10.2017

Сообщений: 1,375

Записей в блоге: 8

12.01.2019, 14:31

2

vitas86, а на каком аспекте работы ОС это сказывается, кроме опубликованных выше картинок?
У меня тоже самое — проблем нет.
В 10-ке нет ограничения на число открытых (полуоткрытых) сессий.

Миниатюры

Как увеличить порог TCP-соединений?
 



0



556 / 307 / 70

Регистрация: 16.10.2017

Сообщений: 1,375

Записей в блоге: 8

12.01.2019, 14:38

3

Если есть желание:
» Увеличение максимального количества одновременных TCP/IP-соединений в Windows 7/8/10
1. Запустите Редактор реестра (Win+R -> regedit -> Enter)

2. Перейдите по пути:

HKEY_LOCAL_MACHINESYSTEMCurrentControlSetservic esTcpipParameters

3. Создайте параметр DWORD (32-бита) с наименованием MaxUserPort и значением FFFE

4. Создайте параметр DWORD (32-бита) с наименованием EnableConnectionRateLimiting и значением 0

5. Перезагрузите компьютер».

«FFFE» в десятичной системе будет равно 65534.



1



0 / 0 / 1

Регистрация: 02.09.2018

Сообщений: 8

12.01.2019, 20:24

 [ТС]

4

да. так уже делал. в гугле инфу нашел. но по чему то в диспетчере упирается в 10 а дальше не показывает поэтоу и подумал что нашел узкое место в ос. сказывается на работе приложух… возможно не в этом дело



0



Эксперт С++

7175 / 3234 / 80

Регистрация: 17.06.2009

Сообщений: 14,164

18.01.2019, 10:45

5



0



556 / 307 / 70

Регистрация: 16.10.2017

Сообщений: 1,375

Записей в блоге: 8

18.01.2019, 13:16

6

del



0



IT_Exp

Эксперт

87844 / 49110 / 22898

Регистрация: 17.06.2006

Сообщений: 92,604

18.01.2019, 13:16

6

Понравилась статья? Поделить с друзьями:
  • Майкрософт эксель скачать бесплатно для windows 10 не требующий активации
  • Максимальное количество com портов в windows
  • Майкрософт эксель скачать бесплатно для windows 10 на русском торрент
  • Максимальное использование оперативной памяти windows 10
  • Майкрософт офис скачать бесплатно для windows виста