Transmit a byte wireless

Hello

I'm working on a major project and I'm using Labview 2010/2011 for ordering a mobile device which is controlled via the internet. WE are very good about it. My problem is that I can not understand how to transmit the data (which are only a 1-byte max) on my device. I have my program to work in series, but I'm not sure that how to convert to the WiFi of this aspect. If it helps or is considered we use an export of Lantronix. Can someone help me, give me suggestions, advice or explain to me how to build the "WiFi" of the program part?

Thank you

Andrew


Tags: NI Software

Similar Questions

  • SD CARD READER DOESN'T WORK?

    I have a HP Probook 4520 s OS Windows 7 Pro. It has a slot for a card reader on the front of the laptop but when I insert the memory card from my camera Kodak EasyShare (LEXAR Media 64 MB) nothing happens. Options no Autoplay, nothing shown when I select "computor", search for devices, etc., ziltch. Am I able to use this card in the machine? Previously, in my last laptop, I had to insert the card into my 4 in 1 printer and transmit the photos wirelessly. Also, I have a usb connection for my camera but trying for the easy fast way. Is this possible?

    Your help would be appreciated.

    Thank you, Toni.

    Hi Aaron,

    I solved my problem with the SD card reader. I received my neighbouring camera SD card and it worked the first time. My laptop installed a driver and AutoPlay popped up on the right. After that when I insert my card it is now works fine. Hope this might help someone else who had the same problem. Thanks for your comments.

    Kind regards

    Toni.

  • Compress and decompress data using GZip

    Hello

    I compress and decompress data on Blackberry 8100 device using the GZip algorithm.

    I use following code:

    try {           GZIPOutputStream gCompress = null;          try {               ByteArrayOutputStream compressByte = new ByteArrayOutputStream();               gCompress = new GZIPOutputStream(compressByte,9);               gCompress.write(inputstring.getBytes());                                                //gCompress.flush();                compressedBytes = compressByte.toByteArray();               System.out.println("compressedBytes : "                     + new String(compressedBytes));             compressedString = new String(compressedBytes);                         } catch (IOException ex) {              ex.printStackTrace();           }       } catch (Exception e) {         e.printStackTrace();        }
    

    The server is unable to decompress data.

    Help, please.

    Thank you very much.

    I think you do a byte to the conversion of the string which you should not do and which may be screwing up your data.  The output of compression is not likely to be easily represented by Unicode characters and you want to transmit the bytes, so I think that is not necessary.

    This is a reformulated version of the sample in the API, which seems inaccurate, in any case: give it a try and remember that you can send the bytes, not characters.

    public static byte[] compress( byte[] data ) {
        try {
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            GZIPOutputStream gzipStream = new GZIPOutputStream( baos,
                                                                GZIPOutputStream.COMPRESSION_BEST,
                                                                GZIPOutputStream.MAX_LOG2_WINDOW_LENGTH );
            gzipStream.write( data );
            gzipStream.close();
            return baos.toByteArray();
        }
        catch(IOException ioe) {
            return null;
        }
    }
    
  • javax.crypto.BadPaddingException: data must begin with zero

    Here's my problem, I have a java card containing a public and private key. I'm trying to extract the public key from the card, so the first thing I do is to get the module and the exponent of the map and regenerate a public key with her. Then I try to decipher an array of bytes previously encrypted and I get data must begin with error to zero. Here's the part of my code that does this job
    cmdApdu = new CommandAPDU(commande2);
              r = channel.transmit(cmdApdu);
              byte[] temp = r.getData();
              byte[] modulus = Arrays.copyOfRange(temp, 3, temp.length);
              byte[] publicExponent = Arrays.copyOfRange(temp, 0, 3);
              
              byte[] modulus2 = new byte[65];
              modulus2[0] = (byte)0x00;
              for(int i = 1 ; i <= modulus.length; i++){
                   modulus2[i] = modulus[i-1];
              }
              
              RSAPublicKeySpec spec = new RSAPublicKeySpec(new BigInteger(modulus2), new BigInteger(publicExponent));
              
              KeyFactory kf = KeyFactory.getInstance("RSA");
              
              Key pubKey = kf.generatePublic(spec);
              System.out.println(pubKey.toString());
              
              Cipher cipher = Cipher.getInstance("RSA");
              
              cipher.init(Cipher.DECRYPT_MODE, pubKey);
              
              byte[] encrypted = {(byte)0x8E, (byte)0x44, (byte)0x6E, (byte)0x42, (byte)0xF1, 
                        (byte)0xB7, (byte)0x0B, (byte)0x12, (byte)0x38, (byte)0x75, (byte)0x3A, 
                        (byte)0x50, (byte)0x3E, (byte)0x84, (byte)0x02, (byte)0x88, (byte)0xBC, 
                        (byte)0x0B, (byte)0x7A, (byte)0xFF, (byte)0x2F, (byte)0x39, (byte)0xE8, 
                        (byte)0x64, (byte)0xA4, (byte)0x3E, (byte)0x44, (byte)0x35, (byte)0x16, 
                        (byte)0xB1, (byte)0x16, (byte)0x49, (byte)0xDE, (byte)0xF9, (byte)0x73, 
                        (byte)0xFF, (byte)0x96, (byte)0x07, (byte)0x65, (byte)0xF0, (byte)0x4B, 
                        (byte)0xA8, (byte)0x7C, (byte)0x26, (byte)0xB6, (byte)0xBE, (byte)0xA5, 
                        (byte)0x90, (byte)0xBC, (byte)0xBC, (byte)0xD1, (byte)0x2C, (byte)0xF8, 
                        (byte)0x7B, (byte)0x11, (byte)0x6E, (byte)0x87, (byte)0xD4, (byte)0x97, 
                        (byte)0x04, (byte)0x96, (byte)0xA5, (byte)0x2E, (byte)0x11};
              byte[] decrypted = cipher.doFinal(encrypted);
    On my card, it's a RSA_CRT algorithm, does this creat any problem?
    I added a 0 x 00 at the beggening of the module because that feels a bit 511 key because it is negative or something, it's ok to do? (It was a previous bug I had and got this solution on the forum BadPaddingException problem )
    The key on my card must be a 2048 bit size key but my pubKey.tostring () tells me that.
    Public key RSA Sun, 512-bit. What's normal?

    Thx for your help cheers!

    Published by: FrancisOL on March 19, 2012 10:15

    Published by: sabre150 on March 19, 2012 17:20

    Moderator action: adding the tags [code] to make the code readable.

    Sorry, I can't help. The values you have posted are inconsistent and you haven't posted the public exponent key...

  • bitmapData.draw (SecurityError): security sandbox violation

    I'm loading and playing a local video file with appendBytes() and when I call a bitmapData.draw function)

    below the exception comes up.

    SecurityError: Error #2123: security sandbox violation: BitmapData.draw

    cannot access to null. Access granted to any policy files.

    What should I do? ....

    Mr President, I have already mentioned in my last post, I test with the two relative and absolute.

    Yes, I related paths khow works very well when I do something like this

    bitmap. Draw works very well in above case, but my scenario is different I load a complete video as a bytearray before play and play the video of this bytes

    private void fileLoaderComplete(event:Event):void

    {

    Transmit the bytes loaded to drive

    drive. AddVideo (urlLoader.data);

    }

    It is to add video function in Player.mxml

    public void AddVideo(VideobyteArray:ByteArray):void

    {

    if(NS == null)

    {

    var nc:NetConnection = new NetConnection();

    NC. Connect (null);

    NS = new NetStream (nc);

    ns.checkPolicyFile = true;

    ns.soundTransform = new SoundTransform (0.0);

    NS.client = this;

    ns.addEventListener (NetStatusEvent.NET_STATUS, nsStatus);

    }

    videodata = VideobyteArray;

    GetTags (videoData);

    NS. Play (null);

    ns.appendBytesAction (NetStreamAppendBytesAction.RESET_BEGIN);

    ns.appendBytes (VideobyteArray);

    video.attachNetStream (ns);

    playBar.TogglePlay (true);

    }

    I think it's a bug in flash sdk 4.6 (Flash Player 11)

    bitmap. Draw function is somehow in conflict with the appendBytesAction or appendBytes

    This question is posted on the forum of ActionScript 3.0 front

    http://forums.Adobe.com/message/4650890#4650890

    JM.html http://Flash.bigresource.com/flash-use-BitmapData-Draw-with-NetStream-AppendBytes--iTNz6LV

    pendbytes http://StackOverflow.com/questions/5607047/How-can-i-use-BitmapData-Draw-with-NetStream-AP

  • best method to transmit the PPM (servo control) in series-wireless transmitter? (how to combine binary + whole in a single series byte)

    I'm pulling my hair out here... I hope someone can help to guide me in the right direction.  I'm just learning binary and hex, so please forgive me (and correct me!) if I say something wrong.  I have to give credit when it is deserved, because I use info from a post on theautochannel.com to drive this development.

    I try to control a small indoor RC helicopter using LabVIEW and a USB joystick.  I communicate with a transmitter wireless via rs232 (TTL converted), the Protocol is 125000, 8n1. Each image is 14 bytes 2 bytes of header.  I would like to transmit data PPM (pulse position modulation) which is actually just a 10bits (1024 possible measures) range that dictates the position of the servo, for each channel.

    Byte 3 & 4 are channel 1, byte 5 and 6 are channels 2, 7 & 8 CH 3,... and so on until the bytes 13 & 14 which is CH 6.

    Each pair of bytes begins with "00" (binary).

    Byte 3 & 4 should look like "00 00 00 xx xx xx xx xx", where the first "00" is the header, then "00 00" is the identifier of the servo, and 'xx xx xx xx xx' represents the position of the servo. The identifier is actually integrated in the position of the servo, the bits serve a double purpose.

    That's why it all will look like this:

    CH 01:00 00 00 xx xx xx xx xx (position has a valid range from 0 - 1023)

    CH 02:00 00 01 xx xx xx xx xx (range 1024-2047)

    CH 03:00 00 10 xx xx xx xx xx (range 2048-3071)

    etc... If you convert the binary range, you can see how the second half of the bits ID servo are provided by the range of servo.

    I intend by entry VISA to send every byte to constitute the entire frame, and then I will pause ~ 10ms between frames. However, my question is how the hell should I code this? !!  I think I need to write, take 1 CH for example, bytes 3 and 4 together into a string and then split them back hand to be sent as two distinct bytes.  However, I do not know how to mix my header and the first two bits of my ID servo, which is binary '00 xx', with my servo position (which I know I can write in decimal form, as entry VISA will convert it in binary). Any thoughts on the best way to do so, given all this?

    An empty string character likens to a binary "0"?

    Has totally confused everyone?  I really hope not, but I'm pretty tired so let me know if I need to simplify my question.  I hope someone can enlighten me as to the best way to combine the binary constant w modification of decimals (or hex).  And if anyone has thoughts about a good way to organize my vi together, I understand that too!  Right now I'll just use the structures of sequence... I post my code but at the moment, there is not much to look at

    Thank you very much!!

    No, you do not confuse everyone, but I think you might have confused yourself.

    You basically need to do is to create the array of bytes that will be sent, and then use the array of bytes to a string, so you can send it to the serial port. The creation of the byte array can be done in several ways. You deal with 6 16-bit numbers, of which the lower 10 bits are the values of the position of the servo. I don't know what you want on the front panel to look like, but if you have 6 separate (one for each servo) controls with each set having a range of 0 to 1023 (for 10-bit), then you just have to OR each value based on the number of servo. Put all this in a table, add the bytes of the header and the array of bytes to a string allows to get a string that you can send via the serial port. You can also do this in a loop. Joined a VI to show the two concepts. You have not indicated what version of LabVIEW, is 8.2 you use.

  • Portege M750 Win7 64 bit Wireless Manager (3G) will not work

    I can't TOSHIBA Wireless Manager (3G) to work in a new installation of Win 7 64 bit.

    I did a test installation of Windows 7 64 - bit on and old SATA hard drive and checked TOSHIBA Wireless Manager would work. He did.

    I then did a fresh install of Windows 7 64 - bit on a new Crucial C300 Real SSD 256Go.

    The new facility with the Crucial SSD is not very successful... The operation "stop and restart" does not - the closing not always power off completely and you must push the switch down to.

    Sometimes the SSD does not start - you enter the password of the BIOS but then nothing happens. Sometimes you turn off the power and remove the battery before as the startup disk.

    But the biggest problem is that the (3G) Wireless Manager will not work. The application opens and indicates that "died" - which it is impossible that I use WiFi to post this question.

    I tried to install the software Vodafone 3 G portal. It detects the presence of the 'mobile device' (SIM in housing) but then can not turn it on.

    I downloaded and installed all the latest drivers for the chip, the pilot 3G, 3G software, LAN driver, LAN software and all updates of Windows 7.

    I have the latest version of the BIOS (3.0) but this has not been updated by Toshiba since 11/04/09.

    I would point out that Diagnostic PC Toshiba tool does not recognize the installed 8 GB memory (but ccleaner):

    Model name PORTEGE M750
    Part number PPM75E-00N017EN
    Version of the OS Microsoft Windows 7 Home Premium 6.1.7600
    Version of the BIOS Version 3.00
    Processor Intel (r) Core (TM) 2 Duo CPU P8400 2.26 GHz
    Physical memory 4096 MB RAM
    Disk capacity hard 256,052,899,840 [bytes] 238.468 [GB]
    Network Intel(r) 82567LM Gigabit Network Connection = 10.0.2.2 version = MAC address
    TOSHIBA F3507g Mobile Broadband Network Adapter version 1.3.0.9 = MAC = address
    Version of Intel(r) WiFi Link 5100 AGN = 13.4.0.9 = MAC address
    F3507g Mobile Broadband Modem Modem TOSHIBA version = 5.24.3.0
    Internet Explorer 8.0.7600.16385

    This indicates a BIOS problem?

    -don't

    points to a problem of firmware on the SSD drive (is it sandforce) torque to the incompatibility of BIOS of the SSD.

    I assume that all drivers installed etc were identical on the installation of the trial of HARD drive? so if this is the case it must be the SSD does not not with the BIOS correctly, so the other issues as well

  • TECRA R850 - not found wireless network controller driver

    Hello

    I reinstalled my computer, since then it does not recognize a wireless or network device
    here - after part of the result of the Toshiba Diagnostics tool
    Device Manager indicates that:
    "The drivers for this device are not installed. (Code 28)
    There is no driver selected for the item or a set of device information.
    To find a driver for this device, click Update driver.
    "

    However I can't find the driver, after update of Windows updates, etc.

    Help, please!

    Thank you
    lavver

    Date of 2013/03/15 22:55:35

    [Information on PC]
    Model name TECRA R850
    Part number PT524E-005014BT
    Serial number 4B021792H
    Version of the OS Microsoft Windows 7 Professional 6.1.7600
    Version of the BIOS Version 3.60
    CPU Intel Core i5 - 2410M 2.30 GHz CPU
    Memory8192MB physical RAM
    Hard drive Capacity304, 562, 036, 736 [bytes] 283.646 [GB]
    Hard drive space free Capacity126, 578, 688, 000 [bytes] 117.886 [GB]
    Video version Intel(r) HD Graphics Family = 8.15.10.2291
    Resolution1366 x 768 Pixels screen
    Color quality, true color (32 bit)
    Audio version of Realtek High Definition Audio = 6.0.1.6271
    Display Audio Intel (r) version = 6.14.0.3074
    Network version Intel Gigabit Network Connection = 12.2.45.0 82579V = E8:9 D MAC address: 87:EA:3 C: 21
    HUAWEI Mobile Connect - 3G version of the network card = 6, 0, 1, 279 MAC address = 00:1E:10:1F:82:A7
    Modem HUAWEI Mobile Connect - 3 G Modem version = 2.0.6.706
    Internet Explorer9.0.8112.16421
    IDE Device Hitachi HTS723232A7A364
    CARPET * A DVD-RAM UJ8A2AS = 1.00 FW version

    [Diagnostics results]
    CPU TEST DOES PASS
    MEMORY TEST DID PASS
    Enhanced Host Controller - 1C2D)
    Enhanced Host Controller - 1 26)

    i.LINK TEST IS NOT FOUND

    Your Tecra a card ATHEROS 802.11 (B/G/N) WB195-HMC w / BT WLAN inside and all the latest drivers you can find on the Toshiba WLAN portal - http://aps2.toshiba-tro.de/wlan/

    Check it out please.

    This is card with BT, then before you install install driver WLAN BT filter. You can find it on the download page of Toshiba - http://www.toshiba.eu/innovation/download_drivers_bios.jsp

  • What is Wireless LAN?

    Everyone talks about WLAN. What is Wireless LAN? All machines have it? Can I get?

    It is a flexible data communication system. LAN is the acronym for network Local and a wireless uses rather than physical high frequency radio waves to communicate and transmit data among the nodes.

  • HP Pavilion dv6-1375dx: limited connectivity (not), wired or wireless HP Pavilion dv6-1375dx

    Without internet (metered) either wired or wireless using HP Pavilion dv6-1375dx.  Cables and other wireless devices work fine on a home network/router.

    Found some flags on the NIC in "Device Manager" but uninstalled and reinstalled and flags went.  All devices report now works without error.

    Have tried to start in safe mode with network (without help).

    Uninstalled the software Bitdefender Total Security 2016: malware, spyware, firewall, antivirus (without help).

    Turn on the Windows Firewall WILL NOT!

    Emptying the cache TCP/IP (without help).

    Have tried msconfig (to eliminate any startup) and the minimal system of windows (without help).

    Tried to update device drivers by downloading from another PC and copy the files (no help, even pilot).

    Tried several fixes to 'Register' solutions (without help).

    Scanned with several "fix connection" or adware/spyware/malware programs (without help).

    Have tried all the above several times, so please do not contact me to "try again".  If your idea is not new, it won't help.

    I am subject to the point that I believe that the network card is bad, even if it makes good.

    SOMEONE PLEASE HELP BEFORE THAT THIS CELL PHONE FELL INTO THE ATLANTIC OCEAN!

    MiniToolBox exports as shown below.

    MiniToolBox by Farbar Version: 17/06/2016
    Ran by the user (Administrator) 30/08/2016 at 15:30:06
    From the 'C:\Users\User\Downloads '.
    Microsoft Windows 7 Home Premium Service Pack 1 (X 64)
    Model: manufacturer:
    Boot Mode: Normal
    ***************************************************************************

    ========================= Flush DNS: ===================================

    Windows IP configuration

    With success, emptied the Cache of DNS resolution.

    ========================= IE Proxy Settings: ==============================

    Proxy is not enabled.
    No Proxy Server is defined.

    'Reset Proxy of IE settings': Reset Proxy of Internet Explorer.

    ========================= FF Proxy Settings: ==============================

    'network.proxy.no_proxies_on', ' * .local ".
    "network.proxy.type", 0

    'Reset the Proxy FF settings': Reset Proxy in Firefox.

    ========================= Hosts content: =================================
    ========================= IP Configuration: ================================

    Intel(r) WiFi Link 1000 BGN = wireless network connection (connected)

    # ----------------------------------
    # IPv4 Configuration
    # ----------------------------------
    pushd interface ipv4

    reset

    popd
    # End of IPv4 configuration

    Windows IP configuration

    Name of the host...:
    Primary Dns suffix...:
    Node... type: hybrid
    Active... IP routing: No.
    Active... proxy WINS: No.

    Wireless network connection Wireless LAN adapter:

    The connection-specific DNS suffix. :
    ... Description: Intel(r) WiFi Link 1000 BGN
    Physical address.... : 00-1E-64-58-20-9A
    DHCP active...: Yes
    Autoconfiguration enabled...: Yes
    Address IPv6 local link...: fe80::440d:c0dc:173e:ff04% 36 (Preferred)
    Autoconfiguration IPv4 address. . : 169.254.255.4 (Preferred)
    ... Subnet mask: 255.255.0.0.
    ... Default gateway. :
    DNS servers: fec0:0:0:ffff:1 1%
    FEC0:0:0:FFFF:2 1%
    FEC0:0:0:FFFF:3 1%
    NetBIOS over TCP/IP...: enabled
    Server: unknown
    Address: fec0:0:0:ffff:1

    Ping request could not find host google.com. Please check the name and try again.
    Server: unknown
    Address: fec0:0:0:ffff:1

    Ping request could not find host yahoo.com. Please check the name and try again.

    Ping 127.0.0.1 with 32 bytes of data:
    Reply from 127.0.0.1: bytes = 32 time < 1 ms TTL = 128
    Reply from 127.0.0.1: bytes = 32 time < 1 ms TTL = 128

    Ping statistics for 127.0.0.1:
    Packets: Sent = 2, received = 2, lost = 0 (0% loss),
    Time approximate round trip in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, average = 0ms
    ===========================================================================
    List of the interface
    36... 1e 00 64 58 20 9A... Intel(r) WiFi Link 1000 BGN
    1... software Loopback Interface 1
    ===========================================================================

    IPv4 routing table
    ===========================================================================
    Active routes:
    Network Destination gateway metric Interface subnet mask
    127.0.0.0 255.0.0.0 127.0.0.1 on route 306
    127.0.0.1 255.255.255.255 127.0.0.1 on route 306
    127.255.255.255 255.255.255.255 on-link 127.0.0.1 306
    169.254.0.0 255.255.0.0 on a 169.254.255.4 route 281
    169.254.255.4 255.255.255.255 on a 169.254.255.4 route 281
    169.254.255.255 255.255.255.255 on a 169.254.255.4 route 281
    224.0.0.0 240.0.0.0 on-link 127.0.0.1 306
    224.0.0.0 240.0.0.0 on a 169.254.255.4 route 281
    255.255.255.255 255.255.255.255 on-link 127.0.0.1 306
    255.255.255.255 255.255.255.255 on a 169.254.255.4 route 281
    ===========================================================================
    Persistent routes:
    None

    IPv6 routing table
    ===========================================================================
    Active routes:
    If metric network Destination Gateway
    1 306: 1/128 liaison
    36 281 fe80: / 64 On-link
    FE80::440d:c0dc:173e:ff04 36 281 / 128
    Over a link
    1 306 ff00: / 8 On-link
    36 281 ff00: / 8 On-link
    ===========================================================================
    Persistent routes:
    None
    ========================= Winsock entries =====================================

    Catalog5 01 C:\Windows\SysWOW64\NLAapi.dll [52224] (Microsoft Corporation)
    Catalog5 C:\Windows\SysWOW64\napinsp.dll 02 [52224] (Microsoft Corporation)
    Catalog5 C:\Windows\SysWOW64\pnrpnsp.dll 03 [65024] (Microsoft Corporation)
    Catalog5 C:\Windows\SysWOW64\pnrpnsp.dll 04 [65024] (Microsoft Corporation)
    Catalog5 C:\Windows\SysWOW64\mswsock.dll 05 [231424] (Microsoft Corporation)
    Catalog5 C:\Windows\SysWOW64\winrnr.dll 06 [20992] (Microsoft Corporation)
    Catalog5 07 C:\Program Files (x86)\Bonjour\mdnsNSP.dll [121704] (Apple Inc.))
    Catalog9 01 C:\Windows\SysWOW64\mswsock.dll [231424] (Microsoft Corporation)
    Catalog9 C:\Windows\SysWOW64\mswsock.dll 02 [231424] (Microsoft Corporation)
    Catalog9 03 C:\Windows\SysWOW64\mswsock.dll [231424] (Microsoft Corporation)
    Catalog9 C:\Windows\SysWOW64\mswsock.dll 04 [231424] (Microsoft Corporation)
    Catalog9 C:\Windows\SysWOW64\mswsock.dll 05 [231424] (Microsoft Corporation)
    Catalog9 C:\Windows\SysWOW64\mswsock.dll 06 [231424] (Microsoft Corporation)
    Catalog9 07 C:\Windows\SysWOW64\mswsock.dll [231424] (Microsoft Corporation)
    Catalog9 08 C:\Windows\SysWOW64\mswsock.dll [231424] (Microsoft Corporation)
    Catalog9 09 C:\Windows\SysWOW64\mswsock.dll [231424] (Microsoft Corporation)
    Catalog9 10 C:\Windows\SysWOW64\mswsock.dll [231424] (Microsoft Corporation)
    x 64-Catalog5 01 C:\Windows\System32\NLAapi.dll [70656] (Microsoft Corporation)
    x 64-Catalog5 02 C:\Windows\System32\napinsp.dll [68096] (Microsoft Corporation)
    x 64-Catalog5 03 C:\Windows\System32\pnrpnsp.dll [86016] (Microsoft Corporation)
    x 64-Catalog5 04 C:\Windows\System32\pnrpnsp.dll [86016] (Microsoft Corporation)
    x 64-Catalog5 05 C:\Windows\System32\mswsock.dll [327168] (Microsoft Corporation)
    C:\Windows\System32\winrnr.dll x 64-Catalog5 06 [28672] (Microsoft Corporation)
    x 64-Catalog5 07 C:\Program Files\Bonjour\mdnsNSP.dll [132968] (Apple Inc.)
    01 x 64-Catalog9 C:\Windows\System32\mswsock.dll [327168] (Microsoft Corporation)
    x 64-Catalog9 02 C:\Windows\System32\mswsock.dll [327168] (Microsoft Corporation)
    x 64-Catalog9 03 C:\Windows\System32\mswsock.dll [327168] (Microsoft Corporation)
    x 64-Catalog9 04 C:\Windows\System32\mswsock.dll [327168] (Microsoft Corporation)
    x 64-Catalog9 05 C:\Windows\System32\mswsock.dll [327168] (Microsoft Corporation)
    06 x 64-Catalog9 C:\Windows\System32\mswsock.dll [327168] (Microsoft Corporation)
    x 64-Catalog9 07 C:\Windows\System32\mswsock.dll [327168] (Microsoft Corporation)
    x 64-Catalog9 08 C:\Windows\System32\mswsock.dll [327168] (Microsoft Corporation)
    x 64-Catalog9 09 C:\Windows\System32\mswsock.dll [327168] (Microsoft Corporation)
    x 64-Catalog9 10 C:\Windows\System32\mswsock.dll [327168] (Microsoft Corporation)

    ========================= Event log errors: ===============================

    Application errors:
    ==================
    Error: (30/08/2016 15:28:06) (Source: MSSQL$ MSSMLBIZ) (user :)
    Description: SQL Server could not reproduce FRunCM thread. Check the SQL Server error log and the event logs Windows for more information on related issues possible.

    Error: (30/08/2016 15:28:06) (Source: MSSQL$ MSSMLBIZ) (user :)
    Description: Could not start the library network because of an internal error in the network library. To determine the cause, review the errors before this one in the error log.

    Error: (30/08/2016 15:28:06) (Source: MSSQL$ MSSMLBIZ) (user :)
    Description: Failure of TDSSNIClient initialization with error 0 x 2, status code 0x1. Reason: Initialization failed with an infrastructure error. Search for previous errors. The system cannot find the specified file.

    Error: (30/08/2016 15:28:06) (Source: MSSQL$ MSSMLBIZ) (user :)
    Description: Failure of TDSSNIClient initialization with error 0 x 2, status code 0x80. Reason: Failed to initialize SSL support. The system cannot find the specified file.

    Error: (30/08/2016 15:28:06) (Source: MSSQL$ MSSMLBIZ) (user :)
    Description: Failed to determine the FQDN of the computer name when initializing the SSL support. This may indicate a problem with the network configuration of the computer. Error: 0 x 2.

    Error: (30/08/2016 15:27:36) (Source: VSS) (user :)
    Description: Volume Shadow Copy Service error: unexpected error calling routine RegOpenKeyExW(-2147483646,SYSTEM\CurrentControlSet\Services\VSS\Diag,...).  HR = 0 x 80070005 access is denied.
    .

    Operation:
    The initialization of the Writer

    Context:
    Writer class ID: {e8132975-6f93-4464-a53e-1050253ae220}
    Author name: System Writer
    Writer Instance ID: {670d2486-eb31-442b-944c-3739c39e7673}

    Error: (30/08/2016 15:27:32) (Source: Appendix) (user :)
    Description: Calendar error: 0Initialize call failed, bail out the

    Error: (30/08/2016 14:46:37) (Source: Microsoft-Windows-LoadPerf) (user: NT AUTHORITY)
    Description: Unload the strings of performance counter for the WmiApRpl (WmiApRpl) service has failed. The first DWORD in the data section contains the error code.

    Error: (30/08/2016 14:46:37) (Source: Microsoft-Windows-LoadPerf) (user: NT AUTHORITY)
    Description: Chains of performance in the Performance registry value is corrupted when dealing with expansion of the Performance counter provider. The BaseIndex of the Performance registry value is the first DWORD in the data section, LastCounter value is the second DWORD in the data section, and LastHelp value is the third DWORD in the data section.

    Error: (30/08/2016 14:34:59) (Source: MSSQL$ MSSMLBIZ) (user :)
    Description: SQL Server could not reproduce FRunCM thread. Check the SQL Server error log and the event logs Windows for more information on related issues possible.

    System errors:
    =============
    Error: (30/08/2016 15:28:42) (Source: Service Control Manager) (user :)
    Description: The DHCP Client service is stopped with the following error:
    % = Access is denied.

    Error: (30/08/2016 15:28:42) (Source: Service Control Manager) (user :)
    Description: The service WinHTTP Web Proxy Auto-Discovery Service is dependent on the Client DHCP service which failed to start because of the following error:
    % = The operation completed successfully.

    Error: (30/08/2016 15:28:42) (Source: Microsoft-Windows-Dhcp-Client) (user: NT AUTHORITY)
    Description: An error occurred in the service to stop customer Dhcpv4. Error Code is 5. Stop indicator value is 0

    Error: (30/08/2016 15:28:42) (Source: Microsoft-Windows-Dhcp-Client) (user: NT AUTHORITY)
    Description: An error occurred during initialization DHCPv4. Error Code is 5

    Error: (30/08/2016 15:28:32) (Source: Service Control Manager) (user :)
    Description: The DHCP Client service is stopped with the following error:
    % = Access is denied.

    Error: (30/08/2016 15:28:32) (Source: Service Control Manager) (user :)
    Description: The service WinHTTP Web Proxy Auto-Discovery Service is dependent on the Client DHCP service which failed to start because of the following error:
    % = The operation completed successfully.

    Error: (30/08/2016 15:28:32) (Source: Microsoft-Windows-Dhcp-Client) (user: NT AUTHORITY)
    Description: An error occurred in the service to stop customer Dhcpv4. Error Code is 5. Stop indicator value is 0

    Error: (30/08/2016 15:28:32) (Source: Microsoft-Windows-Dhcp-Client) (user: NT AUTHORITY)
    Description: An error occurred during initialization DHCPv4. Error Code is 5

    Error: (30/08/2016 15:28:29) (Source: Service Control Manager) (user :)
    Description: The DHCP Client service is stopped with the following error:
    % = Access is denied.

    Error: (30/08/2016 15:28:29) (Source: Service Control Manager) (user :)
    Description: The service WinHTTP Web Proxy Auto-Discovery Service is dependent on the Client DHCP service which failed to start because of the following error:
    % = The operation completed successfully.

    Sessions of Microsoft Office:
    =========================
    Error: (30/08/2016 15:28:06) (Source: MSSQL$ MSSMLBIZ)(User:))
    Description: FRunCM

    Error: (30/08/2016 15:28:06) (Source: MSSQL$ MSSMLBIZ)(User:))
    Description:

    Error: (30/08/2016 15:28:06) (Source: MSSQL$ MSSMLBIZ)(User:))
    Description: 21Initialization failed with an infrastructure error. Search for previous errors. The system cannot find the specified file.

    Error: (30/08/2016 15:28:06) (Source: MSSQL$ MSSMLBIZ)(User:))
    Description: 280Unable to initialize SSL support. The system cannot find the specified file.

    Error: (30/08/2016 15:28:06) (Source: MSSQL$ MSSMLBIZ)(User:))
    Description: 0x2

    Error: (30/08/2016 15:27:36) (Source:)(User:) VSS
    Description: RegOpenKeyExW(-2147483646,SYSTEM\CurrentControlSet\Services\VSS\Diag,...), 0x80070005 access is denied.

    Operation:
    The initialization of the Writer

    Context:
    Writer class ID: {e8132975-6f93-4464-a53e-1050253ae220}
    Author name: System Writer
    Writer Instance ID: {670d2486-eb31-442b-944c-3739c39e7673}

    Error: (30/08/2016 15:27:32) (Source: annex)(User:))
    Description: Calendar error: 0Initialize call failed, bail out the

    Error: (30/08/2016 14:46:37) (Source: Microsoft-Windows-LoadPerf) (user: NT AUTHORITY)
    Description: WmiApRplWmiApRpl8F20300004D070000

    Error: (30/08/2016 14:46:37) (Source: Microsoft-Windows-LoadPerf) (user: NT AUTHORITY)
    Description: Performance1637070000000000000000000009030000

    Error: (30/08/2016 14:34:59) (Source: MSSQL$ MSSMLBIZ)(User:))
    Description: FRunCM

    CodeIntegrity errors:
    ===================================
    Date: 27-11-2015 20:07:15.276
    Description: Code integrity cannot verify the integrity of the image of the file \Device\HarddiskVolume2\0d7dbc6742cf5194aef661d331ef\mrt.exe because all of the image per page hashes is not found on the system.

    Date: 2015-10-02 10:12:24.374
    Description: Code integrity cannot verify the integrity of the image of the file \Device\HarddiskVolume2\0d7dbc6742cf5194aef661d331ef\mrt.exe because all of the image per page hashes is not found on the system.

    Date: 2014-10-12 22:27:30.825
    Description: Windows cannot verify the integrity of the image of the file \Device\HarddiskVolume2\Windows\System32\drivers\usbaapl64.sys because the hash of the file is not found on the system. A recent hardware or software change might be installed a file that is signed incorrectly or damaged, or maybe it's a malicious software from an unknown source.

    Date: 2014-10-12 22:27:30.564
    Description: Windows cannot verify the integrity of the image of the file \Device\HarddiskVolume2\Windows\System32\drivers\usbaapl64.sys because the hash of the file is not found on the system. A recent hardware or software change might be installed a file that is signed incorrectly or damaged, or maybe it's a malicious software from an unknown source.

    Date: 2014-10-12 22:27:30.282
    Description: Windows cannot verify the integrity of the image of the file \Device\HarddiskVolume2\Windows\System32\drivers\usbaapl64.sys because the hash of the file is not found on the system. A recent hardware or software change might be installed a file that is signed incorrectly or damaged, or maybe it's a malicious software from an unknown source.

    Date: 2014-10-12 22:27:29.992
    Description: Windows cannot verify the integrity of the image of the file \Device\HarddiskVolume2\Windows\System32\drivers\usbaapl64.sys because the hash of the file is not found on the system. A recent hardware or software change might be installed a file that is signed incorrectly or damaged, or maybe it's a malicious software from an unknown source.

    Date: 2012-04-11 11:54:49.466
    Description: Windows cannot verify the integrity of the image of the file \Device\HarddiskVolume2\Windows\System32\drivers\usbaapl64.sys because the hash of the file is not found on the system. A recent hardware or software change might be installed a file that is signed incorrectly or damaged, or maybe it's a malicious software from an unknown source.

    Date: 2012-04-11 11:54:49.404
    Description: Windows cannot verify the integrity of the image of the file \Device\HarddiskVolume2\Windows\System32\drivers\usbaapl64.sys because the hash of the file is not found on the system. A recent hardware or software change might be installed a file that is signed incorrectly or damaged, or maybe it's a malicious software from an unknown source.

    Date: 2012-04-11 11:54:06.821
    Description: Windows cannot verify the integrity of the image of the file \Device\HarddiskVolume2\Windows\System32\drivers\usbaapl64.sys because the hash of the file is not found on the system. A recent hardware or software change might be installed a file that is signed incorrectly or damaged, or maybe it's a malicious software from an unknown source.

    Date: 2012-04-11 11:54:06.760
    Description: Windows cannot verify the integrity of the image of the file \Device\HarddiskVolume2\Windows\System32\drivers\usbaapl64.sys because the hash of the file is not found on the system. A recent hardware or software change might be installed a file that is signed incorrectly or damaged, or maybe it's a malicious software from an unknown source.

    = Programs installed =.

    7-zip 9.20 (HKLM-x32\...\7-Zip) (Version :-)
    ABBYY Lingvo 12 version English (HKLM-x32\...\{A1200000-0001-0000-0000-074957833700)} (Version: 12.00.442.5113 - ABBYY Software)
    Acrobat.com (HKLM-x32\...\{287ECFA4-719A-2143-A09B-D6A12DE54E40)} (Version: 1.6.65 - Adobe Systems Incorporated)
    ActiveCheck component for HP Active Support Library (HKLM-x32\...\{254C37AA-6B72-4300-84F6-98A82419187E)} (Version: 3.0.0.3 - Hewlett-Packard) hidden
    Adobe Acrobat Reader DC (HKLM-x32\...\{AC76BA86-7AD7-1033-7B44-AC0F074E4100)} (Version: 15.010.20056 - Adobe Systems Incorporated)
    Adobe Flash Player NPAPI (HKLM-x32\...\Adobe Flash Player NPAPI) 19 (Version: 19.0.0.185 - Adobe Systems Incorporated)
    Adobe Flash Player ActiveX (ActiveX of Flash Player HKLM-x32\...\Adobe) 20 (Version: 20.0.0.228 - Adobe Systems Incorporated)
    Adobe Shockwave Player 11.6 (HKLM-x32\...\Adobe Shockwave Player) (Version: 11.6.1.629 - Adobe Systems, Inc.)
    Apple Application Support (32 bit) (HKLM-x32\...\{AFA1153A-F547-409B-B837-3A0D6C5A3FEC)} (Version: 3.1.3 - Apple Inc.)
    Apple Application Support (64-bit) (HKLM\...\{D7B824DE-DA32-4772-9E5E-39C5158136A7)} (Version: 3.1.3 - Apple Inc.)
    Apple Mobile Device Support (HKLM\...\{C4123106-B685-48E6-B9BD-E4F911841EB4)} (Version: 8.1.1.3 - Apple Inc.)
    Apple Software Update (HKLM-x32\...\{789A5B64-9DD9-4BA5-915A-F0FC0A1B7BFE)} (Version: 2.1.3.127 - Apple Inc.)
    Audacity 2.0.3 (HKLM-x32\...\Audacity_is1) (Version: 2.0.3 - Audacity team)
    {BIAS SoundSoap 2.1.1 PE (HKLM-x32\...\{8709C596-C0B4-415D-9281-AC846B39EA76)} (Version: 2.1.1 - BIAS Inc)
    Hello (HKLM\...\{6E3610B2-430D-4EB0-81E3-2B57E8B9DE8D)} (Version: 3.0.0.10 - Apple Inc.)
    CCleaner (HKLM\...\CCleaner) (Version: 3.18 - Piriform)
    Compatibility for Office system 2007 (HKLM-x32\...\{90120000-0020-0409-0000-0000000FF1CE) Pack} (Version: 12.0.6612.1000 - Microsoft Corporation)
    {CyberLink DVD Suite (HKLM-x32\...\InstallShield_{1FBF6C24-C1FD-4101-A42B-0C564F9E8E79)} (Version: 6.0.3101 - CyberLink Corp.)
    Office restore (HKLM\...\{15D07D6F-E4CC-41D9-88A3-94115E5E5A10)} (Version: 1.6.3 - JOConnell)
    DVD Decrypter (Remove Only) (HKLM-x32\...\DVD Decrypter) (Version :-)
    DVD Shrink 3.2 (HKLM-x32\...\DVD Shrink_is1) (Version :-DVD Shrink)
    eReg (HKLM-x32\...\{3EE9BCAE-E9A9-45E5-9B1C-83A4D357E05C)} (Version: 1.20.138.34 - Logitech, Inc..) Hidden
    GDR 5520 for SQL Server 2008 (KB2977321) (HKLM-x32\...\KB2977321) (Version: 10.3.5520.0 - Microsoft Corporation)
    GDR 5538 for SQL Server 2008 (KB3045305) (HKLM-x32\...\KB3045305) (Version: 10.3.5538.0 - Microsoft Corporation)
    Update Google Helper (HKLM-x32\...\{60EC980A-BDA2-4CB6-A427-B07A5498B4CA)} (Version: 1.3.30.3 - Google Inc.) Hidden
    Update Google Helper (HKLM-x32\...\{A92DAB39-4E2C-4304-9AB6-BC44E68B55E2)} (Version: 1.3.25.11 - Google Inc.) Hidden
    HP Smart Web Printing 4.60 (HKLM\...\HP Smart Web Printing) (Version: 4.60 - HP)
    HP 0154 (HKLM-x32\...\{B51605BF-6326-4553-AE96-6D7F1813D5F5) user guides} (Version: 1.01.0001 - Hewlett-Packard)
    HPAsset component for HP Active Support Library (HKLM-x32\...\{669D4A35-146B-4314-89F1-1AC3D7B88367)} (Version: 3.0.0.3 - Hewlett-Packard) hidden
    IDT Audio (HKLM-x32\...\{E3A5A8AB-58F6-45FF-AFCB-C9AE18C05001)} (Version: 1.0.6230.0 - IDT)
    Intel(r) Graphics Media Accelerator Driver (HKLM\...\HDMI) (Version: 8.15.10.1883 - Intel Corporation)
    {Intel® Matrix Storage Manager (HKLM\...\{9068B2BE-D93A-4C0A-861C-5E35E2C0E09E)} (Version:-Intel Corporation)
    iTunes (HKLM\...\{93F2A022-6C37-48B8-B241-FFABD9F60C30)} (Version: 12.1.2.27 - Apple Inc.)
    Update Java 8 66 (HKLM-x32\...\{26A24AE4-039D-4CA4-87B4-2F83218066F0)} (Version: 8.0.660.18 - Oracle Corporation)
    LabelPrint (HKLM-x32\...\{C59C179C-668D-49A9-B6EA-0121CCFC1243)} (Version: 2.5.1913 - CyberLink Corp.) hidden
    LabelPrint (HKLM-x32\...\InstallShield_{C59C179C-668D-49A9-B6EA-0121CCFC1243)} (Version: 2.5.1913 - CyberLink Corp.)
    LAME v3.99.3 (for Windows) (HKLM-x32\...\LAME_is1) (Version :-)
    LightScribe System Software (HKLM-x32\...\{7EACD74C-147F-478C-9389-F9F52EE3C88A)} (Version: 1.18.10.2 - LightScribe)
    LSI HDA Modem (Modem Soft HKLM\...\LSI) (Version: 2.1.94 - LSI Corporation)
    Microsoft .NET Framework 4.5.2 (HKLM\...\{92FB6C44-E685-45AD-9B20-CADF4CABA132} - 1033) (Version: 4.5.51209 - Microsoft Corporation)
    {Microsoft Chart Controls for Microsoft .NET Framework 3.5 (KB2500170) (HKLM-x32\...\{41785C66-90F2-40CE-8CB5-1C94BFC97280)} (Version: 3.5.30730.0 - Microsoft Corporation)
    Microsoft Office 365 ProPlus - en - us (HKLM\...\O365ProPlusRetail - en - us) (Version: 15.0.4841.1002 - Microsoft Corporation)
    Microsoft Office 2010 language pack - Russia/русский (HKLM-x32\...\Office14.OMUI.ru-ru) (Version: 14.0.7015.1000 - Microsoft Corporation)
    Microsoft Office Outlook Connector (HKLM-x32\...\{95140000-007A-0409-0000-0000000FF1CE)} (Version: 14.0.5118.5000 - Microsoft Corporation)
    Microsoft Office PowerPoint Viewer 2007 (English) (HKLM-x32\...\{95120000-00AF-0409-0000-0000000FF1CE)} (Version: 12.0.6612.1000 - Microsoft Corporation)
    Microsoft Office Professional Plus 2010 (HKLM-x32\...\Office14.PROPLUSR) (Version: 14.0.7015.1000 - Microsoft Corporation)
    Provider of Microsoft Outlook Social Connector for Windows Live Messenger 32-bit (HKLM-x32\...\{95140000-007D-0409-0000-0000000FF1CE)} (Version: 14.0.5120.5000 - Microsoft Corporation)
    Microsoft Silverlight (HKLM\...\{89F4137D-6C26-4A84-BDB8-2E5A4BB71E00)} (Version: 5.1.50428.0 - Microsoft Corporation)
    Microsoft SQL Server 2008 (SQL Server 10 version HKLM-x32\...\Microsoft) (Version:-Microsoft Corporation)
    Browser of Microsoft SQL Server 2008 (HKLM-x32\...\{C688457E-03FD-4941-923B-A27F4D42A7DD)} (Version: 10.3.5500.0 - Microsoft Corporation)
    Microsoft SQL Server 2008 Native Client (HKLM\...\{2738C4AA-420E-4E13-ADEF-B5AB250E3EF1)} (Version: 10.3.5500.0 - Microsoft Corporation)
    Install Microsoft SQL Server 2008 are supported files (HKLM-x32\...\{59C245FC-343C-4FEC-B3CB-B6F12B561C20)} (Version: 10.3.5538.0 - Microsoft Corporation)
    Microsoft SQL Server VSS Writer (HKLM\...\{0826F9E4-787E-481D-83E0-BC6A57B056D5)} (Version: 10.3.5500.0 - Microsoft Corporation)
    {Microsoft Visual C++ 2005 ATL Update kb973923 - x 64 8.0.50727.4053 (HKLM\...\{B6E3757B-5E77-3915-866A-CCFC4B8D194C)} (Version: 8.0.50727.4053 - Microsoft Corporation)
    {Microsoft Visual C++ 2005 ATL Update kb973923 - x 86 8.0.50727.4053 (HKLM-x32\...\{770657D0-A123-3C07-8E44-1C83EC895118)} (Version: 8.0.50727.4053 - Microsoft Corporation)
    Microsoft Visual C++ 2005 Redistributable (HKLM-x32\...\{710f4c1c-cc18-4c49-8cbf-51240c89a1a2)} (Version: 8.0.61001 - Microsoft Corporation)
    {Microsoft Visual C++ 2005 Redistributable (x 64) - KB2467175 (HKLM\...\{aac9fcc4-dd9e-4add-901c-b5496a07ab2e)} (Version: 8.0.51011 - Microsoft Corporation)
    Microsoft Visual C++ 2005 Redistributable (x 64) (HKLM\...\{ad8a2fa1-06e7-4b0d-927d-6e54b3d31028)} (Version: 8.0.61000 - Microsoft Corporation)
    {Microsoft Visual C++ 2008 ATL Update kb973924 - x 64 9.0.30729.4148 (HKLM\...\{EE936C7A-EA40-31D5-9B65-8E3E089C3828)} (Version: 9.0.30729.4148 - Microsoft Corporation)
    {Microsoft Visual C++ 2008 ATL Update kb973924 - x 86 9.0.30729.4148 (HKLM-x32\...\{002D9D5E-29BA-3E6D-9BC4-3D7D6DBC735C)} (Version: 9.0.30729.4148 - Microsoft Corporation)
    {Microsoft Visual C++ 2008 Redistributable x 64 - KB2467174 - 9.0.30729.5570 (HKLM\...\{8338783A-0968-3B85-AFC7-BAAE0A63DC50)} (Version: 9.0.30729.5570 - Microsoft Corporation)
    {Microsoft Visual C++ 2008 Redistributable - KB2467174 - x 86 9.0.30729.5570 (HKLM-x32\...\{86CE85E6-DBAC-3FFD-B977-E4B79F83C909)} (Version: 9.0.30729.5570 - Microsoft Corporation)
    {Microsoft Visual C++ 2008 Redistributable - x 64 9.0.21022 (HKLM\...\{350AA351-21FA-3270-8B7A-835434E766AD)} (Version: 9.0.21022 - Microsoft Corporation)
    {Microsoft Visual C++ 2008 Redistributable - x 64 9.0.30729.17 (HKLM\...\{8220EEFE-38CD-377E-8595-13398D740ACE)} (Version: 9.0.30729 - Microsoft Corporation)
    {Microsoft Visual C++ 2008 Redistributable - x 64 9.0.30729.6161 (HKLM\...\{5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4)} (Version: 9.0.30729.6161 - Microsoft Corporation)
    {Microsoft Visual C++ 2008 Redistributable - x 86 9.0.21022.218 (HKLM-x32\...\{E503B4BF-F7BB-3D5F-8BC8-F694B1CFF942)} (Version: 9.0.21022.218 - Microsoft Corporation)
    {Microsoft Visual C++ 2008 Redistributable - x 86 9.0.30729.17 (HKLM-x32\...\{9A25302D-30C0-39D9-BD6F-21E6EC160475)} (Version: 9.0.30729 - Microsoft Corporation)
    {Microsoft Visual C++ 2008 Redistributable - x 86 9.0.30729.6161 (HKLM-x32\...\{9BE518E6-ECC6-35A9-88E4-87755C07200F)} (Version: 9.0.30729.6161 - Microsoft Corporation)
    {Microsoft Visual C++ 2010 x 64 Redistributable - 10.0.40219 (HKLM\...\{1D8E6291-B0D5-35EC-8441-6616F567A0F7)} (Version: 10.0.40219 - Microsoft Corporation)
    {Microsoft Visual C++ 2010 x 86 Redistributable - 10.0.40219 (HKLM-x32\...\{F0C3E5D1-1ADE-321E-8167-68EF0DE699A5)} (Version: 10.0.40219 - Microsoft Corporation)
    Microsoft Visual Studio 2010 Tools for Office Runtime (x 64) (HKLM\...\Microsoft Visual Studio 2010 Tools for Office Runtime (x 64)) (Version: 10.0.50903 - Microsoft Corporation)
    Mozilla Firefox 47.0 (x 86 en - us) (HKLM-x32\...\Mozilla Firefox 47.0 (x 86 en - us)) (Version: 47.0 - Mozilla)
    Mozilla maintenance service (HKLM-x32\...\MozillaMaintenanceService) (Version: 47.0.0.5999 - Mozilla)
    MSXML 4.0 SP2 (KB954430) (HKLM-x32\...\{86493ADD-824D-4B8E-BD72-8C5DCDC52A71)} (Version: 4.20.9870.0 - Microsoft Corporation)
    MSXML 4.0 SP2 (KB973688) (HKLM-x32\...\{F662A8E6-F4DC-41A2-901E-8C11F044BDEC)} (Version: 4.20.9876.0 - Microsoft Corporation)
    Click-to-Run extensibility component Office 15 (HKLM-x32\...\{90150000-008C-0000-0000-0000000FF1CE)} (Version: 15.0.4841.1002 - Microsoft Corporation) hidden
    Component of Click-to-Run licenses of Office 15 (HKLM\...\{90150000-008F-0000-1000-0000000FF1CE)} (Version: 15.0.4841.1002 - Microsoft Corporation) hidden
    Click-to-Run location component Office 15 (HKLM-x32\...\{90150000-008C-0409-0000-0000000FF1CE)} (Version: 15.0.4841.1002 - Microsoft Corporation) hidden
    Pearson LockDown Browser (HKLM-x32\...\{1F8BAD3E-1EE5-43ED-B5DB-F6311DA7666A)} (Version: 1.04.23 - Respondus, Inc.)
    Power2Go (HKLM-x32\...\{40BF1E83-20EB-11D8-97C5-0009C5020658)} (Version: 6.0.3101 - CyberLink Corp.) hidden
    Power2Go (HKLM-x32\...\InstallShield_{40BF1E83-20EB-11D8-97C5-0009C5020658)} (Version: 6.0.3101 - CyberLink Corp.)
    PowerDirector (HKLM-x32\...\{CB099890-1D5F-11D5-9EA9-0050BAE317E1)} (Version: 7.0.3101 - CyberLink Corp.) hidden
    PowerDirector (HKLM-x32\...\InstallShield_{CB099890-1D5F-11D5-9EA9-0050BAE317E1)} (Version: 7.0.3101 - CyberLink Corp.)
    PowerRecover (HKLM-x32\...\{44B2A0AB-412E-4F8C-B058-D1E8AECCDFF5)} (Version: 5.5.1923 - CyberLink Corp.) hidden
    QLBCASL (HKLM-x32\...\{F1D7AC58-554A-4A58-B784-B61558B1449A)} (Version: 6.40.17.2 - Hewlett-Packard) hidden
    QuickTime 7 (HKLM-x32\...\{3D2CBC2C-65D4-4463-87AB-BB2C859C1F3E)} (Version: 7.76.80.95 - Apple Inc.)
    Realtek 8136 8168 8169 Ethernet Driver (HKLM-x32\...\{8833FFB6-5B0C-4764-81AA-06DFEED9A476)} (Version: 1.00.0007 - Realtek)
    {Realtek USB 2.0 card reader (HKLM-x32\...\{96AE7E41-E34E-47D0-AC07-1091A8127911)} (Version: 6.1.7100.30094 - Realtek Semiconductor Corp..)
    Recover My Files (files My HKLM-x32\...\Recover v5_is1) (Version: 5.2.1.1964 - GetData Pty Ltd)
    {Service Pack 2 for Microsoft Office 2010 (KB2687455) 32 - Bit Edition (HKLM-x32\...\{91140000-0011-0000-0000-0000000FF1CE}_Office14.PROPLUSR_{DE28B448-32E8-4E8F-84F0-A52B21A49B5B)} (Version:-Microsoft)
    Service Pack 2 for Microsoft Office 2010 Language Pack (KB2687449) 32 - Bit Edition (HKLM-x32\...\{90140000-0100-0419-0000-0000000FF1CE}_Office14.OMUI.ru-ru_{E8C50326-F12B-484A-A69F-3CBCC36BE2DE)} (Version:-Microsoft)
    Service Pack 3 for SQL Server 2008 (KB2546951) (HKLM-x32\...\KB2546951) (Version: 10.3.5500.0 - Microsoft Corporation)
    Click Skype to call (HKLM-x32\...\{6D1221A9-17BF-4EC0-81F2-27D30EC30701)} (Version: 8.3.0.9150 - Microsoft Corporation)
    Skype™ 7.25 (HKLM-x32\...\{FC965A47-4839-40CA-B618-18F486F042C6)} (Version: 7.25.106 - Skype Technologies S.A.)
    SlingBoxWatchYourTVAnyWhere (HKLM-x32\...\{4313E16C-811B-469F-8815-6EB98085F8B2)} (Version: 2.1.1.58 - Sling Media)
    SmartWebPrinting (HKLM-x32\...\{8FF6F5CA-4E30-4E3B-B951-204CAAA2716A)} (Version: 140.0.186.000 - Hewlett-Packard) hidden
    SP45990 - wallpaper picture Position activator for Windows 7 (HKLM-x32\...\{86391634-A94B-4355-8397-3D85C2F942DA)} (Version: 1.0.0 - Hewlett-Packard International Pte.) Ltd.)
    SQL Server Customer Experience Improvement Program (HKLM-x32\...\{C965F01C-76EA-4BD7-973E-46236AE312D7)} (Version: 10.3.5500.0 - Microsoft Corporation) hidden
    swMSM (HKLM-x32\...\{612C34C7-5E90-47D8-9B5C-0F717DD82726)} (Version: 12.0.0.1 - Adobe Systems, Inc.) hidden
    Synaptics Pointing Device Driver (HKLM\...\SynTPDeinstKey) (Version: 15.3.29.0 - Synaptics incorporated)
    TrueCrypt (HKLM-x32\...\TrueCrypt) (Version: 7. 0 a - TrueCrypt Foundation)

    ========================= Devices: ================================

    ========================= Memory info: ===================================

    Percentage of memory used: 18%
    Physical RAM total: 6047,19 MB
    Available physical RAM: 4919,3 MB
    Total virtual: 12092,56 MB
    Available virtual: 10908,59 MB

    ========================= Partitions: =====================================

    1 drive c: () (fixed) (Total: 452,84) (Go free: 56,27) NTFS
    2 drive d: (REPRISE) (fixed) (Total: 12.72) (Go free: 1.69) NTFS

    ========================= Users: ========================================

    User accounts for \\E-LAPTOP

    Guest user administrator

    ========================= Minidump Files ==================================

    No found minidump file

    ========================= Restore Points ==================================

    Windows Update 18/05/2016-16:32:59
    2016/06/24 18:28:02 update Windows
    Windows update 25/06/2016-18:39:38

    End of the log *.

    Rkill by Lawrence Abrams (Grinler) 2.8.4
    http://www.bleepingcomputer.com/
    Copyright 2008 - 2016 BleepingComputer.com
    More information on Rkill is located at this link:
    http://www.bleepingcomputer.com/forums/topic308364.html

    Program started at the: 30/08/2016-16:53:58 in x 64 mode.
    The Version of Windows: Windows 7 Home Premium Service Pack 1

    Check for services Windows stop:

    * No malware service found to stop.

    Complete verification of the process:

    * No process malware found for kill.

    Parameters to test the malware registry database:

    * No problem found in the registry.

    Reset. EXE, com, &. Associations of bat in the Windows registry.
    * HKCU\SOFTWARE\Classes\.exe '@' exists and is set to exefile!
    * HKCU\SOFTWARE\Classes\.exe has been deleted!
    * HKCU\SOFTWARE\Classes\exefile has been deleted!

    Perform various checks:

    * No problems detected.

    Control the integrity of Windows services:

    * Base Filtering Engine (BFE) is not running.
    Startup type: automatic

    * Client DHCP (Dhcp) is not running.
    Startup type: automatic

    * Windows Firewall (MpsSvc) is not running.
    Startup type: automatic

    * LanmanServer [missing ServiceDLL value]

    Looking for a lack of Digital Signatures:

    * No problems detected.

    Check the HOSTS file:

    * HOSTS file registry is set to a non-standard location: \hosts

    Program terminated at the: 30/08/2016-16:56:35
    Execution time: 0 hour (s), 2 minute (s) and 37 seconds (s)

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Junkware (JRT) by Malwarebytes removal tool
    Version: 8.0.7 (07.03.2016)
    Operating system: Windows 7 Home Premium x 64
    Run by user (Limited) on Tuesday, August 30, 2016 to 16:12:10.76
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    File system: 10

    Has been correctly removed: C:\ProgramData\1472566192.bdinstall.bin (file)
    Has been correctly removed: C:\ProgramData\1472566750.bdinstall.bin (file)
    Has been correctly removed: C:\Users\User\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\0PS72R2M (the temporary Internet files folder)
    Has been correctly removed: C:\Users\User\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\62AXOPQ5 (the temporary Internet files folder)
    Has been correctly removed: C:\Users\User\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\FZG8CKJ5 (the temporary Internet files folder)
    Has been correctly removed: C:\Users\User\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\LIXMVQOA (the temporary Internet files folder)
    Has been correctly removed: C:\Windows\System32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\0PS72R2M (the temporary Internet files folder)
    Has been correctly removed: C:\Windows\System32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\62AXOPQ5 (the temporary Internet files folder)
    Has been correctly removed: C:\Windows\System32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\FZG8CKJ5 (the temporary Internet files folder)
    Has been correctly removed: C:\Windows\System32\config\systemprofile\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\LIXMVQOA (the temporary Internet files folder)

    Register: 7

    Has been correctly removed: EPM HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Run\\VideoDownloadConverter support (registry value)
    Has been correctly removed: HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Run\\VideoDownloadConverter_4z Browser Plugin Loader 64 (registry value)
    Has been correctly removed: HKLM Explorer\Main\\Default_Page_URL (registry value)
    Has been correctly removed: HKLM Explorer\Toolbar\WebBrowser\\ {604BC32A-9680-40D1-9AC6-E06B23A1BA4C} (registry value)
    Has been correctly removed: HKLM Explorer\SearchScopes\ {0633EE93-D776-472f-A0FF-E1416B8B2E3A} (registry key)
    Has been correctly removed: HKLM\Software\Wow6432Node\Microsoft\Internet Explorer\SearchScopes\ {0633EE93-D776-472f-A0FF-E1416B8B2E3A} (registry key)
    Has been correctly removed: HKLM\Software\Wow6432Node\Microsoft\Internet Explorer\Main\\Default_Page_URL (registry value)

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Scan was completed on Tuesday, August 30, 2016 to 16:51:33.51
    End of the log of the JRT
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    # AdwCleaner v6.010 - Logfile created on 30/08/2016 at 16:09:09
    # Last updated 08/12/2016 by ToolsLib
    # Database: 2016-08-24, 2 [Local]
    # Operating system: Windows 7 Home Premium Service Pack 1 (X 64)
    # User name: User - E-PORTABLE
    # Run since: C:\Users\User\Desktop\AdwCleaner.exe
    # Mode: clean
    # Support: https://toolslib.net/forum

    [Services] *.

    [-] Deleted service: VideoDownloadConverter_4zService

    [Cases] *.

    [-] Deleted file: C:\Program Files (x 86) \VideoDownloadConverter
    [-] Deleted file: C:\Users\User\AppData\Local\VideoDownloadConverter_4z
    [-] Deleted file: C:\Users\User\AppData\LocalLow\VideoDownloadConverter_4z
    [-] Deleted file: C:\Program Files (x 86) \VideoDownloadConverter_4z
    [#] Folder deleted on reboot: C:\Users\User\AppData\Local\VideoDownloadConverter_4z
    [#] Folder deleted on reboot: C:\Users\User\AppData\LocalLow\VideoDownloadConverter_4z
    [#] Folder deleted on reboot: C:\Program Files (x 86) \VideoDownloadConverter_4z
    [-] Deleted file: C:\Users\User\AppData\Local\iac
    [-] Deleted file: C:\Users\User\AppData\Local\iLivid
    [#] Folder deleted on reboot: C:\Users\User\AppData\Local\IAC
    [-] Deleted file: C:\Users\User\AppData\LocalLow\iac
    [#] Folder deleted on reboot: C:\Users\User\AppData\LocalLow\IAC
    [-] Deleted file: C:\ProgramData\apn
    [-] Deleted file: C:\ProgramData\AskPartnerNetwork
    [#] Folder deleted on reboot: C:\ProgramData\Application Data\apn
    [#] Folder deleted on reboot: C:\ProgramData\Application Data\AskPartnerNetwork
    [-] Deleted file: C:\Program Files (x 86) \AskPartnerNetwork

    [Files] *.

    [-] Deleted file: C:\Users\User\AppData\Roaming\Mozilla\Firefox\Profiles\93pc0lci.default\searchplugins\bingp.xml

    ***** [ DLL ] *****

    ***** [ WMI ] *****

    [Shortcuts] *.

    [Scheduled tasks] *.

    [Registry] *.

    [-] Deleted key: HKLM\SOFTWARE\VideoDownloadConverter
    [#] Key deleted on reboot: HKLM\SOFTWARE\VideoDownloadConverter_is1
    [-] Deleted key: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideoDownloadConverter
    [#] Key deleted on reboot: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideoDownloadConverter_is1
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter.ScriptHelper
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter.ScriptHelper.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. FeedManager
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. FeedManager.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLMenu
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLMenu.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLPanel
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLPanel.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. MultipleButton
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. MultipleButton.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. PseudoTransparentPlugin
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. PseudoTransparentPlugin.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. Radio
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. Radio.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. RadioSettings
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. RadioSettings.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ScriptButton
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ScriptButton.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. SettingsPlugin
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. SettingsPlugin.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ThirdPartyInstaller
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ThirdPartyInstaller.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ToolbarProtector
    [-] Deleted key: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ToolbarProtector.1
    [-] Deleted key: HKU\S-1-5-21-3939054769-3386920926-4142966088-1000\Software\VideoDownloadConverter_4z
    [#] Key deleted on reboot: HKU\S-1-5-21-3939054769-3386920926-4142966088-1000\Software\VideoDownloadConverter_4z_is1
    [-] Deleted key: HKU\S-1-5-21-3939054769-3386920926-4142966088-1000\Software\AppDataLow\Software\VideoDownloadConverter_4z
    [#] Key deleted on reboot: HKU\S-1-5-21-3939054769-3386920926-4142966088-1000\Software\AppDataLow\Software\VideoDownloadConverter_4z_is1
    [#] Key deleted on reboot: HKCU\Software\VideoDownloadConverter_4z
    [#] Key deleted on reboot: HKCU\Software\VideoDownloadConverter_4z_is1
    [#] Key deleted on reboot: HKCU\Software\AppDataLow\Software\VideoDownloadConverter_4z
    [#] Key deleted on reboot: HKCU\Software\AppDataLow\Software\VideoDownloadConverter_4z_is1
    [-] Deleted key: HKLM\SOFTWARE\VideoDownloadConverter_4z
    [#] Key deleted on reboot: HKLM\SOFTWARE\VideoDownloadConverter_4z_is1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. FeedManager
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. FeedManager.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLMenu
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLMenu.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLPanel
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLPanel.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. MultipleButton
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. MultipleButton.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. PseudoTransparentPlugin
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. PseudoTransparentPlugin.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. Radio
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. Radio.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. RadioSettings
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. RadioSettings.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ScriptButton
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ScriptButton.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. SettingsPlugin
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. SettingsPlugin.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ThirdPartyInstaller
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ThirdPartyInstaller.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ToolbarProtector
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ToolbarProtector.1
    [#] Key deleted on reboot: HKU\S-1-5-21-3939054769-3386920926-4142966088-1000\Software\VideoDownloadConverter_4z
    [#] Key deleted on reboot: HKU\S-1-5-21-3939054769-3386920926-4142966088-1000\Software\VideoDownloadConverter_4z_is1
    [#] Key deleted on reboot: HKU\S-1-5-21-3939054769-3386920926-4142966088-1000\Software\AppDataLow\Software\VideoDownloadConverter_4z
    [#] Key deleted on reboot: HKU\S-1-5-21-3939054769-3386920926-4142966088-1000\Software\AppDataLow\Software\VideoDownloadConverter_4z_is1
    [#] Key deleted on reboot: HKCU\Software\VideoDownloadConverter_4z
    [#] Key deleted on reboot: HKCU\Software\VideoDownloadConverter_4z_is1
    [#] Key deleted on reboot: HKCU\Software\AppDataLow\Software\VideoDownloadConverter_4z
    [#] Key deleted on reboot: HKCU\Software\AppDataLow\Software\VideoDownloadConverter_4z_is1
    [#] Key deleted on reboot: HKLM\SOFTWARE\VideoDownloadConverter_4z
    [#] Key deleted on reboot: HKLM\SOFTWARE\VideoDownloadConverter_4z_is1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. FeedManager
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. FeedManager.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLMenu
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLMenu.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLPanel
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLPanel.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. MultipleButton
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. MultipleButton.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. PseudoTransparentPlugin
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. PseudoTransparentPlugin.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. Radio
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. Radio.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. RadioSettings
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. RadioSettings.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ScriptButton
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ScriptButton.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. SettingsPlugin
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. SettingsPlugin.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ThirdPartyInstaller
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ThirdPartyInstaller.1
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ToolbarProtector
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ToolbarProtector.1
    [-] Deleted key: HKLM\SOFTWARE\MozillaPlugins\@VideoDownloadConverter_4z.com/Plugin
    [-] Deleted key: HKLM\SOFTWARE\MozillaPlugins\@VideoDownloadConverter_ScriptHelper.com/Plugin
    [#] Key deleted on reboot: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideoDownloadConverter
    [-] Deleted key: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideoDownloadConverter_4zbar uninstall Firefox
    [-] Deleted key: HKLM\SOFTWARE\Classes\Applications\iLividSetupV1.exe
    [-] Deleted key: HKLM Software Rights\ElevationPolicy\ {2D6F0AC3-0C2E-4E07-8FDA-11268AB51211}
    [-] Deleted key: HKLM Software Rights\ElevationPolicy\ {3d429207-4689-492d-a0e5-cdc5dfbb5005}
    [-] Deleted key: HKLM Software Rights\ElevationPolicy\ {8aadc8b2-562b-407b-88b3-916140226cbc}
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {1f6f39c1-00a8-4752-a94c-d0ea92d978b6}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {1f6f39c1-00a8-4752-a94c-d0ea92d978b6}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. PseudoTransparentPlugin.VideoDownloadConverter_4z. PseudoTransparentPlugin
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. PseudoTransparentPlugin.VideoDownloadConverter_4z. PseudoTransparentPlugin.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {2a1260c1-2964-453f-b0ba-fa429472eb5f}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {2a1260c1-2964-453f-b0ba-fa429472eb5f}
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {363d5c92-10dc-4287-93e5-1832eecc48ec}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {363d5c92-10dc-4287-93e5-1832eecc48ec}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ScriptButton.VideoDownloadConverter_4z. ScriptButton
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ScriptButton.VideoDownloadConverter_4z. ScriptButton.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {3719959c-1ccd-4fa7-8ebb-7d9ded86fccb}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {3719959c-1ccd-4fa7-8ebb-7d9ded86fccb}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ToolbarProtector.VideoDownloadConverter_4z. ToolbarProtector
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ToolbarProtector.VideoDownloadConverter_4z. ToolbarProtector.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {3b41be90-f731-4137-aff3-2ca951e7f0d9}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {3b41be90-f731-4137-aff3-2ca951e7f0d9}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. Radio.VideoDownloadConverter_4z. Radio
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. Radio.VideoDownloadConverter_4z. Radio.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {3d429207-4689-492d-a0e5-cdc5dfbb5005}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {3d429207-4689-492d-a0e5-cdc5dfbb5005}
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {4128c64d-f0dd-4811-9405-d22294e8151f}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {4128c64d-f0dd-4811-9405-d22294e8151f}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. MultipleButton.VideoDownloadConverter_4z. MultipleButton
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. MultipleButton.VideoDownloadConverter_4z. MultipleButton.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {48586425-6bb7-4f51-8dc6-38c88e3ebb58}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {48586425-6bb7-4f51-8dc6-38c88e3ebb58}
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {5354d921-3f52-47c5-938d-77a2fb6defe7}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {5354d921-3f52-47c5-938d-77a2fb6defe7}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLPanel.VideoDownloadConverter_4z. HTMLPanel
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLPanel.VideoDownloadConverter_4z. HTMLPanel.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {69407823-3494-4400-8d49-612549e8f4ee}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {69407823-3494-4400-8d49-612549e8f4ee}
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {71144427-1368-4D18-8DC9-2AE3CC4C4F83}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {71144427-1368-4D18-8DC9-2AE3CC4C4F83}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLMenu.VideoDownloadConverter_4z. HTMLMenu
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. HTMLMenu.VideoDownloadConverter_4z. HTMLMenu.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {84b7b98f-e018-4dbb-ab4c-4ddd3dfcb5fb}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {84b7b98f-e018-4dbb-ab4c-4ddd3dfcb5fb}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. RadioSettings.VideoDownloadConverter_4z. RadioSettings
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. RadioSettings.VideoDownloadConverter_4z. RadioSettings.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {8A4E8BCB-5598-4CAF-9DEC-4D452760E28D}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {8A4E8BCB-5598-4CAF-9DEC-4D452760E28D}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter.ScriptHelper.VideoDownloadConverter.ScriptHelper
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter.ScriptHelper.VideoDownloadConverter.ScriptHelper.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {8fca5302-6d6d-4645-bf99-d43cf76ce474}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {8fca5302-6d6d-4645-bf99-d43cf76ce474}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. FeedManager.VideoDownloadConverter_4z. FeedManager
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. FeedManager.VideoDownloadConverter_4z. FeedManager.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {a86782d8-7b41-452f-a217-1854f72dba54}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {a86782d8-7b41-452f-a217-1854f72dba54}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. SettingsPlugin.VideoDownloadConverter_4z. SettingsPlugin
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. SettingsPlugin.VideoDownloadConverter_4z. SettingsPlugin.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {dd385519-22e7-4be2-8a8d-35c66df4858e}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {dd385519-22e7-4be2-8a8d-35c66df4858e}
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {ed345812-2722-4dca-9976-d01832db44ee}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {ed345812-2722-4dca-9976-d01832db44ee}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ThirdPartyInstaller.VideoDownloadConverter_4z. ThirdPartyInstaller
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter_4z. ThirdPartyInstaller.VideoDownloadConverter_4z. ThirdPartyInstaller.1
    [-] Deleted key: HKLM\SOFTWARE\Classes\CLSID\ {ff48dba6-5dd8-4d10-9eb0-0fa968502e66}
    [#] Deleted on reboot key: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Ext\CLSID\ {ff48dba6-5dd8-4d10-9eb0-0fa968502e66}
    [#] Deleted on reboot key: {192F487E-E812-40C0-B0DE-CB4BFA20F37B}
    [#] Deleted on reboot key: {2D3826A1-F3E8-45D6-94B5-C26D8EC0073B}
    [#] Deleted on reboot key: {37923200-6887-4B44-95D4-CAE8F83ECFEE}
    [#] Deleted on reboot key: {385F1935-3784-48D0-A61F-6385493DED3C}
    [#] Deleted on reboot key: {3EE17DD1-E28B-4AED-A3B2-9C29CB2C19D6}
    [#] Deleted on reboot key: {79332472-47F3-4E32-B07F-CF8DF4C58499}
    [#] Deleted on reboot key: {886F93AD-3CBB-4424-8442-A7340243540F}
    [#] Deleted on reboot key: {AA289DBC-59B6-40A5-AC7D-C90DF850289C}
    [#] Deleted on reboot key: {BC153A3C-0BB7-4EED-83AE-28E6E398F56E}
    [#] Deleted on reboot key: {CA723163-6FAD-43D4-8B93-0D8C52BD9974}
    [#] Deleted on reboot key: {F1F328EB-F5A5-432B-A54C-05F3EF5B0BD8}
    [#] Deleted on reboot key: {FE8DBB09-C3D3-4477-80CB-D38914B94BB8}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {1AD2049E-E483-4425-8555-8E0775ACB631}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {2D73F2D0-2FAB-458E-977D-2F9050E0ED60}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {34AD1EA7-8B9E-4D8B-B3ED-365D12C8EE73}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {35144E32-8E4C-4152-9B8C-3E2D4B46228E}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {35BBB95B-2CE4-4A9E-BDED-50EFD632AC00}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {3E9469AF-E866-4476-B767-810630F1F6E7}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {46CE5380-6055-4C3A-A7E5-3A02A2335C61}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {47700C35-9E3E-4DAD-934C-0CE28A87237C}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {4A3D2621-C879-47E3-969D-F4AD049DEC1B}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {4F6ECF71-C575-4BD2-8EF7-548D0EF1AB1D}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {54D99BE4-2FD7-449E-9DB4-76532CEE0B16}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {5684EAE9-72EB-4CA6-83B8-82434B7E955C}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {5A96E574-F8A6-4F6A-B58D-79C14B698017}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {716E443D-7CAA-44F1-866B-F45D00E712CC}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {72063D77-7590-4DA9-A7F8-F5ECAF3632C4}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {7FC87AC5-FA93-476E-A32C-A941229DED0B}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {7FCD22A8-B70A-4AC7-AAF1-EBCCD2F6612D}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {8B8BB3A7-2ADE-4995-931D-60B430A9B44E}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {93F0AC70-20D8-4AE8-A02F-6812EFFB6B58}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {A266567F-8E5D-480C-BCE2-C360FA669FD5}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {1AD2049E-E483-4425-8555-8E0775ACB631}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {2D73F2D0-2FAB-458E-977D-2F9050E0ED60}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {34AD1EA7-8B9E-4D8B-B3ED-365D12C8EE73}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {35144E32-8E4C-4152-9B8C-3E2D4B46228E}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {35BBB95B-2CE4-4A9E-BDED-50EFD632AC00}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {3E9469AF-E866-4476-B767-810630F1F6E7}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {46CE5380-6055-4C3A-A7E5-3A02A2335C61}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {47700C35-9E3E-4DAD-934C-0CE28A87237C}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {4A3D2621-C879-47E3-969D-F4AD049DEC1B}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {4F6ECF71-C575-4BD2-8EF7-548D0EF1AB1D}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {54D99BE4-2FD7-449E-9DB4-76532CEE0B16}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {5684EAE9-72EB-4CA6-83B8-82434B7E955C}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {5A96E574-F8A6-4F6A-B58D-79C14B698017}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {716E443D-7CAA-44F1-866B-F45D00E712CC}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {72063D77-7590-4DA9-A7F8-F5ECAF3632C4}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {7FC87AC5-FA93-476E-A32C-A941229DED0B}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {7FCD22A8-B70A-4AC7-AAF1-EBCCD2F6612D}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {8B8BB3A7-2ADE-4995-931D-60B430A9B44E}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {93F0AC70-20D8-4AE8-A02F-6812EFFB6B58}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {A266567F-8E5D-480C-BCE2-C360FA669FD5}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {CE4F67F6-4FD4-49DB-9D71-713CCD3D00CD}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {E14CDC24-4BE1-4B65-8452-4BFA0DCEF274}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {ECC69F9E-5456-4EDF-AF66-1A9DED11F9EE}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter.ScriptHelper
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\VideoDownloadConverter.ScriptHelper.1
    [#] Key deleted on reboot: [x 64] HKLM\SOFTWARE\Classes\Interface\ {1AD2049E-E483-4425-8555-8E0775ACB631}
    [#] Key deleted on reboot: [x 64] HKLM\SOFTWARE\Classes\Interface\ {2D73F2D0-2FAB-458E-977D-2F9050E0ED60}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {66D59105-FE06-43A4-B292-EB0097E9EB74}
    [-] Deleted key: [x 64] HKLM\SOFTWARE\Classes\Interface\ {9103C314-C4E2-4463-8934-B19BCB46236D}
    [#] Deleted on reboot key: HKLM\SOFTWARE\Classes\CLSID\ {4128C64D-F0DD-4811-9405-D22294E8151F}
    [#] Deleted on reboot key: HKLM\SOFTWARE\Classes\CLSID\ {48586425-6BB7-4F51-8DC6-38C88E3EBB58}
    [#] Deleted on reboot key: HKLM\SOFTWARE\Classes\CLSID\ {5354D921-3F52-47C5-938D-77A2FB6DEFE7}
    [#] Deleted on reboot key: HKLM\SOFTWARE\Classes\CLSID\ {A86782D8-7B41-452F-A217-1854F72DBA54}
    [#] Deleted on reboot key: HKLM\SOFTWARE\Classes\CLSID\ {DD385519-22E7-4BE2-8A8D-35C66DF4858E}
    [#] Deleted on reboot key: HKLM\SOFTWARE\Classes\CLSID\ {3D429207-4689-492D-A0E5-CDC5DFBB5005}
    [#] Deleted on reboot key: HKLM\SOFTWARE\Classes\Interface\ {1AD2049E-E483-4425-8555-8E0775ACB631}
    [#] Deleted on reboot key: HKLM\SOFTWARE\Classes\Interface\ {2D73F2D0-2FAB-458E-977D-2F9050E0ED60}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {66D59105-FE06-43A4-B292-EB0097E9EB74}
    [-] Deleted key: HKLM\SOFTWARE\Classes\Interface\ {9103C314-C4E2-4463-8934-B19BCB46236D}
    [-] Deleted key: HKLM\SOFTWARE\Classes\TypeLib\ {192F487E-E812-40C0-B0DE-CB4BFA20F37B}
    [-] Deleted key: HKLM\SOFTWARE\Classes\TypeLib\ {2D3826A1-F3E8-45D6-94B5-C26D8EC0073B}
    [-] Deleted key: HKLM\SOFTWARE\Classes\TypeLib\ {385F1935-3784-48D0-A61F-6385493DED3C}
    [-] Deleted key: HKLM\SOFTWARE\Classes\TypeLib\ {F1F328EB-F5A5-432B-A54C-05F3EF5B0BD8}
    [-] Deleted key: HKLM\SOFTWARE\Classes\TypeLib\ {FE8DBB09-C3D3-4477-80CB-D38914B94BB8}
    [-] Deleted key: HKCU\Software\Microsoft\Windows\CurrentVersion\Ext\Stats\ {48586425-6BB7-4F51-8DC6-38C88E3EBB58}
    [-] Deleted key: HKCU\Software\Microsoft\Windows\CurrentVersion\Ext\Stats\ {A86782D8-7B41-452F-A217-1854F72DBA54}
    [-] Deleted key: HKCU\Software\Microsoft\Windows\CurrentVersion\Ext\Stats\ {38122A36-83B2-46B8-B39A-EC72A4614A07}
    [-] Deleted key: HKCU\Software\Microsoft\Windows\CurrentVersion\Ext\Settings\ {48586425-6BB7-4F51-8DC6-38C88E3EBB58}
    [-] Deleted key: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Ext\PreApproved\ {5354D921-3F52-47C5-938D-77A2FB6DEFE7}
    [-] Deleted key: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Ext\PreApproved\ {A86782D8-7B41-452F-A217-1854F72DBA54}
    [-] Deleted key: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Ext\PreApproved\ {38122A36-83B2-46B8-B39A-EC72A4614A07}
    [-] Deleted key: HKU\S-1-5-21-3939054769-3386920926-4142966088-1000\Software\ilivid
    [-] Deleted key: HKU\S-1-5-21-3939054769-3386920926-4142966088-1000\Software\Softonic
    [-] Deleted key: HKU\S-1-5-21-3939054769-3386920926-4142966088-1000\Software\YahooPartnerToolbar
    [#] Key deleted on reboot: HKCU\Software\ilivid
    [#] Key deleted on reboot: HKCU\Software\Softonic
    [#] Key deleted on reboot: HKCU\Software\YahooPartnerToolbar
    [-] Deleted key: [x 64] HKLM Explorer\SearchScopes\ {0809851D-6B6B-49C8-93A3-D43B32E2A276}
    [-] Deleted key: HKU\S-1-5-21-3939054769-3386920926-4142966088-1000\Software\Microsoft\Internet {0809851D-6B6B-49C8-93A3-D43B32E2A276} Explorer\SearchScopes\
    [#] Deleted on reboot key: HKLM Explorer\SearchScopes\ {0809851D-6B6B-49C8-93A3-D43B32E2A276}
    [-] Deleted key: HKLM Explorer\SearchScopes\ {0809851D-6B6B-49C8-93A3-D43B32E2A276}
    [-] Deleted key: HKLM Explorer\SearchScopes\ {cf6e4b1c-dbde-457e-9cef-ab8ecac8a5e8}
    [#] Key deleted on reboot: HKLM\SOFTWARE\Classes\Applications\ilividsetupv1.exe

    [Browsers] *.

    *************************

    : "Tracing" deleted key
    : Deleted the Winsock settings

    *************************

    C:\AdwCleaner\AdwCleaner[C0].txt - [26718 bytes] - [30/08/2016 16:09:09]
    C:\AdwCleaner\AdwCleaner[S0].txt - [24310 bytes] - [30/08/2016 16:08:25]

    # EOF - C:\AdwCleaner\AdwCleaner[C0].txt - [26866 bytes] #.

    Hi @HVE,

    Thanks for the update and I'm happy that you have the wireless works again. As you did a recovery to Windows 7 and I suggest that in one of my posts, would you consider marking this post as "acceptable Solution" to help other members and visitors to what has worked for you and what could help them. I will conclude the matter resolved as you suggested.

    Thanks again to become a member of the forum and hope that you find it informative and interesting.

  • HP Pavilion dv6928us [Intel Wireless WiFi Link 4965AGN] random disconnections

    Product:

    HP Pavilion dv6928us

    Hardware specifications:

    http://support.HP.com/us-en/document/c01485372

    OS and information network:

    • Wireless router: ASUS RT-N56U on the latest firmware 3.0.0.4.360
    • OS: Windows 7 Professional 64-bit SP1
    • Windows Firewall is disabled

    Network card:

    Intel Wireless WiFi Link 4965AGN
    Drivers updated to the latest version: 13.4.0.139

    • Channel 802.11n for band 2.5 width 20 MHz only
    • 802.11n mode
    • Ad Hoc channel 802. 11B / 11 g
    • Ad-Hoc mode of WMM QoS off
    • FAT Channel intolerant with disabilities
    • Mixed mode Protection CTS automatically
    • Vagrant aggression 3. Medium
    • Transmit power 5. Highest
    • 6 wireless mode. 802.11a/b/g

    Steps in trying to solve this problem:

    1. The option "allow the computer to turn off this device to save power" is also disabled.
    2. I have the power options set to High Performance.
    3. I installed inSSIDer and I'm the only broadcast network on the 5 GHz bandwitdth (so there is absolutely no interference whatsoever)
    4. I spent between the 2.4 GHz and 5 GHz and the same thing happens. See below

    Question:

    My laptop to find < 50 meters from my wireless router (no walls between the two) and I connected on 5 GHz bandwidth. I get random disconnects all along the day make a red X on the network icon in my taskbar. The only way to correct 'temporary', it's completely restart my computer.

    On the other hand, my mother's laptop is in the other room, also connected to the 5 GHz range, ran into problems of ZERO at all.

    What could be the problem?

    If anyone else knows this problem, are the only two (solutions)

    • "Allow the computer to turn off this device to save power" option checked

    OR (if this does not work)

    • 802.11n mode Disable

    802.11n mode for Intel Wireless WiFi Link 4965AGN for operating system Windows 7 and 8 is buggy. Which causes intermittent wireless disconnection.

    Sources:

    http://communities.Intel.com/thread/32614

    Myself.

  • HP pavilion g7-2247us: hp pavilion g7-2247us Win 10 updated Wireless drivers

    Hi I can not capture 5G signal of Time warner cable.  I get the normal signal fine.  Time W says I need a driver of upgreded to have superior internet modem.    Someone knows how can I update this windows 10 w problem

    Thank you

    Carl

    Hi, Carl:

    Atheros wireless network adapter that your laptop is able to transmit and receive on the band of 2.4 GHz wireless network.

    This is a hardware limitation, so no update driver will correct the situation.

  • Zero bytes available - Finder crashing - Apps does not

    I went back to work for a month of paternity leave, and my iMac (which has only a few months) is completely on the fritz. He was running very slowly, taking an hour just to start. Applications such as Illustrator took thirty minutes to open. Mail will not open.

    Then I watched as storage available ticked down a few Go to zero. I deleted several GB of files, and whenever I restart finder says I have zero bytes available. I've worked on this all week, and all of a sudden this morning nothing I have delete appears in the trash, so I can't empty the trash.

    In addition to this, Finder crashes repeatedly, several panels of preferences system does not open and I can't connect to the network in my office. I scanned for a virus, but everything seems to be clean.

    You need to reinstall OS X from scratch. I'm afraid to erase the disc. I hope that you have a current backup.

    Install or reinstall OS X from scratch

    Make sure that you have backed up your files because the following procedure will remove all of the hard drive.

    HD recovery start:

    Restart the computer after the ring, press in and hold the ORDER et R keys until the menu screen to appear.

    Erase the drive:

    1. select in the main menu disk utility and click on the continue button.

    2. when the recovery menu appears, select disk utility and press the continue button.

    3 disk utility loads and select Macintosh HD indented from the left entry

    list.  Click on the Erase tab in the toolbar... Set the Type of Format Mac OS extended,

    ournaled in the menu dropdown. Click the clear button. Wait for the operation

    ends, then quit disk utility and return to the main menu.

    4. reinstall OS X: Select reinstall OS X and click on the install button.

    Note : You will need an active Internet connection. I suggest to use Ethernet if possible

    because it is three times faster than wireless.

    This should install the version of Mac OS X that you had installed it.

  • Satellite L500 - lost wireless connection

    My Satellite L500 recently lost the wireless connection. I looked towards the top of the Realtek wireless device in Device Manager and it says that the device is functioning properly. I tried to use "ping 192.168.1.1" join the router, and I get "error Transmit - general failure."

    Any ideas?

    Hey Buddy,

    And now Windows recognize some WIFI networks at your fingertips? Your validation lost wireless connection isn't very useful

    You should try a WLAN driver update that you can download from the official page of Toshiba:
    http://APS2.toshiba-tro.de/WLAN/

    If you can't find or connect to WLAN networks deactivate in the Windows of the WLAN power save mode power profiles. You will need to set for maximum performance.

  • M70-151: Intel Pro 2200BG wireless connection

    Hello

    I have a new laptop Toshi M70-151, but the connection to my very buggy Zyxel WLAN Router ist.

    Here is a list of ping to the router

    Antwort von 192.168.1.1: bytes = 32 time = 105ms TTL = 254
    Antwort von 192.168.1.1: bytes = 32 time = 2ms TTL = 254
    Zeituberschreitung der Anforderung.
    Antwort von 192.168.1.1: bytes = 32 time = 2ms TTL = 254
    Antwort von 192.168.1.1: bytes = 32 time = TTL = 254 999ms
    Antwort von 192.168.1.1: bytes = 32 time = 164ms TTL = 254
    Antwort von 192.168.1.1: bytes = 32 time = 2ms TTL = 254
    Antwort von 192.168.1.1: bytes = 32 time = 3ms TTL = 254
    Zeituberschreitung der Anforderung.
    Antwort von 192.168.1.1: bytes = 32 time = 796ms TTL = 254
    Antwort von 192.168.1.1: bytes = 32 time = 2ms TTL = 254
    Antwort von 192.168.1.1: bytes = 32 time = 2ms TTL = 254 [/ code]
    (German: Antwort = response time = time, Zeituberschreitung der Anforderung = no answer)

    I tried many other cards - most advises to install the latest version of the INTEL drivers/software. I did, but there is no change in behavior.

    Here are a few words in my environment:
    -Software/driver: INTEL last: 9.0.3.9/9.0.3.0
    -Signalpower: very good
    -from my PC at home and a WLAN USB Stick got permanent rapid (2-3 ms) PINGs to the same router
    -played with all hardware settings (band b/g, power WLAN, changed channels,...)

    Who can help me?

    Thank you :-)

    Hello

    I found a software Intel PROSet/Wireless 10.1.0.2 on the page of intel: http://support.intel.com/support/wireless/wlan/sb/CS-010623.htm

    Well, I m not 100% sure if this will solve the problem of connectivity, but you can try to install it.

    Good bye

Maybe you are looking for

  • Timestamp in two tasks data acquisition

    Hi guys,. I have a strain gauge and a sensor of movement in two different tasks using two modules different (one for the series) and the other for voltage measurements. I have synced their sharing the master sample clock and a trigger digital beginni

  • Pavilion 15-d074nr: BIOS password

    Disabled receiving message with the code 95079914 system HP 15-d074nr could someone please help.  Thank you.

  • black screen still not fixed

    I have a HP Mini 210 t - 1100 that I bought in late 2010. When my computer tries to start, he returns with a black screen. The Caps lockbutton lights up, and it seems that the fan turns on, but nothing else. I tried the hard reset and the problem sti

  • Inspiron 1525 uninstalled devices after update

    Hello I have an inspiron 1525 Windows Vista premium edition and I was browsing on the updates on the site of dell, drivers and downloads section, and I downloaded an optional driver "sigmatec". After the installation of 'error', my system said don't

  • Browser on blackberry storm blackBerry Smartphones

    Hello If anyone can help! You can find this easy but I am struggling to select web pages via my browser when I highlight a web address to selct it does nothing and does not load. Any who know hat to do about it?