Internal exception java net sockettimeoutexception read timed out как исправить

I have a RESTful server which takes an http POST input from client to vote up songs on server. I have used Apache HTTPClient for client.

public boolean vote() {
        HttpClient client = new DefaultHttpClient(getHttpParameters());
        HttpConnectionParams.setConnectionTimeout(client.getParams(), 10000); // Timeout Limit                                                                              
        HttpResponse response;
        try {
            HttpPost post = new HttpPost("http://127.0.0.1:8080/ws/");
            StringEntity se = new StringEntity("{ "song_id" : "2" }");
            se.setContentType(new BasicHeader(HTTP.CONTENT_TYPE,"application/json"));
            post.setEntity(se);
            response = client.execute(post);
            if (response != null) { 
                InputStream in = response.getEntity().getContent(); // Get the data in the Entity                                                               
                String result = convertStreamToString(in);
                return true;
            }
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
        return false;
    }

    public static HttpParams getHttpParameters() {
        HttpParams httpParameters = new BasicHttpParams();
        int timeoutConnection = 30000;
        HttpConnectionParams.setConnectionTimeout(httpParameters,
                timeoutConnection);
        int timeoutSocket = 30000;
        HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);
        return httpParameters;
    }

When I click vote button on succession, after few votes (like 7-8), I get java.net.SocketTimeoutException: Read timed out exception.
When I searched the reason, I found this is because client didn’t get server response on timeout period. But the problem is that when I use other applications like Chrome REST Console or JMeter, I can vote a lots of votes on the same server with same parameters and path. Is there any problem with my java code. Please help me figure this out. Following is my stacktrace:

java.net.SocketTimeoutException: Read timed out
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(Unknown Source)
    at org.apache.http.impl.io.AbstractSessionInputBuffer.fillBuffer(AbstractSessionInputBuffer.java:166)
    at org.apache.http.impl.io.SocketInputBuffer.fillBuffer(SocketInputBuffer.java:90)
    at org.apache.http.impl.io.AbstractSessionInputBuffer.readLine(AbstractSessionInputBuffer.java:281)
    at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:92)
    at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:62)
    at org.apache.http.impl.io.AbstractMessageParser.parse(AbstractMessageParser.java:254)
    at org.apache.http.impl.AbstractHttpClientConnection.receiveResponseHeader(AbstractHttpClientConnection.java:289)
    at org.apache.http.impl.conn.DefaultClientConnection.receiveResponseHeader(DefaultClientConnection.java:252)
    at org.apache.http.impl.conn.ManagedClientConnectionImpl.receiveResponseHeader(ManagedClientConnectionImpl.java:191)
    at org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(HttpRequestExecutor.java:300)
    at org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:127)
    at org.apache.http.impl.client.DefaultRequestDirector.tryExecute(DefaultRequestDirector.java:715)
    at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:520)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:906)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:805)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:784)
    at notdefault.ServerStuffs.vote(ServerStuffs.java:72)
    at notdefault.MainClass.actionPerformed(MainClass.java:105)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    at java.awt.EventQueue.access$400(Unknown Source)
    at java.awt.EventQueue$2.run(Unknown Source)
    at java.awt.EventQueue$2.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
java.net.SocketTimeoutException: Read timed out
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(Unknown Source)
    at org.apache.http.impl.io.AbstractSessionInputBuffer.fillBuffer(AbstractSessionInputBuffer.java:166)
    at org.apache.http.impl.io.SocketInputBuffer.fillBuffer(SocketInputBuffer.java:90)
    at org.apache.http.impl.io.AbstractSessionInputBuffer.readLine(AbstractSessionInputBuffer.java:281)
    at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:92)
    at org.apache.http.impl.conn.DefaultHttpResponseParser.parseHead(DefaultHttpResponseParser.java:62)
    at org.apache.http.impl.io.AbstractMessageParser.parse(AbstractMessageParser.java:254)
    at org.apache.http.impl.AbstractHttpClientConnection.receiveResponseHeader(AbstractHttpClientConnection.java:289)
    at org.apache.http.impl.conn.DefaultClientConnection.receiveResponseHeader(DefaultClientConnection.java:252)
    at org.apache.http.impl.conn.ManagedClientConnectionImpl.receiveResponseHeader(ManagedClientConnectionImpl.java:191)
    at org.apache.http.protocol.HttpRequestExecutor.doReceiveResponse(HttpRequestExecutor.java:300)
    at org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:127)
    at org.apache.http.impl.client.DefaultRequestDirector.tryExecute(DefaultRequestDirector.java:715)
    at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:520)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:906)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:805)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:784)
    at notdefault.ServerStuffs.vote(ServerStuffs.java:72)
    at notdefault.MainClass.actionPerformed(MainClass.java:105)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    at java.awt.EventQueue.access$400(Unknown Source)
    at java.awt.EventQueue$2.run(Unknown Source)
    at java.awt.EventQueue$2.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.AccessControlContext$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)

Играя в Minecraft и вообще, пользуясь приложениями, написанными на Java Вы не раз могли столкнуться с ошибками (исключениями). В отличие от других языков программирования, Java жёстко заточена под использование ООП, потому при возникновении ошибки бросается исключение (объект содержащий сведения под ошибке). Его можно «поймать», дабы предпринять какие-то действия (допустим, вывести в лог). В случае майнкрафта, при возникновении исключения, создаётся краш-отчёт и работа игры завершается.

Понять исключения достаточно просто и вам для этого не понадобится специальное ПО для отладки.

2017-10-03_153645.png

Полная печать исключения состоит из 3-х частей:

  1. Исключение — имя класса ошибки. Классам обычно дают понятные человеку имена, достаточно знаний английского, чтобы понять значение.
  2. Сообщение — содержит более детальное описание ошибки. Может отсутствовать.
  3. Стек вызова — отражает ход работы программы (снизу вверх). Данная информация больше полезна разработчику, дабы понять, где именно возникла ошибка. Обычному пользователю данная информация может помочь понять, с чем связана ошибка (по именам классов и вызываемым функциям — методам).

Исключения могут иметь предков, что присутствует в данном примере (после «Caused by» идёт печать исключения-предка). Если вам не понятно исключение, возможно, стоит рассмотреть его предков — они могут содержать более понятное сообщение.

В данной теме я опишу наиболее часто встречающиеся ошибки, а также, какие действия следует или вовсе не следует предпринимать. Причин у ошибок множество и это не всегда повреждённые файлы игры (чего быть в принципе не может, поскольку лаунчер проверяет файлы игры).

При возникновении ошибок не спешите бежать переустанавливать Java и игру! Java — стабильный продукт. В большинстве случаев, ошибки возникают из-за неправильной настройки ОС; ошибок сети; неправильных драйверов.

org.lwjgl.LWJGLException: Pixel format not accelerated
Недоступно аппаратное ускорение графики. Описание ошибки (англ.)

Решение: Установите последнюю версию драйвера видеокарты.

javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path validation/building failed
Не удаётся установить защищённое соединение из-за невозможности проверки SSL сертификата.

Что можно сделать:

  • Эта ошибка может возникнуть из-за использования слишком старой версии Java. Рекомендуется регулярно обновлять ПО, чтобы иметь актуальный список корневых сертификатов.
  • Виновником может быть антивирус, пытающийся «подсунуть» свой сертификат с целью прослушивания трафика. Настоятельно рекомендуется отключить в антивирусе проверку защищённых соединений (HTTPS/SSL/TLS) — это значительно снижает безопасность защищённых соединений и вызывает проблемы в работе приложений, использующие их.

java.net.SocketTimeOutException: Read timed out
Ошибка сети «время ожидания истекло». Здесь сложно установить виновника: проблема может быть как на стороне сервера, вашего провайдера или вызвана антивирусом.

Что можно сделать:

  • Отключите антивирус и попробуйте выполнить запрос снова.
  • Используйте другое подключение к интернету (другой провайдер; мобильный интернет; VPN; Wi-Fi соседей).
  • Используйте VPN для обхода блокировки (цензуры) со стороны вашего интернет-провайдера.

java.net.ConnectException: Connection timed out: connect
Ошибка сети — не удалось установить соединение с хостом. Обычно виновником данной ошибки является Firewall (брандмауэр) или отсутствие интернета.

Что можно сделать:

  • Проверьте наличие подключения к интернету.
  • Временно отключите антивирус и Firewall.

java.net.SocketException: Connection reset / Удаленный хост принудительно разорвал существующее подключение
Ошибка сети «соединение сброшено». Как и в предыдущей ошибке, проблема связана с «плохим» интернетом, либо проблемами на стороне сервера (в этом случае ошибка будет у всех). Чаще всего возникает у пользователей мобильного интернета (USB-модем). От вас никаких действий предпринимать не требуется, кроме как найти «другой интернет» или использовать VPN для обхода фильтра сайтов.

java.lang.ClassCastException: XXX cannot be cast to YYY
Ошибка в логике программы: попытка привести объект к классу, экземпляром коего объект не является.

Решение: Сообщите о проблеме разработчику программы, приложив лог ошибки.

java.io.IOException: Server returned HTTP response code: 000 for URL
Проблема на стороне веб-сервера. Стандартная библиотека Java выбрасывает исключение, если веб-сервер выдаёт, например, страницу «404 Not Found».

Решение: Сообщите о проблеме владельцу веб-сервера, URL которого указан в тексте ошибки.

java.lang.UnsatisfiedLinkError: Can’t load library:
Не удалось загрузить нативную библиотеку (скорее всего, отсутствует файл по указанному пути).

Что можно сделать:

  • Чаще всего ошибка возникает из-за отсутствия библиотек LWJGL. Почему их файлы пропадают, пока остаётся загадкой. Если пути вы видите «.redserver/natives/2.9.1/lwjgl.dll», значит надо удалить папку natives, находящуюся в .redserver, чтобы лаунчер их скачал заново.
    Неактуально: С версии 3.2 лаунчер проверяет наличие всех файлов и автоматически, при необходимости, перекачивает их.

java.lang.RuntimeException: Unknown character in
Синтаксическая ошибка в конфигурационном файле мода.

Что можно сделать:

  • Удалите указанный в ошибке файл. Мод создаст новый с настройками по умолчанию.
  • Если вам сложно удалить файл, можно сделать сброс конфигов через лаунчер. Нажмите в лаунчере на многоточие на кнопке «Играть»; выберите в меню пункт «Очистка клиента»; установите флажок возле «Сбросить конфигурацию» и запустите очистку.
  • Выполните проверку диска на наличие ошибок. Испорченные файлы могут быть признаком неисправности диска.

java.lang.NullPointerException (NPE)
Ошибка в логике программы: попытка вызвать нестатичный метод, обратиться к полю несуществующего объекта — null.

Решение: Сообщите о проблеме разработчику программы, приложив лог ошибки.

java.net.UnknownHostException
Ошибка сети: не удаётся определить IP-адрес доменного имени (в общем, проблемы с DNS).

Что можно сделать:

  • Иногда ошибка может возникать, если вы не подключены к интернету, либо же произошёл разрыв интернет-соединения. Обычно исчезает сама через небольшой промежуток времени после возобновления соединения. Если ошибка не исчезла — может помочь перезагрузка компьютера (сбрасывает кеш DNS).
  • Доступ к ресурсу заблокирован вашим провайдером. Сейчас данная проблема актуальна для украинских пользователей: используемый нами Яндекс.DNS заблокирован в этой стране. Читайте, как обойти блокировку DNS.

java.io.EOFException: Unexpected end of ZLIB input stream
Неожиданный конец файла. В данном случае — ZIP-архива. Возникает например, когда вы пытаетесь распаковать недокачанный архив.

java.net.SocketException: Address family not supported by protocol family: connect
Проблема возникает из-за неправильной настройки протокола IPv6. Если таковой не поддерживается вашим интернет-провайдером, его поддержку следует отключить.

image.png

java.lang.OutOfMemoryError
А вот это как раз «любимая» ошибка про нехватку ОЗУ. Не стоит сразу спешить выставлять память в лаунчере на максимум, потому что дальнейшие действия зависят от сообщения к ошибке:

  • Unable to create new native thread / Metaspace — в вашей системе закончились ресурсы (ОЗУ). Решается только путём завершения всех лишних программ, либо апгрейдом ПК (больше ОЗУ — больше программ можно запустить). Не забывайте, что следует использовать 64-разрядную систему.
  • Java heap space — нехватка размера heap области памяти. Увеличьте лимит памяти в настройках лаунчера.

The Java net sockettimeoutexception read timed out error can appear because of a network issue, the server might not respond properly or the firewall blocking the connections.java net sockettimeoutexception read timed out

This article includes all the solutions to these causes and helpful expert recommendations. Keep reading to find out solutions to remove the error.

Contents

  • Java Net Sockettimeoutexception Read Timed Out: Causes for the Error
    • – Network Issue
    • – Server Not Responding
    • – Firewall Blocking the Connection
  • Java Net Sockettimeoutexception Read Timed Out: Quick Fixes
    • – Check Network Connection
    • – Increase Timeout Value
    • – Check Firewall Configuration
    • – Optimize Client Requests
  • FAQs
    • 1. Where the Java Net Sockettimeoutexception Read Timed Out Can Occur?
  • Conclusion

Java Net Sockettimeoutexception Read Timed Out: Causes for the Error

The Java net sockettimeoutexception read timed out error can cause by the network issue, the server might not respond, or the firewall is blocking the connection. There could be multiple reasons for connection failure, like a dense network, any issue with the ISP, a weak router, or a weak firewall.

– Network Issue

The network connection between the client and the server may cause the java net sockettimeoutexception read timed out error. A slow internet connection or a severe issue with the connection itself may be to blame.

To send data between the client and the server within a predetermined time, your internet connection must be quick; otherwise, the connection will be lost. If you go deeper, you’ll discover several causes for the connection failure, including a crowded network, a slow router, a poorly set firewall, or an issue with the ISP.

– Server Not Responding

The java net sockettimeoutexception read timed out error can also occur if the server does not respond to the client’s request in that specific period. The possible reason for your server’s failure to respond timely could be the server is overwhelmed with requests.

If your server receives more requests than its handling capability, processing each request and sending a response will take longer. Or if the client requests a server that involves querying an extensive database or performing a complex calculation, it could take a long time to process.

There could also be a problem with the server itself due to a hardware or software issue, such as a faulty component or a bug in the server software. If this is the case, the server can’t process the request properly, and as a result, you will see the error.

– Firewall Blocking the Connection

A firewall is a security system that controls incoming and outgoing network traffic based on predetermined security rules. If a firewall on either the client or the server side is blocking the connection, it can cause the java net sockettimeoutexception read timed out error to occur.Java Net Sockettimeoutexception Read Timed Out Causes

The firewall might block outgoing connections to the server or incoming connections from the client. This can happen if the firewall has been configured to block connections to specific IP addresses or ports or if the client is behind a corporate firewall with strict rules.

The java net sockettimeoutexception read timed-out error can be solved by checking the network connection, pinging the server, increasing the timeout value, modifying firewall configuration, and optimizing the client’s request. Some solutions are not always helpful as they might affect the overall performance.



– Check Network Connection

If you are facing this issue because of a network issue, the first step to resolving it is to check the network connection and try to resolve any problems. You can perform a basic connectivity test to check the network connection, like pinging the server from the client. This is how you can determine if the client can reach the server or if there are any issues with the connection between the two.

If the connectivity test is successful, the next step should be to identify the problem and troubleshoot it with the network connection. You might check for issues with the router or modem, reset the network hardware, or contact the ISP if there are any issues with the internet connection.

But if the connectivity test goes unsuccessful, there could be any problem with network hardware or software, like a faulty router or misconfigured firewall. If this is the case, you will need to troubleshoot that specific problem and try to fix that problem.

– Increase Timeout Value

If you are facing this issue because of a slow connection or server, try increasing the timeout value in the client application. The timeout value is a setting in the client application to determine how long the client should wait for a response from the server before timing out.

The timeout value is mainly set to a certain number of seconds, and if the client does not receive a response from the server within that period, there is a high chance of facing the error. So when you increase the timeout, you are giving the client more time to wait for a response, or you can say that you are allowing the response that is coming late.

You must change the client application’s code to adjust the timeout value. But before you do, you should know that increasing the timeout number can affect how well the client application performs because the client will take longer to time out if it doesn’t get a response from the server.

Therefore, it’s crucial to balance the necessity for a longer timeout and its effect on the client application’s performance.

– Check Firewall Configuration

Suppose you are facing this error due to a firewall blocking the connection. In that case, the go-to solution is checking the firewall’s configuration and ensuring it is not blocking the connection. You need to access the firewall’s configuration settings and review the rules to do this. These rules determine which incoming and outgoing connections are allowed or blocked by the firewall.Java Net Sockettimeoutexception Read Timed Out Fixes

If the firewall is blocking the connection between the client and the server, you will need to change the configuration to allow the connection. This could involve adding an exception rule that allows traffic to and from the client and the server or modifying an existing rule to allow the connection.

Before modifying the firewall’s configuration, you should understand that it can have security implications because it will affect firewall-provided protection. You should also carefully review the firewall rules and ensure that any changes align with the organization’s security policies.

– Optimize Client Requests

If you are facing this error because of a client’s request taking too long to process, one possible solution is to optimize the request to reduce the processing time as a possible solution. You can opt for several ways to optimize the client’s request to reduce the processing time.

One option is to reduce the amount of requested data. If the client is making a request that involves retrieving a large amount of data from the server, It will take a lot of time for the server to process the request and send a response. Doing that means you are reducing the processing time, which eventually can be a solution in your case.

Another option is to optimize the way it is formulated. This could involve more efficient queries or targeted requests that only retrieve the needed data. Optimizing the way the request is formulated can reduce the processing time and fix the error.

FAQs

1. Where the Java Net Sockettimeoutexception Read Timed Out Can Occur?

The java net sockettimeoutexception read timed out can occur while working on any operating system, library, framework, open-source testing tools, or IDE. You might see an altered error message depending on where it appears. Regardless, you can follow the same steps described in this article to eliminate this error.

You can see this error with an altered error message on different operating systems.

  • net.sockettimeoutexception read timed out linux
  • net.sockettimeoutexception read timed out android.

You can see this error with altered error messages on different Java-based tools and frameworks like this.

  • net.sockettimeoutexception read timed out httpclient
  • net.sockettimeoutexception read timed out spring boot

You can see this error with altered error messages on applications and platforms like this.

  • net.sockettimeoutexception read timed out salesforce
  • net.sockettimeoutexception read timed out eclipse

You can see this error with altered error messages on different tools for testing and performance measurement like this.

  • net.sockettimeoutexception read timed out JMeter
  • net.sockettimeoutexception: read timed out JBoss

Conclusion

Let’s summarize today’s article.

  • The java net sockettimeoutexception read timed out can cause network issues, server problems, and firewall configuration.
  • A slow internet connection, a crowded network, a slow router, a poorly set firewall, or an issue with the ISP can also cause the problem.
  • The quick solutions include checking the network connection and increasing the timeout value.
  • You should also try modifying the firewall configuration and optimizing the client’s request.

If you ever face this problem again, you can always come back to seek guidance from this article.

  • Author
  • Recent Posts

Position is Everything

Your Go-To Resource for Learn & Build: CSS,JavaScript,HTML,PHP,C++ and MYSQL. Meet The Team

Position is Everything

  1. 10.03.2020, 10:45


    #1

    Yaxxy вне форума


    Новичок

    Аватар для Yaxxy


    Сообщений
    0

    Регистрация
    10.02.2020

    Репутация

    0


     

    Поблагодарил(а) 0

    Получено благодарностей: 0 (сообщений: 0).

    Internal exception: java.net.SocketTimeoutException: Read timed out

    Здравствуйте!

    Возникла проблема, а именно : Internal exception: java.net.SocketTimeoutException: Read timed out
    Занимался своими делами и меня кикнуло , на повторный заход уже выдавала ошибку. Рестарт лаунчера , компа и преверка обновления джавы и установка свежей версии не помогла. Тест скорости делал (Барнаул — Москва) ping 62 DOWNLOAD Mbps 48.71 UPLOAD Mbps 47.49
    Как решить данную проблему ?


  2. 10.03.2020, 10:53


    #2

    alexa_fitz вне форума


    Banned

    Аватар для alexa_fitz


    Ваш статус
    Кто владеет информацией, тот владеет миром.

    Сообщений
    1,004

    Любимый монстр
    STeVe56 & Zickovsky

    Регистрация
    03.08.2018

    Адрес
    DS: perfectly imperfect#9447

    Репутация

    0


     

    Поблагодарил(а) 818

    Получено благодарностей: 1,463 (сообщений: 491).

    Java здесь не причем. Проблема не со стороны самого обеспечения, а со стороны интернета. Возможно у тебя скачет пинг и поэтому тебя выбрасывает. Интернет стабильно работает?


  3. 10.03.2020, 11:15


    #3

    SadFuntik вне форума


    Новичок

    Аватар для SadFuntik


    Сообщений
    1

    Cервер
    Industrial

    Любимые моды
    IC2

    Регистрация
    13.02.2019

    Репутация

    0


     

    Поблагодарил(а) 0

    Получено благодарностей: 1 (сообщений: 1).

    +, такая же проблема

    У меня просто не заходит пишет java.net.SocketTimeoutException: Read timed out, онлайн на сервере вижу. Интернет работает стабильно в других играх все нормально

    Последний раз редактировалось youngjh999; 10.03.2020 в 12:12.


  4. 10.03.2020, 11:57


    #4

    previa вне форума


    Новичок

    Аватар для previa


    Сообщений
    8

    Cервер
    Industrial

    Регистрация
    31.03.2019

    Репутация

    0


     

    Поблагодарил(а) 0

    Получено благодарностей: 0 (сообщений: 0).

    Отправить сообщение для previa с помощью ICQ


  5. 10.03.2020, 12:26


    #5

    hipiroska213 вне форума


    Новичок

    Аватар для hipiroska213


    Сообщений
    1

    Любимые моды
    IC 2

    Регистрация
    02.03.2020

    Репутация

    0


     

    Поблагодарил(а) 0

    Получено благодарностей: 0 (сообщений: 0).

    не заходит пишет java.net.SocketTimeoutException: Read timed out — что делать? интернет нормальный, и в браузерах и в играх все норм.


  6. 10.03.2020, 12:40


    #6

    Salfetka_ вне форума


    Наблюдатель

    Аватар для Salfetka_


    Сообщений
    84

    Регистрация
    16.01.2020

    Адрес
    /spawn

    Репутация

    12


     

    Поблагодарил(а) 1,292

    Получено благодарностей: 555 (сообщений: 120).

    У меня вылезает эта проблема в 2 случаях .
    Первый,если я каким то образом случайно дёрнул провод проведённый от роутера до компьютера .
    Если так и есть,то надо всего лишь поправить провод или с системном блоке ,либо в самом роутере .
    Второй,если на интернет производится слишком большая нагрузка .
    В моём случае это загрузка видео на youtube , сам майнкрафт ,браузер ,дискорд и т.д
    Для исправления этой ошибки я просто закрываю все предложения через диспетчер задач ( например такие как браузер (не забудь сохранить всё там) и подобные программы)

    Надеюсь помог.

    Диспетчер задач можно открыть с помощью комбинации клавиш ctrl + alt + del


  7. 10.03.2020, 12:45


    #7

    alexa_fitz вне форума


    Banned

    Аватар для alexa_fitz


    Ваш статус
    Кто владеет информацией, тот владеет миром.

    Сообщений
    1,004

    Любимый монстр
    STeVe56 & Zickovsky

    Регистрация
    03.08.2018

    Адрес
    DS: perfectly imperfect#9447

    Репутация

    0


     

    Поблагодарил(а) 818

    Получено благодарностей: 1,463 (сообщений: 491).

    Т.к. это массово, отписала о проблеме администратору, ожидайте.



  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum

  • |<<
  • <
  • >
  • >>|
  • 1
  • 2
  • 3
  • 4
  • Next

  • #1

    Mar 25, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    Hello Everyone,

    This issue is happening with every server I go on. The time it takes to give me the error varies from server to server. Basically I join a server and everything is normal for a certain amount of time, then all the other players freeze, I can’t open chests, I can destroy blocks which I shouldn’t be able to destroy, etc. After about 20 seconds of this I get kicked from the server and I get the error:

    INTERNAL EXCEPTION: JAVA.NET.SOCKETTIMEOUTEXCEPTION: READ TIMED OUT

    I do not get the error on this same network when on my laptop. When I bring my computer to my dad’s house and use a wireless connection

    I’ve re-installed both Minecraft and Java countless times. After months of trying to fix this problem, I bought a new NIC (Network Interface Card) as recommended to me by several support gurus. It does absolutely nothing. I’ve also installed different versions of Java, updated my router firmware, reset my router, disabled firewall, flushed DNS, nothing works.

    My computer specs are as follows:

    Intel i5 3570K, 8GB G.Skill RAM, GTX 650 Ti OC, SanDisk Extreme 120GB SSD, 1TB Seagate HDD, Gigabyte GA-Z77X-D3H, Corsair GS600 PSU.

    Here is my Dxdiag log:

    ——————
    System Information
    ——————
    Time of this report: 6/29/2013, 18:10:28
    Machine name: SEAN-THPC
    Operating System: Windows 7 Ultimate 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.130318-1533)
    Language: English (Regional Setting: English)
    System Manufacturer: Gigabyte Technology Co., Ltd.
    System Model: To be filled by O.E.M.
    BIOS: BIOS Date: 10/24/12 09:45:15 Ver: 04.06.05
    Processor: Intel® Core™ i5-3570K CPU @ 3.40GHz (4 CPUs), ~3.8GHz
    Memory: 8192MB RAM
    Available OS Memory: 8152MB RAM
    Page File: 2830MB used, 13471MB available
    Windows Dir: C:Windows
    DirectX Version: DirectX 11
    DX Setup Parameters: Not found
    User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
    DxDiag Version: 6.01.7601.17514 32bit Unicode

    ————
    DxDiag Notes
    ————
    Display Tab 1: No problems found.
    Sound Tab 1: No problems found.
    Sound Tab 2: No problems found.
    Sound Tab 3: No problems found.
    Input Tab: No problems found.

    ———————
    DirectX Debug Levels
    ———————
    Direct3D: 0/4 (retail)
    DirectDraw: 0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay: 0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow: 0/6 (retail)

    —————
    Display Devices
    —————
    Card name: NVIDIA GeForce GTX 650 Ti
    Manufacturer: NVIDIA
    Chip type: GeForce GTX 650 Ti
    DAC type: Integrated RAMDAC
    Device Key: EnumPCIVEN_10DE&DEV_11C6&SUBSYS_35541458&REV_A1
    Display Memory: 4042 MB
    Dedicated Memory: 1994 MB
    Shared Memory: 2047 MB
    Current Mode: 1920 x 1080 (32 bit) (60Hz)
    Monitor Name: Generic PnP Monitor
    Monitor Model: BenQ GL2440H
    Monitor Id: BNQ7888
    Native Mode: 1920 x 1080(p) (60.000Hz)
    Output Type: HD15
    Driver Name: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Driver File Version: 9.18.0013.1407 (English)
    Driver Version: 9.18.13.1407
    DDI Version: 11
    Driver Model: WDDM 1.1
    Driver Attributes: Final Retail
    Driver Date/Size: 2/10/2013 13:25:27, 17987192 bytes
    WHQL Logo’d: n/a
    WHQL Date Stamp: n/a
    Device Identifier: {D7B71E3E-5286-11CF-9772-59151CC2C435}
    Vendor ID: 0x10DE
    Device ID: 0x11C6
    SubSys ID: 0x35541458
    Revision ID: 0x00A1
    Driver Strong Name: oem19.inf:NVIDIA_SetA_Devices.NTamd64.6.1:Section062:9.18.13.1407:pciven_10de&dev_11c6
    Rank Of Driver: 00E02001
    Video Accel: ModeMPEG2_A ModeMPEG2_C ModeVC1_C ModeWMV9_C
    Deinterlace Caps: {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    D3D9 Overlay: Supported
    DXVA-HD: Supported
    DDraw Status: Enabled
    D3D Status: Enabled
    AGP Status: Enabled

    ————-
    Sound Devices
    ————-
    Description: Speakers (VIA High Definition Audio)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
    Hardware ID: HDAUDIOFUNC_01&VEN_1106&DEV_0441&SUBSYS_1458A014&REV_1001
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: viahduaa.sys
    Driver Version: 6.00.0001.10200 (English)
    Driver Attributes: Final Retail
    WHQL Logo’d: n/a
    Date and Size: 1/11/2012 00:09:44, 2184816 bytes
    Other Files:
    Driver Provider: VIA Technologies, Inc.
    HW Accel Level: Basic
    Cap Flags: 0x0
    Min/Max Sample Rate: 0, 0
    Static/Strm HW Mix Bufs: 0, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX™ 2.0 Listen/Src: No, No
    I3DL2™ Listen/Src: No, No
    Sensaura™ ZoomFX™: No

    Description: SPDIF Interface (TX1) (VIA High Definition Audio)
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: HDAUDIOFUNC_01&VEN_1106&DEV_0441&SUBSYS_1458A014&REV_1001
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: viahduaa.sys
    Driver Version: 6.00.0001.10200 (English)
    Driver Attributes: Final Retail
    WHQL Logo’d: n/a
    Date and Size: 1/11/2012 00:09:44, 2184816 bytes
    Other Files:
    Driver Provider: VIA Technologies, Inc.
    HW Accel Level: Basic
    Cap Flags: 0x0
    Min/Max Sample Rate: 0, 0
    Static/Strm HW Mix Bufs: 0, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX™ 2.0 Listen/Src: No, No
    I3DL2™ Listen/Src: No, No
    Sensaura™ ZoomFX™: No

    Description: SPDIF Interface (TX0) (VIA High Definition Audio)
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: HDAUDIOFUNC_01&VEN_1106&DEV_0441&SUBSYS_1458A014&REV_1001
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: viahduaa.sys
    Driver Version: 6.00.0001.10200 (English)
    Driver Attributes: Final Retail
    WHQL Logo’d: n/a
    Date and Size: 1/11/2012 00:09:44, 2184816 bytes
    Other Files:
    Driver Provider: VIA Technologies, Inc.
    HW Accel Level: Basic
    Cap Flags: 0x0
    Min/Max Sample Rate: 0, 0
    Static/Strm HW Mix Bufs: 0, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX™ 2.0 Listen/Src: No, No
    I3DL2™ Listen/Src: No, No
    Sensaura™ ZoomFX™: No

    ———————
    Sound Capture Devices
    ———————
    Description: Microphone (VIA High Definition Audio)
    Default Sound Capture: Yes
    Default Voice Capture: Yes
    Driver Name: viahduaa.sys
    Driver Version: 6.00.0001.10200 (English)
    Driver Attributes: Final Retail
    Date and Size: 1/11/2012 00:09:44, 2184816 bytes
    Cap Flags: 0x0
    Format Flags: 0x0

    ——————-
    DirectInput Devices
    ——————-
    Device Name: Mouse
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a

    Device Name: Keyboard
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a

    Device Name: Micr
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x0745
    FF Driver: n/a

    Device Name: Micr
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x0745
    FF Driver: n/a

    Device Name: Micr
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x0745
    FF Driver: n/a

    Device Name: Micr
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x0745
    FF Driver: n/a

    Device Name: Micr
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x0745
    FF Driver: n/a

    Device Name: Razer DeathAdder
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x0037
    FF Driver: n/a

    Device Name: Razer DeathAdder
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x0037
    FF Driver: n/a

    Device Name: Razer DeathAdder
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x0037
    FF Driver: n/a

    Device Name: Razer DeathAdder
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x0037
    FF Driver: n/a

    Poll w/ Interrupt: No

    ————
    USB Devices
    ————
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x1E26
    | Matching Device ID: usbroot_hub20
    | Service: usbhub
    |
    +-+ Generic USB Hub
    | | Vendor/Product ID: 0x8087, 0x0024
    | | Location: Port_#0001.Hub_#0002
    | | Matching Device ID: usbclass_09
    | | Service: usbhub

    —————-
    Gameport Devices
    —————-

    ————
    PS/2 Devices
    ————
    + HID Keyboard Device
    | Vendor/Product ID: 0x045E, 0x0745
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + Razer DeathAdder
    | Vendor/Product ID: 0x1532, 0x0037
    | Matching Device ID: hidvid_1532&pid_0037&mi_01&col01
    | Upper Filters: rzudd
    | Service: kbdhid
    |
    + HID Keyboard Device
    | Vendor/Product ID: 0x1532, 0x0037
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: rootrdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x045E, 0x0745
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    |
    + Razer DeathAdder
    | Vendor/Product ID: 0x1532, 0x0037
    | Matching Device ID: hidvid_1532&pid_0037&mi_00
    | Upper Filters: rzudd
    | Service: mouhid
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: rootrdp_mou
    | Upper Filters: mouclass
    | Service: TermDD

    ————————
    Disk & DVD/CD-ROM Drives
    ————————
    Drive: C:
    Free Space: 69.3 GB
    Total Space: 114.4 GB
    File System: NTFS
    Model: SanDisk SDSSDX120GG25

    Drive: D:
    Free Space: 288.1 GB
    Total Space: 953.9 GB
    File System: NTFS
    Model: ST1000DM003-1CH162 ATA Device

    Drive: E:
    Model: PIONEER DVD-RW DVR-219L
    Driver: c:windowssystem32driverscdrom.sys, 6.01.7601.17514 (English), , 0 bytes

    —————
    System Devices
    —————
    Name: Intel® USB 3.0 eXtensible Host Controller
    Device ID: PCIVEN_8086&DEV_1E31&SUBSYS_50071458&REV_043&11583659&0&A0
    Driver: n/a

    Name: Intel® 7 Series/C216 Chipset Family PCI Express Root Port 4 — 1E16
    Device ID: PCIVEN_8086&DEV_1E16&SUBSYS_50011458&REV_C43&11583659&0&E3
    Driver: n/a

    Name: Intel® 7 Series/C216 Chipset Family USB Enhanced Host Controller — 1E2D
    Device ID: PCIVEN_8086&DEV_1E2D&SUBSYS_50061458&REV_043&11583659&0&D0
    Driver: n/a

    Name: Intel® 7 Series/C216 Chipset Family PCI Express Root Port 1 — 1E10
    Device ID: PCIVEN_8086&DEV_1E10&SUBSYS_50011458&REV_C43&11583659&0&E0
    Driver: n/a

    Name: Gigabit PCI Express Network Adapter
    Device ID: PCIVEN_10EC&DEV_8168&SUBSYS_34687470&REV_064&256F5A3A&0&00E3
    Driver: n/a

    Name: Intel® 7 Series/C216 Chipset Family USB Enhanced Host Controller — 1E26
    Device ID: PCIVEN_8086&DEV_1E26&SUBSYS_50061458&REV_043&11583659&0&E8
    Driver: n/a

    Name: Intel® 7 Series/C216 Chipset Family SATA AHCI Controller
    Device ID: PCIVEN_8086&DEV_1E02&SUBSYS_B0051458&REV_043&11583659&0&FA
    Driver: n/a

    Name: NVIDIA GeForce GTX 650 Ti
    Device ID: PCIVEN_10DE&DEV_11C6&SUBSYS_35541458&REV_A14&B77C4C1&0&0008
    Driver: n/a

    Name: Intel® 7 Series/C216 Chipset Family SMBus Host Controller — 1E22
    Device ID: PCIVEN_8086&DEV_1E22&SUBSYS_50011458&REV_043&11583659&0&FB
    Driver: n/a

    Name: Xeon® processor E3-1200 v2/3rd Gen Core processor PCI Express Root Port — 0151
    Device ID: PCIVEN_8086&DEV_0151&SUBSYS_50001458&REV_093&11583659&0&08
    Driver: n/a

    Name: High Definition Audio Controller
    Device ID: PCIVEN_10DE&DEV_0E0B&SUBSYS_35541458&REV_A14&B77C4C1&0&0108
    Driver: n/a

    Name: Intel® 82801 PCI Bridge — 244E
    Device ID: PCIVEN_8086&DEV_244E&SUBSYS_88921458&REV_304&B27E2B6&0&00E5
    Driver: n/a

    Name: High Definition Audio Controller
    Device ID: PCIVEN_8086&DEV_1E20&SUBSYS_A0141458&REV_043&11583659&0&D8
    Driver: n/a

    Name: Xeon® processor E3-1200 v2/3rd Gen Core processor DRAM Controller — 0150
    Device ID: PCIVEN_8086&DEV_0150&SUBSYS_50001458&REV_093&11583659&0&00
    Driver: n/a

    Name: Intel® 82801 PCI Bridge — 244E
    Device ID: PCIVEN_8086&DEV_244E&SUBSYS_50011458&REV_C43&11583659&0&E5
    Driver: n/a

    Name: Intel® 7 Series/C216 Chipset Family PCI Express Root Port 8 — 1E1E
    Device ID: PCIVEN_8086&DEV_1E1E&SUBSYS_50011458&REV_C43&11583659&0&E7
    Driver: n/a

    Name: Standard AHCI 1.0 Serial ATA Controller
    Device ID: PCIVEN_1B4B&DEV_9172&SUBSYS_B0001458&REV_114&2C8787FC&0&00E7
    Driver: n/a

    Name: Intel® Z77 Express Chipset LPC Controller — 1E44
    Device ID: PCIVEN_8086&DEV_1E44&SUBSYS_50011458&REV_043&11583659&0&F8
    Driver: n/a

    Name: Intel® 7 Series/C216 Chipset Family PCI Express Root Port 7 — 1E1C
    Device ID: PCIVEN_8086&DEV_1E1C&SUBSYS_50011458&REV_C43&11583659&0&E6
    Driver: n/a

    Name: Ethernet Controller

    Device ID: PCIVEN_1969&DEV_1083&SUBSYS_E0001458&REV_C04&841E55&0&00E6
    Driver: n/a

    Name: Intel® Management Engine Interface
    Device ID: PCIVEN_8086&DEV_1E3A&SUBSYS_1C3A1458&REV_043&11583659&0&B0
    Driver: n/a

    Name: Intel® 7 Series/C216 Chipset Family PCI Express Root Port 5 — 1E18
    Device ID: PCIVEN_8086&DEV_1E18&SUBSYS_50011458&REV_C43&11583659&0&E4
    Driver: n/a

    Name: VIA USB eXtensible Host Controller
    Device ID: PCIVEN_1106&DEV_3432&SUBSYS_50071458&REV_034&1828E751&0&00E4
    Driver: n/a

    ——————
    DirectShow Filters
    ——————

    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7601.17514
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7601.17514
    Expression Encoder Screen Codec 2,0×00600800,1,1,Microsoft.Expression.Encoder.EEScreen.Codec.dll,4.00.1651.0000
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    WMT VIH2 Fix,0x00200000,1,1,WLXVAFilt.dll,16.04.3508.0205
    Record Queue,0x00200000,1,1,WLXVAFilt.dll,16.04.3508.0205
    WMT Switch Filter,0x00200000,1,1,WLXVAFilt.dll,16.04.3508.0205
    WMT Virtual Renderer,0x00200000,1,0,WLXVAFilt.dll,16.04.3508.0205
    WMT DV Extract,0x00200000,1,1,WLXVAFilt.dll,16.04.3508.0205
    WMT Virtual Source,0x00200000,0,1,WLXVAFilt.dll,16.04.3508.0205
    WMT Sample Information Filter,0x00200000,1,1,WLXVAFilt.dll,16.04.3508.0205
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.17713
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
    Audio Source,0x00200000,0,1,wmprevu.dll,9.00.0000.2980
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.17514
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.17713
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,12.00.9200.16426
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.17528
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    VHMixerSource,0x00200000,0,1,VHMediaCOM.dll,2.00.0000.0209
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.17713
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.17528
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7601.17514
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.17713
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
    Video Mixing Renderer 9,0×00200000,1,0,quartz.dll,6.06.7601.17713
    Disk Record Queue,0x00200000,1,1,wmedque.dll,9.00.0000.2980
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17514
    Color Converter,0x00200000,1,1,declrds.ax,9.00.0000.2980
    VHSplitProcSource,0x00200000,0,1,VHMediaCOM.dll,2.00.0000.0209
    VHCropResize,0x00200000,1,1,VHMediaCOM.dll,2.00.0000.0209
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7601.17713
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.17713
    File Writer,0x00200000,1,0,WLXVAFilt.dll,16.04.3508.0205
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.17514
    File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Expression Encoder Screen Codec 2,0×00600000,0,0,Microsoft.Expression.Encoder.EEScreen.Codec.dll,4.00.1651.0000
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.17713
    Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7601.17713
    VHYV12Decoder,0x00200000,1,1,VHMediaCOM.dll,2.00.0000.0209
    VHStreamDelay,0x00200000,1,1,VHMediaCOM.dll,2.00.0000.0209
    AVI Draw,0x00600064,9,1,quartz.dll,6.06.7601.17713
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    VHMultiWriter,0x00200000,1,0,VHMediaCOM.dll,2.00.0000.0209
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7601.17514
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    VHAudioGain,0x00200000,1,1,VHMediaCOM.dll,2.00.0000.0209
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
    Dxtory Video Decoder,0x00600001,1,1,DxtoryCodec.dll,2.00.0000.0103
    VHFrameRateConv,0x00200000,1,1,VHMediaCOM.dll,2.00.0000.0209
    Screen Capture filter,0x00200000,0,1,wmesrcwp.dll,9.00.0000.2980
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.17514
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.17514
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7601.17514
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7601.17514
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7601.17514
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7601.17713
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    VHDeinterlace,0x00200000,1,1,VHMediaCOM.dll,2.00.0000.0209
    VHYV12Encoder,0x00200000,1,1,VHMediaCOM.dll,2.00.0000.0209
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.17713
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Video Source,0x00200000,0,1,wmprevu.dll,9.00.0000.2980
    Adaptive Streaming Filter,0x00600000,0,0,Microsoft.Expression.Encoder.Utilities2.dll,4.00.1651.0000
    VHMultiReader,0x00200000,0,1,VHMediaCOM.dll,2.00.0000.0209
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7601.17528
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Line 21 Decoder 2,0×00600002,1,1,quartz.dll,6.06.7601.17713
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.17713
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.17713
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.17514
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.17713

    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.17713
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft Video 1,0×00200000,1,1,qcap.dll,6.06.7601.17514

    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    PCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    GSM 6.10,0×00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    MPEG Layer-3,0×00200000,1,1,quartz.dll,6.06.7601.17713

    Audio Capture Sources:
    Microphone (VIA High Definition,0x00200000,0,0,qcap.dll,6.06.7601.17514
    XSplitBroadcaster,0x00200000,0,1,VHMediaCOM.dll,2.00.0000.0209

    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7601.17528
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528

    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.17713

    WDM Streaming Capture Devices:
    VIA HD Audio Line In,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    VIA HD Audio Microphone,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    VIA HD Audio Stereo Mixer,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

    WDM Streaming Rendering Devices:
    HD Audio digital out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    HD Audio digital out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    VIA HD Audio Output,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7601.17514

    Video Capture Sources:
    Dxtory Video 1,0×00200000,0,0,DxtoryVideo.dll,2.00.0000.0097
    Dxtory Video 2,0×00200000,0,0,DxtoryVideo.dll,2.00.0000.0097
    Dxtory Video 3,0×00200000,0,0,DxtoryVideo.dll,2.00.0000.0097
    Dxtory Video 4,0×00200000,0,0,DxtoryVideo.dll,2.00.0000.0097
    XSplitBroadcaster,0x00200000,0,1,VHMediaCOM.dll,2.00.0000.0209

    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514

    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7601.17514

    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7601.17708
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7601.17708

    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

    Audio Renderers:
    Speakers (VIA High Definition A,0x00200000,1,0,quartz.dll,6.06.7601.17713
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: SPDIF Interface (TX0) (VIA High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: SPDIF Interface (TX1) (VIA High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: Speakers (VIA High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17713
    SPDIF Interface (TX0) (VIA High,0x00200000,1,0,quartz.dll,6.06.7601.17713
    SPDIF Interface (TX1) (VIA High,0x00200000,1,0,quartz.dll,6.06.7601.17713

    —————
    EVR Power Information
    —————
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
    Quality Flags: 2576
    Enabled:
    Force throttling
    Allow half deinterlace
    Allow scaling
    Decode Power Usage: 100
    Balanced Flags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 50
    PowerFlags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 0


  • #5

    Mar 26, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    Hey,

    If you need some help i will need to ask you some questions

    1. Did you install the correct java version for your pc?
    2. When you «reinstalled» minecraft did you delete your .minecraft folder?
    3. Do you think it could be your ISP that’s causing this? (only asking because it says timed out)
    4. What version of minecraft are you using? (.exe or .jar)
    5. Could you post an error log? (in a spoiler) :D

    Hope i hear something back soon

    Kind regards
    ~Eddieash

    1. I installed java from here: http://java.com/en/download/chrome.jsp?locale=en. Is that the right one?
    2. Yes I did.
    3. No it couldn’t been since it only happens with this computer.
    4. I don’t know how to answer this. I click on the .exe to open minecraft if that’s what you mean.
    5. Where do I find my error log? :P

    Thanks for the help :)

    Is this happening only on your new computer?

    Yes only on the new computer :(


  • #6

    Mar 26, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    Something else interesting, I don’t get this problem at all when playing in-browser on minecraft.net, only on the client.

    Any one else willing to help would be greatly appreciated!


  • #8

    Mar 27, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    Yes but no… it’s best to have the latest java runtime environment (JRE).
    If your system is 32 bit, install the x86 version only. If your system is 64bit, install both x64 and x86 starting with x64.

    Oh I remember that one. I think I’m just going to delete minecraft and java and re-install minecraft and then x64 java as soon as I get access to a computer. Hopefully that does something :) thanks

    EDIT: Wait…So I download 64 then 36 straight after? Hmmm okay :) (I’d never heard of that before)


  • #9

    Mar 27, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    Yes but no… it’s best to have the latest java runtime environment (JRE).
    If your system is 32 bit, install the x86 version only. If your system is 64bit, install both x64 and x86 starting with x64.

    Also, which x86 one do I download? Offiline or Online?

    (Sorry for double-posting)


  • #12

    Mar 27, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    Offline, so you don’t have to re-download the whole thing when you need to re-install it.
    And yes, first x64 and then x86 precisely in this order.

    I’ve done that and well…it seems to have fixed the problem. If it comes back I’ll be sure to post here again but. Thanks for the help :D


  • #13

    Mar 27, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    Actually I gotta correct myself here. It’s not fixed. It was for one server but then on all these other server’s I can literally join for 2 seconds before this happens. :(

    I’ve tried a fair few servers.

    I can play on this one (prison.bonebreakingmc.com) fairly well. Occasionally I’ll drop out and get the message but most of the time I’m okay.

    On most other servers though it’s about 10-15 seconds then it happens. I know it’s not my internet as It’s absolutely fine on my laptop.


  • #15

    Mar 28, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    Your firewall might be blocking off some connections. You can try disabling it yourself otherwise I could help you if I know what your OS is.

    I’d rather you help me :) My OS is Windows 7 Professional 64-bit.


  • #16

    Mar 28, 2013

    Same thing’s happening to me. I have windows 8 :B i really need to fix this, i can’t join ANY servers


  • #18

    Mar 28, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    Excellent. Press the windows start menu and type firewall in the search bar. Under preview click on Windows Firewall properties. See where it says firewall enabled, change it to disabled.

    Okay, I didn’t follow exactly what you did because I couldn’t find where it said ‘preview’. I just searched ‘Windows Firewall’ and then to ‘Customize Settings’. There I checked the two boxes that say ‘turn of Windows Firewall (not recommended)’. If that is correct, what now?


  • #20

    Mar 30, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    That’s it. Does it work now? (sorry, my windows is set on a different language)

    No it doesn’t :'(


  • #22

    Mar 30, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    Have you used hamachi in the past?

    Yes I have it right now. Do you think that may be causing problems?


  • #24

    Apr 5, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    If you’re not using Hamachi to play Minecraft multiplayer, the Hamachi adapter may be interfering with your connection.

    To disable the Hamachi adapter:
    1. Access the control panel.
    2. Under Network and Internet, click on view network status and tasks.
    3. On the left side of the window click on change adapter settings.
    4. Right click on the Hamachi adapter and hit disable.

    This however won’t permit you to use hamachi until you enable it again.

    This didn’t work unfortunately :( Any other ideas?


  • #28

    Apr 11, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    Okay that clearly shows that it’s not your problem. Another question, how is your computer connected to your modem/router? Does it use wi-fi or cable? And how are your other computers (which work) connected?

    I use wired but I can use wi-fi as well, I’ve tried both. Neither works. All the other computers in my house use wi-fi.


  • #30

    Apr 16, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    Excellent, we’re gonna dissect your computer until we hit the very core of the problem.

    You can start by giving me your dxdiag log which contains all the system information. Once you obtained the log and you’re ready to post it, make sure you paste it into a spoiler.

    Edit: Before you do, there’s something you need to try. Go in C:WindowsSystem32driversetc and open the file hosts in notepad. Delete the line which says minecraft in it and save the file. Make sure you backup the file before you change it. If minecraft isn’t written anywhere, don’t do anything. Go ahead and post your dxdiag log instead.

    Sorry for not replying, I’ve been away. I’m not currently at home but as soon as I am I will do this.

    Thanks a lot :D


  • #31

    Apr 17, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    Excellent, we’re gonna dissect your computer until we hit the very core of the problem.

    You can start by giving me your dxdiag log which contains all the system information. Once you obtained the log and you’re ready to post it, make sure you paste it into a spoiler.

    Edit: Before you do, there’s something you need to try. Go in C:WindowsSystem32driversetc and open the file hosts in notepad. Delete the line which says minecraft in it and save the file. Make sure you backup the file before you change it. If minecraft isn’t written anywhere, don’t do anything. Go ahead and post your dxdiag log instead.

    Minecraft wasn’t written in the hosts file.

    Here’s my dxdiag log.

    ——————
    System Information
    ——————
    Time of this report: 4/17/2013, 16:23:13
    Machine name: SEAN-THPC
    Operating System: Windows 7 Ultimate 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.130318-1533)
    Language: English (Regional Setting: English)
    System Manufacturer: Gigabyte Technology Co., Ltd.
    System Model: To be filled by O.E.M.
    BIOS: BIOS Date: 10/24/12 09:45:15 Ver: 04.06.05
    Processor: Intel(R) Core(TM) i5-3570K CPU @ 3.40GHz (4 CPUs), ~3.8GHz
    Memory: 8192MB RAM
    Available OS Memory: 8152MB RAM
    Page File: 2646MB used, 13656MB available
    Windows Dir: C:Windows
    DirectX Version: DirectX 11
    DX Setup Parameters: Not found
    User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
    DxDiag Version: 6.01.7601.17514 64bit Unicode

    ————
    DxDiag Notes
    ————
    Display Tab 1: No problems found.
    Sound Tab 1: No problems found.
    Sound Tab 2: No problems found.
    Sound Tab 3: No problems found.
    Input Tab: No problems found.

    ———————
    DirectX Debug Levels
    ———————
    Direct3D: 0/4 (retail)
    DirectDraw: 0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay: 0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow: 0/6 (retail)

    —————
    Display Devices
    —————
    Card name: NVIDIA GeForce GTX 650 Ti
    Manufacturer: NVIDIA
    Chip type: GeForce GTX 650 Ti
    DAC type: Integrated RAMDAC
    Device Key: EnumPCIVEN_10DE&DEV_11C6&SUBSYS_35541458&REV_A1
    Display Memory: 4042 MB
    Dedicated Memory: 1994 MB
    Shared Memory: 2047 MB
    Current Mode: 1920 x 1080 (32 bit) (60Hz)
    Monitor Name: Generic PnP Monitor
    Monitor Model: BenQ GL2440H
    Monitor Id: BNQ7888
    Native Mode: 1920 x 1080(p) (60.000Hz)
    Output Type: HD15
    Driver Name: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Driver File Version: 9.18.0013.1422 (English)
    Driver Version: 9.18.13.1422
    DDI Version: 11
    Driver Model: WDDM 1.1
    Driver Attributes: Final Retail
    Driver Date/Size: 3/15/2013 15:53:06, 17990800 bytes
    WHQL Logo’d: n/a
    WHQL Date Stamp: n/a
    Device Identifier: {D7B71E3E-5286-11CF-6672-59151CC2C435}
    Vendor ID: 0x10DE
    Device ID: 0x11C6
    SubSys ID: 0x35541458
    Revision ID: 0x00A1
    Driver Strong Name: oem26.inf:NVIDIA_SetA_Devices.NTamd64.6.1:Section062:9.18.13.1422:pciven_10de&dev_11c6
    Rank Of Driver: 00E02001
    Video Accel: ModeMPEG2_A ModeMPEG2_C ModeVC1_C ModeWMV9_C
    Deinterlace Caps: {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY

    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    D3D9 Overlay: Supported
    DXVA-HD: Supported
    DDraw Status: Enabled
    D3D Status: Enabled
    AGP Status: Enabled

    ————-
    Sound Devices
    ————-
    Description: Speakers (VIA High Definition Audio)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
    Hardware ID: HDAUDIOFUNC_01&VEN_1106&DEV_0441&SUBSYS_1458A014&REV_1001
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: viahduaa.sys
    Driver Version: 6.00.0001.10200 (English)
    Driver Attributes: Final Retail
    WHQL Logo’d: n/a
    Date and Size: 1/11/2012 00:09:44, 2184816 bytes
    Other Files:
    Driver Provider: VIA Technologies, Inc.
    HW Accel Level: Basic
    Cap Flags: 0x0
    Min/Max Sample Rate: 0, 0
    Static/Strm HW Mix Bufs: 0, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Description: SPDIF Interface (TX1) (VIA High Definition Audio)
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: HDAUDIOFUNC_01&VEN_1106&DEV_0441&SUBSYS_1458A014&REV_1001
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: viahduaa.sys
    Driver Version: 6.00.0001.10200 (English)
    Driver Attributes: Final Retail
    WHQL Logo’d: n/a
    Date and Size: 1/11/2012 00:09:44, 2184816 bytes
    Other Files:
    Driver Provider: VIA Technologies, Inc.
    HW Accel Level: Basic
    Cap Flags: 0x0
    Min/Max Sample Rate: 0, 0
    Static/Strm HW Mix Bufs: 0, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Description: SPDIF Interface (TX0) (VIA High Definition Audio)
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: HDAUDIOFUNC_01&VEN_1106&DEV_0441&SUBSYS_1458A014&REV_1001
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: viahduaa.sys
    Driver Version: 6.00.0001.10200 (English)
    Driver Attributes: Final Retail
    WHQL Logo’d: n/a
    Date and Size: 1/11/2012 00:09:44, 2184816 bytes
    Other Files:
    Driver Provider: VIA Technologies, Inc.
    HW Accel Level: Basic
    Cap Flags: 0x0
    Min/Max Sample Rate: 0, 0
    Static/Strm HW Mix Bufs: 0, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    ———————
    Sound Capture Devices
    ———————
    Description: Microphone (VIA High Definition Audio)
    Default Sound Capture: Yes
    Default Voice Capture: Yes
    Driver Name: viahduaa.sys
    Driver Version: 6.00.0001.10200 (English)
    Driver Attributes: Final Retail
    Date and Size: 1/11/2012 00:09:44, 2184816 bytes
    Cap Flags: 0x0
    Format Flags: 0x0

    ——————-
    DirectInput Devices
    ——————-
    Device Name: Mouse
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a

    Device Name: Keyboard
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a

    Device Name: Micr
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x0745
    FF Driver: n/a

    Device Name: Micr
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x0745
    FF Driver: n/a

    Device Name: Micr
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x0745
    FF Driver: n/a

    Device Name: Micr
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x0745
    FF Driver: n/a

    Device Name: Micr
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x045E, 0x0745
    FF Driver: n/a

    Poll w/ Interrupt: No

    ————
    USB Devices
    ————
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x1E26
    | Matching Device ID: usbroot_hub20
    | Service: usbhub
    | Driver: usbhub.sys, 3/25/2011 13:29:26, 343040 bytes
    | Driver: usbd.sys, 3/25/2011 13:28:59, 7936 bytes
    |
    +-+ Generic USB Hub
    | | Vendor/Product ID: 0x8087, 0x0024
    | | Location: Port_#0001.Hub_#0002
    | | Matching Device ID: usbclass_09
    | | Service: usbhub
    | | Driver: usbhub.sys, 3/25/2011 13:29:26, 343040 bytes

    —————-
    Gameport Devices
    —————-

    ————
    PS/2 Devices
    ————
    + HID Keyboard Device
    | Vendor/Product ID: 0x045E, 0x0745
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | Driver: kbdhid.sys, 11/20/2010 20:33:25, 33280 bytes
    | Driver: kbdclass.sys, 7/14/2009 11:48:04, 50768 bytes
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: rootrdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    | Driver: i8042prt.sys, 7/14/2009 09:19:57, 105472 bytes
    | Driver: kbdclass.sys, 7/14/2009 11:48:04, 50768 bytes
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x045E, 0x0745
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | Driver: mouhid.sys, 7/14/2009 10:00:20, 31232 bytes
    | Driver: mouclass.sys, 7/14/2009 11:48:27, 49216 bytes
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: rootrdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 11/20/2010 23:33:57, 63360 bytes
    | Driver: sermouse.sys, 7/14/2009 10:00:20, 26624 bytes
    | Driver: mouclass.sys, 7/14/2009 11:48:27, 49216 bytes

    ————————
    Disk & DVD/CD-ROM Drives
    ————————
    Drive: C:
    Free Space: 70.0 GB
    Total Space: 114.4 GB
    File System: NTFS
    Model: SanDisk SDSSDX120GG25

    Drive: D:
    Free Space: 413.7 GB
    Total Space: 953.9 GB
    File System: NTFS
    Model: ST1000DM 003-1CH162 SCSI Disk Device

    Drive: E:
    Model: PIONEER DVD-RW DVR-219L
    Driver: c:windowssystem32driverscdrom.sys, 6.01.7601.17514 (English), 11/20/2010 19:19:21, 147456 bytes

    —————
    System Devices
    —————
    Name: Intel(R) 7 Series/C216 Chipset Family USB Enhanced Host Controller — 1E26
    Device ID: PCIVEN_8086&DEV_1E26&SUBSYS_50061458&REV_043&11583659&0&E8
    Driver: C:Windowssystem32driversusbehci.sys, 6.01.7601.17586 (English), 3/25/2011 13:29:04, 52736 bytes
    Driver: C:Windowssystem32driversusbport.sys, 6.01.7601.17586 (English), 3/25/2011 13:29:14, 325120 bytes
    Driver: C:Windowssystem32driversusbhub.sys, 6.01.7601.17586 (English), 3/25/2011 13:29:26, 343040 bytes

    Name: Xeon(R) processor E3-1200 v2/3rd Gen Core processor PCI Express Root Port — 0151
    Device ID: PCIVEN_8086&DEV_0151&SUBSYS_50001458&REV_093&11583659&0&08
    Driver: C:Windowssystem32DRIVERSpci.sys, 6.01.7601.17514 (English), 11/20/2010 23:33:48, 184704 bytes

    Name: Intel(R) 7 Series/C216 Chipset Family SMBus Host Controller — 1E22
    Device ID: PCIVEN_8086&DEV_1E22&SUBSYS_50011458&REV_043&11583659&0&FB
    Driver: n/a

    Name: Xeon(R) processor E3-1200 v2/3rd Gen Core processor DRAM Controller — 0150
    Device ID: PCIVEN_8086&DEV_0150&SUBSYS_50001458&REV_093&11583659&0&00
    Driver: n/a

    Name: Intel(R) 82801 PCI Bridge — 244E
    Device ID: PCIVEN_8086&DEV_244E&SUBSYS_88921458&REV_304&B27E2B6&0&00E5
    Driver: C:Windowssystem32DRIVERSpci.sys, 6.01.7601.17514 (English), 11/20/2010 23:33:48, 184704 bytes

    Name: High Definition Audio Controller
    Device ID: PCIVEN_8086&DEV_1E20&SUBSYS_A0141458&REV_043&11583659&0&D8
    Driver: C:Windowssystem32DRIVERShdaudbus.sys, 6.01.7601.17514 (English), 11/20/2010 20:43:43, 122368 bytes

    Name: Marvell 91xx SATA 6G Controller
    Device ID: PCIVEN_1B4B&DEV_9172&SUBSYS_B0001458&REV_114&2C8787FC&0&00E7
    Driver: C:Windowssystem32DRIVERSmvs91xx.sys, 1.02.0000.1010 (English), 8/9/2011 15:42:36, 315696 bytes
    Driver: C:Windowssystem32DRIVERSmvxxmm.sys, 1.00.0000.1202 (English), 8/9/2011 15:42:38, 14128 bytes
    Driver: C:Windowssystem32mv91xxm.dll, 1.00.0000.0001 (English), 8/9/2011 13:05:06, 35840 bytes

    Name: Intel(R) 82801 PCI Bridge — 244E
    Device ID: PCIVEN_8086&DEV_244E&SUBSYS_50011458&REV_C43&11583659&0&E5
    Driver: C:Windowssystem32DRIVERSpci.sys, 6.01.7601.17514 (English), 11/20/2010 23:33:48, 184704 bytes

    Name: Intel(R) 7 Series/C216 Chipset Family PCI Express Root Port 8 — 1E1E
    Device ID: PCIVEN_8086&DEV_1E1E&SUBSYS_50011458&REV_C43&11583659&0&E7
    Driver: C:Windowssystem32DRIVERSpci.sys, 6.01.7601.17514 (English), 11/20/2010 23:33:48, 184704 bytes

    Name: Atheros AR8151 PCI-E Gigabit Ethernet Controller (NDIS 6.20)
    Device ID: PCIVEN_1969&DEV_1083&SUBSYS_E0001458&REV_C04&841E55&0&00E6
    Driver: n/a

    Name: Intel(R) Z77 Express Chipset LPC Controller — 1E44
    Device ID: PCIVEN_8086&DEV_1E44&SUBSYS_50011458&REV_043&11583659&0&F8
    Driver: C:Windowssystem32DRIVERSmsisadrv.sys, 6.01.7600.16385 (English), 7/14/2009 11:48:27, 15424 bytes

    Name: Intel(R) 7 Series/C216 Chipset Family PCI Express Root Port 7 — 1E1C
    Device ID: PCIVEN_8086&DEV_1E1C&SUBSYS_50011458&REV_C43&11583659&0&E6
    Driver: C:Windowssystem32DRIVERSpci.sys, 6.01.7601.17514 (English), 11/20/2010 23:33:48, 184704 bytes

    Name: VIA USB eXtensible Host Controller
    Device ID: PCIVEN_1106&DEV_3432&SUBSYS_50071458&REV_034&1828E751&0&00E4
    Driver: C:Windowssystem32DRIVERSxhcdrv.sys, 6.01.7600.1902 (English), 1/20/2012 14:39:04, 254464 bytes
    Driver: C:Windowssystem32WdfCoInstaller01009.dll, 1.09.7600.16385 (English), 7/15/2009 07:21:12, 1721576 bytes

    Name: Intel(R) Management Engine Interface
    Device ID: PCIVEN_8086&DEV_1E3A&SUBSYS_1C3A1458&REV_043&11583659&0&B0
    Driver: C:Windowssystem32DRIVERSHECIx64.sys, 8.01.0000.1263 (English), 7/17/2012 17:12:08, 62784 bytes

    Name: Intel(R) 7 Series/C216 Chipset Family PCI Express Root Port 5 — 1E18
    Device ID: PCIVEN_8086&DEV_1E18&SUBSYS_50011458&REV_C43&11583659&0&E4
    Driver: C:Windowssystem32DRIVERSpci.sys, 6.01.7601.17514 (English), 11/20/2010 23:33:48, 184704 bytes

    Name: Intel(R) USB 3.0 eXtensible Host Controller
    Device ID: PCIVEN_8086&DEV_1E31&SUBSYS_50071458&REV_043&11583659&0&A0
    Driver: C:Windowssystem32DRIVERSiusb3xhc.sys, 1.00.0003.0214 (English), 1/27/2012 19:39:33, 787736 bytes

    Name: Intel(R) 7 Series/C216 Chipset Family PCI Express Root Port 1 — 1E10
    Device ID: PCIVEN_8086&DEV_1E10&SUBSYS_50011458&REV_C43&11583659&0&E0
    Driver: C:Windowssystem32DRIVERSpci.sys, 6.01.7601.17514 (English), 11/20/2010 23:33:48, 184704 bytes

    Name: NVIDIA GeForce GTX 650 Ti
    Device ID: PCIVEN_10DE&DEV_11C6&SUBSYS_35541458&REV_A14&B77C4C1&0&0008
    Driver: C:Program FilesNVIDIA CorporationDrsdbInstaller.exe, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 234272 bytes
    Driver: C:Program FilesNVIDIA CorporationDrsnvdrsdb.bin, 3/15/2013 15:53:06, 1110984 bytes
    Driver: C:WindowsSystem32DriverStoreFileRepositorynv_disp.inf_amd64_neutral_d12266e1bc69428bNvCplSetupEng.exe, 1.00.0001.0000 (English), 3/15/2013 15:53:06, 32077128 bytes
    Driver: C:Program Files (x86)NVIDIA CorporationcoprocmanagerNvd3d9wrap.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 286536 bytes
    Driver: C:Program Files (x86)NVIDIA Corporationcoprocmanagerdetoured.dll, 2/25/2013 23:32:42, 4096 bytes
    Driver: C:Program Files (x86)NVIDIA Corporationcoprocmanagernvdxgiwrap.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 193336 bytes
    Driver: C:Program FilesNVIDIA CorporationcoprocmanagerNvd3d9wrapx.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 327248 bytes
    Driver: C:Program FilesNVIDIA Corporationcoprocmanagerdetoured.dll, 2/25/2013 23:32:36, 4096 bytes
    Driver: C:Program FilesNVIDIA Corporationcoprocmanagernvdxgiwrapx.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 228880 bytes
    Driver: C:Program FilesNVIDIA Corporationlicense.txt, 2/25/2013 23:32:08, 21898 bytes
    Driver: C:Program FilesNVIDIA CorporationNVSMIMCU.exe, 1.00.4647.21994 (English), 3/15/2013 15:53:06, 1562400 bytes
    Driver: C:Program FilesNVIDIA CorporationNVSMInvdebugdump.exe, 3/15/2013 15:53:06, 223008 bytes
    Driver: C:Program FilesNVIDIA CorporationNVSMInvidia-smi.1.pdf, 3/15/2013 15:53:06, 40574 bytes
    Driver: C:Program FilesNVIDIA CorporationNVSMInvidia-smi.exe, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 241440 bytes
    Driver: C:Program FilesNVIDIA CorporationNVSMInvml.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 428320 bytes
    Driver: C:Program FilesNVIDIA CorporationOpenCLOpenCL.dll, 1.00.0000.0000 (English), 3/15/2013 15:53:06, 53024 bytes
    Driver: C:Program FilesNVIDIA CorporationOpenCLOpenCL64.dll, 1.00.0000.0000 (English), 3/15/2013 15:53:06, 61216 bytes
    Driver: C:Windowssystem32DRIVERSnvlddmkm.sys, 9.18.0013.1422 (English), 3/15/2013 15:53:06, 11048736 bytes
    Driver: C:Windowssystem32nvEncodeAPI64.dll, 6.14.0013.1422 (English), 3/15/2013 15:53:06, 420128 bytes
    Driver: C:Windowssystem32nvapi64.dll, 9.18.0013.1422 (English), 3/15/2013 15:53:06, 2864144 bytes
    Driver: C:Windowssystem32nvcompiler.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 25256736 bytes
    Driver: C:Windowssystem32nvcuda.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 9414456 bytes
    Driver: C:Windowssystem32nvcuvenc.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 2355488 bytes
    Driver: C:Windowssystem32nvcuvid.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 2913056 bytes
    Driver: C:Windowssystem32nvd3dumx.dll, 9.18.0013.1422 (English), 3/15/2013 15:53:06, 17990800 bytes
    Driver: C:Windowssystem32nvinfo.pb, 3/15/2013 15:53:06, 17738 bytes
    Driver: C:Windowssystem32nvinitx.dll, 9.18.0013.1422 (English), 3/15/2013 15:53:06, 250504 bytes
    Driver: C:Windowssystem32nvoglv64.dll, 9.18.0013.1422 (English), 3/15/2013 15:53:06, 26956576 bytes
    Driver: C:Windowssystem32nvopencl.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 7573816 bytes
    Driver: C:Windowssystem32nvumdshimx.dll, 9.18.0013.1422 (English), 3/15/2013 15:53:06, 1118776 bytes
    Driver: C:Windowssystem32nvwgf2umx.dll, 9.18.0013.1422 (English), 3/15/2013 15:53:06, 15508512 bytes
    Driver: C:WindowsSysWow64nvEncodeAPI.dll, 6.14.0013.1422 (English), 3/15/2013 15:53:06, 364832 bytes
    Driver: C:WindowsSysWow64nvapi.dll, 9.18.0013.1422 (English), 3/15/2013 15:53:06, 2539128 bytes
    Driver: C:WindowsSysWow64nvcompiler.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 17560352 bytes
    Driver: C:WindowsSysWow64nvcuda.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 7959000 bytes
    Driver: C:WindowsSysWow64nvcuvenc.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 1995552 bytes
    Driver: C:WindowsSysWow64nvcuvid.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 2728736 bytes
    Driver: C:WindowsSysWow64nvd3dum.dll, 9.18.0013.1422 (English), 3/15/2013 15:53:06, 15042928 bytes
    Driver: C:WindowsSysWow64nvinit.dll, 9.18.0013.1422 (English), 3/15/2013 15:53:06, 205184 bytes
    Driver: C:WindowsSysWow64nvoglv32.dll, 9.18.0013.1422 (English), 3/15/2013 15:53:06, 20542752 bytes
    Driver: C:WindowsSysWow64nvopencl.dll, 8.17.0013.1422 (English), 3/15/2013 15:53:06, 6271872 bytes
    Driver: C:WindowsSysWow64nvumdshim.dll, 9.18.0013.1422 (English), 3/15/2013 15:53:06, 968408 bytes
    Driver: C:WindowsSysWow64nvwgf2um.dll, 9.18.0013.1422 (English), 3/15/2013 15:53:06, 13088000 bytes
    Driver: C:Windowssystem32nvdispco6431422.dll, 2.00.0029.0004 (English), 3/15/2013 15:53:06, 1807136 bytes
    Driver: C:Windowssystem32nvdispgenco6431422.dll, 2.00.0016.0002 (English), 3/15/2013 15:53:06, 1510176 bytes

    Name: Intel(R) 7 Series/C216 Chipset Family USB Enhanced Host Controller — 1E2D
    Device ID: PCIVEN_8086&DEV_1E2D&SUBSYS_50061458&REV_043&11583659&0&D0
    Driver: C:Windowssystem32driversusbehci.sys, 6.01.7601.17586 (English), 3/25/2011 13:29:04, 52736 bytes
    Driver: C:Windowssystem32driversusbport.sys, 6.01.7601.17586 (English), 3/25/2011 13:29:14, 325120 bytes
    Driver: C:Windowssystem32driversusbhub.sys, 6.01.7601.17586 (English), 3/25/2011 13:29:26, 343040 bytes

    Name: Intel(R) 7 Series/C216 Chipset Family SATA AHCI Controller
    Device ID: PCIVEN_8086&DEV_1E02&SUBSYS_B0051458&REV_043&11583659&0&FA
    Driver: C:Windowssystem32DRIVERSiaStor.sys, 11.00.0000.1032 (English), 11/29/2011 18:40:32, 568600 bytes

    Name: High Definition Audio Controller
    Device ID: PCIVEN_10DE&DEV_0E0B&SUBSYS_35541458&REV_A14&B77C4C1&0&0108
    Driver: C:Windowssystem32DRIVERShdaudbus.sys, 6.01.7601.17514 (English), 11/20/2010 20:43:43, 122368 bytes

    ——————
    DirectShow Filters
    ——————

    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7601.17514
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7601.17514
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.17713
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.17514
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.17713
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.17528
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.17713
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.17528
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7601.17514
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.17713
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
    Video Mixing Renderer 9,0×00200000,1,0,quartz.dll,6.06.7601.17713
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17514
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Line 21 Decoder,0x00600000,1,1,,
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.17713
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
    Sony Wave Hammer Surround,0x00200000,1,1,mchammer_x64.dll,1.01.0000.2384
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.17514
    File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.17713
    Overlay Mixer2,0x00200000,1,1,,
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7601.17514
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
    Dxtory Video Decoder,0x00600001,1,1,DxtoryCodec64.dll,2.00.0000.0103
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.17514
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.17514
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7601.17514
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7601.17514
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7601.17514
    Overlay Mixer,0x00200000,0,0,,
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.17713
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7601.17528
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Line 21 Decoder 2,0×00600002,1,1,quartz.dll,6.06.7601.17713
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.17713
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.17713
    AudioRecorder WAV Dest,0x00200000,0,0,WavDest.dll,
    AudioRecorder Wave Form,0x00200000,0,0,WavDest.dll,
    SoundRecorder Null Renderer,0x00200000,0,0,WavDest.dll,
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.17514
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.17713
    Sony ExpressFX Chorus,0x00200000,1,1,sfxpfx2_x64.dll,1.01.0000.2384
    Sony ExpressFX Delay,0x00200000,1,1,sfxpfx2_x64.dll,1.01.0000.2384
    Sony ExpressFX Distortion,0x00200000,1,1,sfxpfx1_x64.dll,1.01.0000.2384
    Sony ExpressFX Equalization,0x00200000,1,1,sfxpfx2_x64.dll,1.01.0000.2384
    Sony ExpressFX Flange/Wah-Wah,0x00200000,1,1,sfxpfx1_x64.dll,1.01.0000.2384
    Sony ExpressFX Amplitude Modulation,0x00200000,1,1,sfxpfx2_x64.dll,1.01.0000.2384
    Sony ExpressFX Reverb,0x00200000,1,1,sfxpfx1_x64.dll,1.01.0000.2384
    Sony ExpressFX Stutter,0x00200000,1,1,sfxpfx1_x64.dll,1.01.0000.2384
    Sony ExpressFX Dynamics,0x00200000,1,1,sfxpfx3_x64.dll,1.01.0000.2384
    Sony ExpressFX Graphic EQ,0x00200000,1,1,sfxpfx3_x64.dll,1.01.0000.2384
    Sony ExpressFX Noise Gate,0x00200000,1,1,sfxpfx3_x64.dll,1.01.0000.2384
    Sony ExpressFX Time Stretch,0x00200000,1,1,sfxpfx3_x64.dll,1.01.0000.2384
    Sony ExpressFX Audio Restoration,0x00200000,1,1,xpvinyl_x64.dll,1.01.0000.2384
    Sony Multi-Band Dynamics,0x00200000,1,1,sfppack2_x64.dll,1.01.0000.2384
    Sony Track Compressor,0x00200000,1,1,sftrkfx1_x64.dll,1.01.0000.2384
    Sony Dither,0x00200000,1,1,sftrkfx1_x64.dll,1.01.0000.2384
    Sony Chorus,0x00200000,1,1,sfppack1_x64.dll,1.01.0000.2384
    Sony Distortion,0x00200000,1,1,sfppack3_x64.dll,1.01.0000.2384
    Sony Gapper/Snipper,0x00200000,1,1,sfppack3_x64.dll,1.01.0000.2384
    Sony Simple Delay,0x00200000,1,1,sfppack1_x64.dll,1.01.0000.2384
    Sony Reverb,0x00200000,1,1,sfppack1_x64.dll,1.01.0000.2384
    Sony Multi-Tap Delay,0x00200000,1,1,sfppack1_x64.dll,1.01.0000.2384
    Sony Track Noise Gate,0x00200000,1,1,sftrkfx1_x64.dll,1.01.0000.2384
    Sony Graphic EQ,0x00200000,1,1,sfppack2_x64.dll,1.01.0000.2384
    Sony Track EQ,0x00200000,1,1,sftrkfx1_x64.dll,1.01.0000.2384
    Sony Smooth/Enhance,0x00200000,1,1,sfppack3_x64.dll,1.01.0000.2384
    Sony Resonant Filter,0x00200000,1,1,sfresfilter_x64.dll,1.01.0000.2384
    Sony Parametric EQ,0x00200000,1,1,sfppack2_x64.dll,1.01.0000.2384
    Sony Time Stretch,0x00200000,1,1,sfppack1_x64.dll,1.01.0000.2384
    Sony Noise Gate,0x00200000,1,1,sfppack2_x64.dll,1.01.0000.2384
    Sony Paragraphic EQ,0x00200000,1,1,sfppack2_x64.dll,1.01.0000.2384
    Sony Vibrato,0x00200000,1,1,sfppack3_x64.dll,1.01.0000.2384
    Sony Pan,0x00200000,1,1,sffrgpnv_x64.dll,1.01.0000.2384
    Sony Pitch Shift,0x00200000,1,1,sfppack1_x64.dll,1.01.0000.2384
    Sony Volume,0x00200000,1,1,sffrgpnv_x64.dll,1.01.0000.2384
    Sony Flange/Wah-wah,0x00200000,1,1,sfppack3_x64.dll,1.01.0000.2384
    Sony Graphic Dynamics,0x00200000,1,1,sfppack2_x64.dll,1.01.0000.2384
    Sony Amplitude Modulation,0x00200000,1,1,sfppack3_x64.dll,1.01.0000.2384

    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.17713

    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    PCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    GSM 6.10,0×00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    MPEG Layer-3,0×00200000,1,1,quartz.dll,6.06.7601.17713

    Audio Capture Sources:
    Microphone (VIA High Definition,0x00200000,0,0,qcap.dll,6.06.7601.17514

    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7601.17528
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528

    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.17713

    WDM Streaming Capture Devices:
    VIA HD Audio Line In,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    VIA HD Audio Microphone,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    VIA HD Audio Stereo Mixer,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

    WDM Streaming Rendering Devices:
    HD Audio digital out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    HD Audio digital out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    VIA HD Audio Output,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7601.17514

    Video Capture Sources:
    Dxtory Video 1,0×00200000,0,0,DxtoryVideo64.dll,2.00.0000.0097
    Dxtory Video 2,0×00200000,0,0,DxtoryVideo64.dll,2.00.0000.0097
    Dxtory Video 3,0×00200000,0,0,DxtoryVideo64.dll,2.00.0000.0097
    Dxtory Video 4,0×00200000,0,0,DxtoryVideo64.dll,2.00.0000.0097

    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514

    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7601.17514

    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7601.17708
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7601.17708

    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514

    Audio Renderers:
    Speakers (VIA High Definition A,0x00200000,1,0,quartz.dll,6.06.7601.17713
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: SPDIF Interface (TX0) (VIA High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: SPDIF Interface (TX1) (VIA High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: Speakers (VIA High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17713
    SPDIF Interface (TX0) (VIA High,0x00200000,1,0,quartz.dll,6.06.7601.17713
    SPDIF Interface (TX1) (VIA High,0x00200000,1,0,quartz.dll,6.06.7601.17713

    —————
    EVR Power Information
    —————
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
    Quality Flags: 2576
    Enabled:
    Force throttling
    Allow half deinterlace
    Allow scaling
    Decode Power Usage: 100
    Balanced Flags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 50
    PowerFlags: 1424
    Enabled:
    Force throttling
    Allow batching
    Force half deinterlace
    Force scaling
    Decode Power Usage: 0


  • #33

    Apr 22, 2013


    Gunnishone


    • View User Profile


    • View Posts


    • Send Message



    View Gunnishone's Profile

    • The Meaning of Life, the Universe, and Everything.
    • Join Date:

      12/26/2012
    • Posts:

      54
    • Member Details

    I guess it has to be my computer but when I’m at my dad’s house I can go on servers without problems.

    As you said, would you be able to pass this onto some support guru’s? There are a lot of other people with the same problem as me.


  • #35

    Apr 25, 2013

    Hello Everyone,

    So basically when I join a server everything’s normal for about 10 seconds but then everyone around me stops moving and then after about 10 seconds I get the message ‘Connection Lost Internal exception: java.net.SocketTimeoutException: Read timed out.’ I’m on my brand new computer and this happens with every server I try to go on. I’ve tried re-installing java, re-installing Minecraft, Updating and Re-installing my graphics card drivers. Nothing seems to work.

    My computer specs are as follows:

    Intel i5 3570K, 8GB G.Skill RAM, GTX 650 Ti OC, SanDisk Extreme 120GB SSD, 1TB Seagate HDD, Gigabyte GA-Z77X-D3H, Corsair GS600 PSU

    This is a brand new custom computer and I can’t play because of this issue. Any help is appreciated :'(

    — Gunnishone

    I have been having this same problem, it started a couple of days ago. I play on the hunger games servers mcsg and i can play for about 5 min. on the server then i get kicked with this error showing up, i have deleted java and reinstalled, deleted minecraft and reinstalled, restarted my internet several times, checked the host location and everything looks fine, and i have disabled himachi nothing working so far :(

  • To post a comment, please login.
  • 1
  • 2
  • 3
  • 4
  • Next
  • |<<
  • <
  • >
  • >>|

Posts Quoted:

Reply

Clear All Quotes


Понравилась статья? Поделить с друзьями:
  • Как найти постоянную величину в физике формула
  • Как в контакте найти паблик
  • Как найти синус противоположного угла
  • Сухая кожа лица как исправить
  • Как найти массу выпавшего осадка химия